codebase-navigation

Before modifying unfamiliar code, build a mental model.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "codebase-navigation" with this command: npx skills add aiming-lab/metaclaw/aiming-lab-metaclaw-codebase-navigation

Codebase Navigation

Before modifying unfamiliar code, build a mental model.

Exploration strategy:

  • Start with entry points: main.py , init.py , index.ts , App.tsx .

  • Follow imports to understand dependency structure.

  • Find the data model first — it shapes everything else.

  • Read tests: they document expected behavior better than comments.

  • Check git log: recent commits explain why things are the way they are.

Efficient search:

  • Use file pattern search (glob) to find files by name/extension.

  • Use content search (grep) to find where a function/class is defined vs. called.

  • Search for the error message text to find the source location directly.

Anti-patterns:

  • Modifying code without reading it first.

  • Assuming file structure from another codebase.

  • Grepping without a clear hypothesis of what you are looking for.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

secure-code-review

No summary provided by upstream source.

Repository SourceNeeds Review
General

structured-progress-update

No summary provided by upstream source.

Repository SourceNeeds Review
General

plan-before-multi-step-execution

No summary provided by upstream source.

Repository SourceNeeds Review
General

graceful-error-recovery

No summary provided by upstream source.

Repository SourceNeeds Review