From symbiote
Triggers full Symbiote codebase rescan to update knowledge graph with latest file changes, structure, symbols, and call graph. Optionally regenerates embeddings for semantic search. Use after refactoring, pulling changesets, or stale context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/symbiote:symbiote-scanThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Trigger a full codebase rescan to update the knowledge graph with latest file changes.
Trigger a full codebase rescan to update the knowledge graph with latest file changes.
curl -s http://127.0.0.1:$(cat .brain/port)/internal/health 2>/dev/null || echo "not running"
If not running, start it after the scan completes.
For a standard rescan (structure + symbols + call graph):
npx -y symbiote-cli scan
For a full rescan with embedding regeneration (slower, enables better semantic search):
npx -y symbiote-cli scan --embeddings
To force a clean rescan ignoring cached state:
npx -y symbiote-cli scan --force
If the server was running before the scan, restart it to pick up the new graph:
npx -y symbiote-cli serve --no-open > /dev/null 2>&1 &
Wait for it:
sleep 3 && curl -s http://127.0.0.1:$(cat .brain/port)/internal/health
Use the get_project_overview MCP tool to confirm the updated stats (file count, node count, edge count).
One line:
Symbiote rescan complete — {N} files indexed, {N} nodes, {N} edges.
npx claudepluginhub mohmmedashraf/symbiote --plugin symbioteRe-indexes the current codebase with Codescope's index_codebase tool, fetches graph stats, and reports counts for files, functions, classes, imports, and relations. Use after code changes to refresh the knowledge graph.
Manages SocratiCode codebase indexing: checks infrastructure health with Docker/Qdrant/Ollama, starts/stops indexing and file watching, builds code graphs, configures context artifacts.