Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add MohmmedAshraf/symbiote --skill symbiote-scangit clone --depth 1 https://github.com/MohmmedAshraf/symbioteWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/mohmmedashraf/symbiote/symbiote-scan)<a href="https://agentmods.dev/skills/mohmmedashraf/symbiote/symbiote-scan"><img src="https://agentmods.dev/badge/skills/mohmmedashraf/symbiote/symbiote-scan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mohmmedashraf/symbiote/symbiote-scan"><img src="https://agentmods.dev/badge/skills/mohmmedashraf/symbiote/symbiote-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00077 | $0.00470 |
| Opus 5 | $0.00039 | $0.00235 |
| Sonnet 5 | $0.00015 | $0.00094 |
| Haiku 4.5 | $0.00008 | $0.00047 |
Grade A, and why
symbiote-scan scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://127.0.0.1:$(cat .brain/port)/internal/health 2>/dev/null || echo "not running" What it actually says
Symbiote Rescan
Trigger a full codebase rescan to update the knowledge graph with latest file changes.
When to Use
- After significant refactoring or restructuring
- When symbiote's context feels stale or out of date
- After pulling large changesets from remote
- When semantic search returns outdated results
Process
Step 1: Check Server Status
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.
Step 2: Run the Scan
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
Step 3: Restart Server (if was running)
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
Step 4: Verify
Use the get_project_overview MCP tool to confirm the updated stats (file count, node count, edge count).
Output
One line:
Symbiote rescan complete — {N} files indexed, {N} nodes, {N} edges.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 72 lines · 77 tokens per session scan A 2b3efe266595
symbiote-scan is a skill published in the GitHub repository MohmmedAshraf/symbiote (5 stars, last pushed 5mo ago), licensed MIT. It adds 77 tokens to every session and 470 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
dekko-notes
Read and write dekko's symbol-anchored notes in any repo with a .dekko/ directory. Trigger every time you pull a symbol's context (querysymbol, getcontextpack, dekko query/context), right after a non-obvious change, and right after any rename/move/signature edit (to sweep orphaned notes). Notes are durable, committed…
roam
Codebase comprehension via roam-code CLI. Use when exploring codebases, planning modifications, debugging failures, assessing PR risk, or checking architecture health. Triggers on: understanding project structure, pre-change safety checks, finding symbols/files, blast radius analysis, affected tests, health scoring…
durable-session-state
Persist plans, scope decisions, evidence, and reviewer/critic verdicts to durable files during long or multi-phase tasks so work survives context compaction, session resumes, and handoffs. Use for swarm-mode tasks, before context grows large, when recording approval gates, and when resuming after compaction or a…
save-progress
Save current project task progress to local task state file for cross-session continuity. Use when the user asks to save progress, uses an equivalent localized trigger phrase, the session is interrupted, or the user wants to resume work later. Writes to .claude/project-task-state.json so next session can load it via…
memorix
Use when Claude Code needs Memorix shared memory, reasoning, Git Memory, mini-skills, session handoff, orchestration coordination, or integration troubleshooting.
memorix-mini-skills
Use when durable project knowledge, gotchas, workflows, or repeated fixes should become reusable agent guidance instead of ordinary memory.