> arch-docs
Create or update docs/CODE_ARCHITECTURE.md and docs/FILE_STRUCTURE.md by inspecting a repo. Use when asked to document or refresh repository architecture, file layout, or structure docs based on current contents.
curl "https://skillshub.wtf/vosslab/vosslab-skills/arch-docs?format=md"Arch docs
Overview
Create or refresh architecture and file-structure documentation from the current repo state. Base statements on observable files and configs, and record unknowns as verification tasks.
Workflow
- Inspect the repo
- Read
README.mdandAGENTS.md. - Scan layout with
ls -1andls -1 ./docs/. - Use
rg --filesto get a fuller inventory when needed. - Identify languages, build tooling, entry points, and main executables.
- Check common manifests (
pyproject.toml,pip_requirements.txt,package.json,Cargo.toml,go.mod,Makefile) when present. - Locate core logic, scripts, and tests.
- Check
.gitignorefor generated artifacts and caches. - Run
git status -sunoto see uncommitted changes.
- Read
- Update policy
- Remove stale details.
- Keep accurate sections and restructure for clarity when needed.
- State facts only; do not invent details.
- If unclear, add a verification task in the "Known gaps" section.
- Apply style and consistency
- Follow
docs/MARKDOWN_STYLE.mdanddocs/REPO_STYLE.md. - Use present tense, concrete paths, and relative links.
- Link file and folder names to their repo paths when mentioned, so they are clickable for details. Markdown links are created using the syntax link text, where "link text" is the clickable text that appears in the document, and "URL" is the web address or file path the link points to. This allows users to navigate between different content easily. Use file-path link text so readers know the exact filename (good: docs/MARKDOWN_STYLE.md, bad: Style Guide for Markdown). Only include a backticked path when the link text is not the path.
- Prefer short, scannable bullets.
- Only include commands verifiable from repo files.
- Avoid non-ASCII characters unless explicitly required by existing docs.
- Prefer ISO-8859-1 only when the repo already uses it.
- Follow
- Write
docs/CODE_ARCHITECTURE.md- Title: "Code architecture"
- Sections to include when applicable:
- Overview
- Major components (what, where, key dependencies)
- Data flow (primary use case end-to-end)
- Testing and verification (only if verifiable)
- Extension points (where to add code/modules/integrations)
- Known gaps (verification tasks only)
- Write
docs/FILE_STRUCTURE.md- Title: "File structure"
- Sections to include when applicable:
- Top-level layout (key dirs/files with one-line purpose)
- Key subtrees (large directories that need clarification)
- Generated artifacts (what/where/git ignored)
- Documentation map (docs location and root docs)
- Where to add new work (code/tests/docs/scripts/data)
Repository structure
When showing a directory tree, use ASCII only. Do not use box drawing characters.
- Allowed:
|,+-,`-, spaces - Not allowed: box-drawing characters such as U+251C, U+2500, U+2502, U+2514
Example (ASCII only):
site_docs/
+- index.md
+- biochemistry/
| `- topic01/
| `- index.md
`- genetics/
`- topic01/
`- index.md
mkdocs.yml
- Wrap up
- Save both files.
- Ensure
README.mdlinks todocs/CODE_ARCHITECTURE.mdanddocs/FILE_STRUCTURE.md(add links if missing). - Update
docs/CHANGELOG.mdwith the change; create a minimal stub only when doc changes were made and the file is missing. - Summarize what changed and what could not be verified.
- Note that docs-only changes do not require tests unless otherwise requested.
Notes
- Prefer to trim and correct existing docs before rewriting from scratch.
- If the repo lacks needed evidence, add a "Known gaps" bullet with a verification task.
Example requests
- "Update the architecture and file structure docs for this repo."
- "Create CODE_ARCHITECTURE.md and FILE_STRUCTURE.md based on current files."
- "Refresh the docs/FILE_STRUCTURE.md map after adding new folders."
> related_skills --same-repo
> webwork-writer
Create, edit, and lint WeBWorK PG/PGML questions following docs/webwork guidance, HTML whitelist constraints, and renderer-based lint checks. Use for tasks like authoring new PGML problems, adjusting randomization or grading, fixing PGML rendering issues, and running renderer API linting.
> unit-test-starter
Generate thorough Python 3 pytest unit tests across a repo by scanning every *.py file and each function, writing one test module per source file while skipping IO/network behavior and documenting gaps.
> skill-writing-guide
Guide for authoring Agent Skills (SKILL.md). Covers the open standard format, required frontmatter, directory layout, progressive disclosure, description writing, and best practices. Use when creating a new skill, improving an existing skill, or learning how skills work.
> readme-fix
Standardize README.md to match repo conventions. Brief purpose, quick start, and links to docs/. Keep content verifiable, concise, and ASCII. Use when README.md drifted or is missing key pointers.