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/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.
/coderlmExplores codebase structure using tree-sitter index: search symbols, trace callers/implementations, find tests, view file trees and scoped code via CLI tools.
/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.
/indexIndexes the codebase for semantic search, processing files into chunks and embeddings. Supports force rebuild, estimate-only, and verbose flags via arguments.
/indexBuilds or refreshes the grepika code search index for the current project. Supports full rebuild (default) and incremental update.
/indexScans the codebase to detect ecosystem, architecture, entry points, and key components, then indexes findings into Supermemory for persistent context.