From repo-map-plugin
Get a ranked map of classes/functions/signatures for the current repository via the repo-map MCP tool, instead of reading many files to build context
How this skill is triggered — by the user, by Claude, or both
Slash command
/repo-map-plugin:repo-mapThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Call the `get_repo_map` tool (from the `repo-map` MCP server) when you need a
Call the get_repo_map tool (from the repo-map MCP server) when you need a
structural overview of a codebase without reading every file:
focus_files (repo-relative paths) so the map surfaces those files and
whatever else references or is referenced by them, ranked to the top.Arguments:
project_root (optional): a repo-relative subdirectory to scope the map
to, e.g. "src/backend". Defaults to the whole repo. Do not pass an
absolute host path — the tool only sees the repository at its container
mount point.focus_files (optional): list of repo-relative paths to prioritize.max_tokens (optional): approximate size budget for the returned map.Prefer this over opening files one by one to guess at project structure. It does not replace reading a file's actual body once you've identified it as relevant — the map gives signatures and line numbers, not implementations.
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub rudini/repo-map-marketplace --plugin repo-map-plugin