Skip to content

Latest commit

Β 

History

History
23 lines (18 loc) Β· 672 Bytes

File metadata and controls

23 lines (18 loc) Β· 672 Bytes

πŸ›‘ STOP β€” Run codemap before ANY task

codemap .                     # Project structure
codemap --deps                # How files connect
codemap --diff                # What changed vs main
codemap --diff --ref <branch> # Changes vs specific branch

Required Usage

BEFORE starting any task, run codemap . first.

ALWAYS run codemap --deps when:

  • User asks how something works
  • Refactoring or moving code
  • Tracing imports or dependencies

ALWAYS run codemap --diff when:

  • Reviewing or summarizing changes
  • Before committing code
  • User asks what changed
  • Use --ref <branch> when comparing against something other than main