acquire-codebase-knowledge
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document this architecture", "onboard me to this repo", or "create codebase docs". Do not trigger for routine feature implementation, bug fixes, or narrow code edits unless the user asks for repository-level discovery.
9installs
Sourcegithub/awesome-copilot
Added on
NPX Install
npx skill4agent add github/awesome-copilot acquire-codebase-knowledgeTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Acquire Codebase Knowledge
Produces seven populated documents in covering everything needed to work effectively on the project. Only document what is verifiable from files or terminal output — never infer or assume.
docs/codebase/Output Contract (Required)
Before finishing, all of the following must be true:
- Exactly these files exist in :
docs/codebase/,STACK.md,STRUCTURE.md,ARCHITECTURE.md,CONVENTIONS.md,INTEGRATIONS.md,TESTING.md.CONCERNS.md - Every claim is traceable to source files, config, or terminal output.
- Unknowns are marked as ; intent-dependent decisions are marked
[TODO].[ASK USER] - Every document includes a short "evidence" list with concrete file paths.
- Final response includes numbered questions and intent-vs-reality divergences.
[ASK USER]
Workflow
Copy and track this checklist:
- [ ] Phase 1: Run scan, read intent documents
- [ ] Phase 2: Investigate each documentation area
- [ ] Phase 3: Populate all seven docs in docs/codebase/
- [ ] Phase 4: Validate docs, present findings, resolve all [ASK USER] itemsFocus Area Mode
If the user supplies a focus area (for example: "architecture only" or "testing and concerns"):
- Always run Phase 1 in full.
- Fully complete focus-area documents first.
- For non-focus documents not yet analyzed, keep required sections present and mark unknowns as .
[TODO] - Still run the Phase 4 validation loop on all seven documents before final output.
Phase 1: Scan and Read Intent
-
Run the scan script from the target project root:bash
python3 "$SKILL_ROOT/scripts/scan.py" --output docs/codebase/.codebase-scan.txtWhereis the absolute path to the skill folder. Works on Windows, macOS, and Linux.$SKILL_ROOTQuick start: If you have the path inline:bashpython3 /absolute/path/to/skills/acquire-codebase-knowledge/scripts/scan.py --output docs/codebase/.codebase-scan.txt -
Search for,
PRD,TRD,README,ROADMAP,SPECfiles and read them.DESIGN -
Summarise the stated project intent before reading any source code.
Phase 2: Investigate
Use the scan output to answer questions for each of the seven templates. Load for the full per-template question list.
references/inquiry-checkpoints.mdIf the stack is ambiguous (multiple manifest files, unfamiliar file types, no ), load .
package.jsonreferences/stack-detection.mdPhase 3: Populate Templates
Copy each template from into . Fill in this order:
assets/templates/docs/codebase/- STACK.md — language, runtime, frameworks, all dependencies
- STRUCTURE.md — directory layout, entry points, key files
- ARCHITECTURE.md — layers, patterns, data flow
- CONVENTIONS.md — naming, formatting, error handling, imports
- INTEGRATIONS.md — external APIs, databases, auth, monitoring
- TESTING.md — frameworks, file organization, mocking strategy
- CONCERNS.md — tech debt, bugs, security risks, perf bottlenecks
Use for anything that cannot be determined from code. Use where the right answer requires team intent.
[TODO][ASK USER]Phase 4: Validate, Repair, Verify
Run this mandatory validation loop before finalizing:
- Validate each doc against .
references/inquiry-checkpoints.md - For each non-trivial claim, confirm at least one evidence reference exists.
- If any required section is missing or unsupported:
- Fix the document.
- Re-run validation.
- Repeat until all seven docs pass.
Then present a summary of all seven documents, list every item as a numbered question, and highlight any Intent vs. Reality divergences from Phase 1.
[ASK USER]Validation pass criteria:
- No unsupported claims.
- No empty required sections.
- Unknowns use rather than assumptions.
[TODO] - Team-intent gaps are explicitly marked .
[ASK USER]
Gotchas
Monorepos: Root may have no source — check for , , or directories. Each workspace may have independent dependencies and conventions. Map each sub-package separately.
package.jsonworkspacespackages/apps/Outdated README: README often describes intended architecture, not the current one. Cross-reference with actual file structure before treating any README claim as fact.
TypeScript path aliases: config means imports like don't map directly to the filesystem. Map aliases to real paths before documenting structure.
tsconfig.jsonpaths@/fooGenerated/compiled output: Never document patterns from , , , , , or . These are artefacts — document source conventions only.
dist/build/generated/.next/out/__pycache__/.env.example.env.example.env.template.env.sampledevDependenciesdependencies[tool.poetry.dependencies]Test TODOs ≠ production debt: TODOs inside , , , or are coverage gaps, not production technical debt. Separate them in .
test/tests/__tests__/spec/CONCERNS.mdHigh-churn files = fragile areas: Files appearing most in recent git history have the highest modification rate and likely hidden complexity. Always note them in .
CONCERNS.mdAnti-Patterns
| ❌ Don't | ✅ Do instead |
|---|---|
| "Uses Clean Architecture with Domain/Data layers." (when no such directories exist) | State only what directory structure actually shows. |
"This is a Next.js project." (without checking | Check |
Guess the database from a variable name like | Check manifest for |
Document | Source files only. |
Enhanced Scan Output Sections
The script now produce the following sections in addition to the original output:
scan.py- CODE METRICS — Total files, lines of code by language, largest files (complexity signals)
- CI/CD PIPELINES — Detected GitHub Actions, GitLab CI, Jenkins, CircleCI, etc.
- CONTAINERS & ORCHESTRATION — Docker, Docker Compose, Kubernetes, Vagrant configs
- SECURITY & COMPLIANCE — Snyk, Dependabot, SECURITY.md, SBOM, security policies
- PERFORMANCE & TESTING — Benchmark configs, profiling markers, load testing tools
Use these sections during Phase 2 to inform investigation questions and identify tool-specific patterns.
Bundled Assets
| Asset | When to load |
|---|---|
| Phase 1 — run first, before reading any code (Python 3.8+ required) |
| | Phase 2 — load for per-template investigation questions |
| | Phase 2 — only if stack is ambiguous |
| | Phase 3 step 1 |
| | Phase 3 step 2 |
| | Phase 3 step 3 |
| | Phase 3 step 4 |
| | Phase 3 step 5 |
| | Phase 3 step 6 |
| | Phase 3 step 7 |
references/inquiry-checkpoints.mdreferences/stack-detection.mdassets/templates/STACK.mdassets/templates/STRUCTURE.mdassets/templates/ARCHITECTURE.mdassets/templates/CONVENTIONS.mdassets/templates/INTEGRATIONS.mdassets/templates/TESTING.mdassets/templates/CONCERNS.mdTemplate usage mode:
- Default mode: complete only the "Core Sections (Required)" in each template.
- Extended mode: add optional sections only when the repo complexity justifies them.