| name | repo-map |
| description | Use when you need to understand repository structure, ownership boundaries, or where to make a change. |
Repo Map
Use this skill before making structural assumptions about a workspace.
Steps
- Run
pwd.
- Run
rg --files | head -200 if rg is available.
- If
rg is unavailable, run find . -maxdepth 3 -type f | sort | head -200.
- Read the root
AGENTS.md.
- Read the nearest nested
AGENTS.md before editing a subdirectory.
- Summarize the important directories and likely edit targets.
Notes
Prefer real file inspection over guessing from names.