agentmap

Solid

Use for TypeScript/JavaScript codebase navigation — symbol lookup, blast radius, reuse checks, and repo orientation. Prefer agentmap before serial grep when exploring imports, exports, or where a symbol lives. Package is @raymondchins/agentmap (not the unrelated npm package agentmap).

AI & Automation 45 stars 10 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
55
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
99
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# agentmap Queryable, ranked **import graph** for TS/JS repos (PageRank hubs, symbol ranking, token-budgeted digest). Faster and more accurate than grep for structural questions. ## When to use - **Where is X defined?** / **who imports this file?** / **what breaks if I edit this?** - **Reuse check** before adding a util, component, or type - **Session start** — orient to a large monorepo cheaply ## When not to use - Raw string / config value search (try `agentmap --any` first — layer 4 is live `git grep`) - Non-TS/JS files, runtime call graphs, or full semantic "how does it work?" (use codebase search) - Next-style `--feature` on TanStack Router / non-`app/` layouts (often empty) ## Commands (run in repo root) ```bash # Smart router — default first move agentmap --any <query> # Reuse / symbol definition agentmap --find <SymbolName> # Blast radius (exports, imports, dependents, related files) agentmap --relates <path/to/file.ts> # Token-budgeted ranked digest agentmap --map --tokens 400 agentmap --map --focus <path> --tokens 400 # Hub files (PageRank) agentmap --hubs # JSON for tools agentmap --json --any <query> ``` Install: `npm i -g @raymondchins/agentmap` or `npx @raymondchins/agentmap`. Map cache: `.claude/agentmap/` (gitignored). ## Agent platforms | Platform | Setup | |----------|--------| | **Claude Code** | `agentmap --install-hooks` (post-commit refresh + PreToolUse grep nudge) | | **Cursor / MCP clients** | `agentmap --mcp` in MCP config, or Shell + c...

Details

Author
raymondchins
Repository
raymondchins/agentmap
Created
1 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category