/module-map
Produce a one-screen map of an unfamiliar area of the codebase: entry points, modules, data flow, callers. Designed to be read in fifteen seconds. Use when the user says "I do not know this area", "give me the map", "zoom out", "orient me".
One skill from pro-workflow.
shell
$ npx -y skills add rohitg00/pro-workflow --skill module-map --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/module-map
Context preview
The summary Claude sees to decide when to auto-load this skill.
Produce a one-screen map of an unfamiliar area of the codebase: entry points, modules, data flow, callers. Designed to be read in fifteen seconds. Use when the user says "I do not know this area", "give me the map", "zoom out", "orient me".
Stats
Stars2,638
Forks255
LanguageJavaScript
SKILL.md
module-map.SKILL.md
--- name: module-map description: Produce a one-screen map of an unfamiliar area of the codebase: entry points, modules, data flow, callers. Designed to be read in fifteen seconds. Use when the user says "I do not know this area", "give me the map", "zoom out", "orient me". --- # module-map Orient fast in unfamiliar code. The deliverable is a map, not a tour. ## Deliverable A single response containing, in this order: 1. **One-line summary** of what the area does from a caller's point of view. 2. **Entry points** โ every function, route, CLI command, event handler, or cron that starts a call chain in this area. File path + symbol. 3. **Core modules** โ the two to five modules that contain the real logic. One line each describing their role. 4. **Data flow** โ ASCII arrows showing the dominant path for the most common input. Skip error paths unless they matter architecturally. 5. **External callers** โ who outside this area calls in, and through which entry points. 6. **Hidden coupling** โ anything that looks independent but is not (shared singletons, global state, implicit ordering, undocumented contracts between files). ## Rules - Fifteen-second read target. If the map exceeds one screen, cut it. - Every claim must be backed by a file path. No remembered or inferred
