From justokenmax
Builds the jusTokenMax code symbol index for a repository, enabling name-based symbol lookup across files via subsequent query commands.
How this command is triggered — by the user, by Claude, or both
Slash command
/justokenmax:index pathThe summary Claude sees in its command listing — used to decide when to auto-load this command
Build the symbol index so you can look up code by name instead of reading whole files. Run: `justokenmax index $ARGUMENTS` (defaults to the current directory; fallback `python3 -m justokenmax index $ARGUMENTS`). Report how many symbols across how many files were indexed. After this, use `/justokenmax:query <name>` (or `justokenmax query <name>`) to locate any function, class, or method as `file:line` + signature, then read only that range.
Build the symbol index so you can look up code by name instead of reading whole files.
Run: justokenmax index $ARGUMENTS (defaults to the current directory; fallback
python3 -m justokenmax index $ARGUMENTS).
Report how many symbols across how many files were indexed. After this, use
/justokenmax:query <name> (or justokenmax query <name>) to locate any function, class,
or method as file:line + signature, then read only that range.
npx claudepluginhub kalmantic/justokenmax --plugin justokenmax/indexIndexes the codebase to enable semantic search. Supports force, estimate, and verbose flags.
/index-repoCreates a condensed PROJECT_INDEX.md (3KB) and PROJECT_INDEX.json (10KB) by analyzing repository structure, extracting metadata from code, docs, configs, and tests — achieving ~94% token reduction vs reading all files. Also supports update and quick modes.
/coderlmExplore a codebase using tree-sitter-backed indexing to trace execution paths, find callers and implementations, and understand code structure.
/sc-index-repoAnalyzes repository structure in parallel, extracts metadata, and generates PROJECT_INDEX.md and PROJECT_INDEX.json for 94% token reduction. Supports update and quick modes.
/indexBuilds or refreshes the grepika code search index for the current project. Supports full rebuild (default) and incremental updates.
/indexScans the codebase to detect ecosystem, architecture, entry points, and key components, then indexes findings into Supermemory for persistent context.