Repo Map

Use when you need to understand repository structure, ownership boundaries, or where to make a change.

David Ondrej 7d48b80 612 B Updated

File contents

Repo Map

Use this skill before making structural assumptions about a workspace.

Steps

  1. Run pwd.
  2. Run rg --files | head -200 if rg is available.
  3. If rg is unavailable, run find . -maxdepth 3 -type f | sort | head -200.
  4. Read the root AGENTS.md.
  5. Read the nearest nested AGENTS.md before editing a subdirectory.
  6. Summarize the important directories and likely edit targets.

Notes

Prefer real file inspection over guessing from names.

davidondrej/monorepo/tree/main/_shared/skills/repo-map commit 7d48b8028b

Frequently asked questions

npx skillmds@latest add davidondrej/repo-map