npx claudepluginhub mikeparcewski/wicked-garden --plugin wicked-garden<path>search/# /wicked-garden:search:index Build a searchable index of code symbols and document content. Indexing is now handled by the brain knowledge layer. ## Arguments - `path` (required): Directory to index ## Instructions 1. **Delegate to brain ingest** — all indexing now goes through `wicked-brain:ingest`: Tell the user: > Indexing is now handled by the brain. Running `wicked-brain:ingest` to index your codebase. Then invoke `/wicked-brain:ingest` with the provided path. 2. **Verify the index** by checking brain stats: 3. Report the results showing chunk and tag counts from...
/indexGenerates project documentation, knowledge base, API docs, structure analysis, or README for a target path. Supports --type (docs|api|structure|readme) and --format (md|json|yaml).
/indexIndexes codebase into Supermemory for persistent context: detects tech ecosystem, scans manifests/configs/entry points/architecture.
/indexScans codebase for components (controllers, services, models) and external resources to generate searchable specs in specs/.index/. Supports --path, --type, --exclude, --dry-run, --force, --changed, --quick flags.
/indexIndexes or re-indexes the current project into the OpenTrace knowledge graph using opentraceai. Supports path/flags; reports results and graph stats.
/indexGenerates AI-readable feature index mapping natural language descriptions of UI elements, interactions, and business flows to exact code locations and modification guides. Saves markdown report to .claude/context/index.md.
/indexGenerates project documentation (docs, API, structure, readme) and knowledge base for a target directory in MD, JSON, or YAML format with update option.
Build a searchable index of code symbols and document content. Indexing is now handled by the brain knowledge layer.
path (required): Directory to indexDelegate to brain ingest — all indexing now goes through wicked-brain:ingest:
Tell the user:
Indexing is now handled by the brain. Running
wicked-brain:ingestto index your codebase.
Then invoke /wicked-brain:ingest with the provided path.
Verify the index by checking brain stats:
curl -s -X POST http://localhost:4242/api \
-H "Content-Type: application/json" \
-d '{"action":"stats","params":{}}'
Report the results showing chunk and tag counts from the brain stats response.
# Basic indexing
/wicked-garden:search:index /path/to/project
# This is equivalent to:
/wicked-brain:ingest /path/to/project
/wicked-garden:search:stats to verify indexing results