Repo technical documentation
Skill jimtin/production-ai/skills/repo-technical-documentation
Skills and guardrails that make AI coding agents prove their work: planning gates, test preflights, fail-closed deployment, and a self-improving skill library.
npx -y skills add jimtin/production-ai --skill repo-technical-documentationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Exhaustively document an existing repository's technical architecture and implementation details. Use when asked to work through a whole repo and create, update, reconcile, or refresh technical docs covering API endpoints, UI routes and choices, frameworks, libraries and rationale, data models, integrations, jobs, testing, deployment, observability, operational scripts, or stale documentation.
SKILL.md
4.5 KB, as published. Nobody here has run it
Repo Technical Documentation
Purpose
Use this skill to produce durable, repo-grounded technical documentation. The default output is split Markdown docs plus a machine-readable evidence file. Existing technical docs are updated in place when they exist; otherwise create the standard package under docs/repo-map/.
This is a documentation and inventory skill, not a remediation review. Use $full-app-review when the user wants prioritized findings or a fix plan.
Operating Rules
- Start from repo truth: applicable
AGENTS.md, tracked files, manifests, source entrypoints, tests, docs, configs, scripts, workflows, and deployment files. - Enumerate git-tracked files by default with
git ls-files. Consider every tracked file, but path-inventory only for secret-like, generated/build, binary, unreadable, or oversized files. - Never print or document secret values. Do not read
.env*, credential, token, private-key, local provider state, or similar files unless the user explicitly provides a safe fixture. - Tag every material claim as
confirmed,inferred,stale-doc, orunknown. Do not present inferred rationale as fact. - In Plan Mode or report-only requests, do not write docs. Return the proposed doc targets and update plan instead.
- Prefer updating existing technical docs over creating duplicate docs. If no suitable docs exist, create
docs/repo-map/. - Keep generated artifacts deterministic and repo-contained. Do not dirty unrelated tracked files.
Workflow
-
Baseline the repo.
- Read parent and repo-local instructions.
- Check
git status --short --untracked-files=all. - Identify existing technical docs, source roots, test roots, package managers, deployment targets, and canonical validation commands.
- Run this skill's helper,
scripts/repo_inventory.py <repo> --format json, resolved relative to this skill directory, for a deterministic first-pass fact inventory when useful.
-
Build the evidence map.
- Use
references/discovery-checklist.md. - Map API endpoints, UI routes, user actions, frameworks, libraries, data schemas, integrations, auth/roles, jobs, scripts, tests, deployment/runtime, observability, and docs.
- Record evidence as file paths, line references when inspected directly, manifest entries, config files, and test/doc references.
- Use
-
Reconcile existing docs.
- Find docs that already describe architecture, APIs, routes, dependencies, operations, testing, or runbooks.
- Compare documented claims with current repo evidence.
- Mark missing current facts as
confirmed, outdated claims asstale-doc, inferred rationale asinferred, and unresolved rationale or ownership asunknown.
-
Write or propose docs.
- Use
references/documentation-schema.mdfor required sections and confidence labels. - Use
references/output-templates.mdfor the split-doc package. - Default files under
docs/repo-map/are:README.mdapi-inventory.mdui-inventory.mddependencies-and-rationale.mddata-integrations-and-jobs.mdvalidation-and-operations.mdevidence.json
- If existing docs cover the same subjects, update those files and add only missing companion files.
- Use
-
Validate the documentation.
- Confirm every material statement has evidence or an explicit
unknown. - Re-run the inventory helper after writes and verify
evidence.jsonis current. - Run lightweight doc checks available in the repo, such as markdown lint or link checks, before broader validation.
- Confirm every material statement has evidence or an explicit
Output Expectations
Completion reports must include:
- Docs created or updated.
- Repo truth discovered.
- Existing docs reconciled and stale claims removed or marked.
- Evidence commands run.
- Gaps left as
unknown. - Validation results and any blocked checks.
References
references/discovery-checklist.md: what to inspect during the repo pass.references/documentation-schema.md: confidence tags, evidence rules, and required doc sections.references/output-templates.md: Markdown and JSON output templates.scripts/repo_inventory.py: deterministic tracked-file inventory helper.