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 agentmods add skills/metaspartan/cybara/code-wikinpx skills add metaspartan/cybara --skill code-wikigit clone --depth 1 https://github.com/metaspartan/cybaraWhat 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 | $0.00027 | $0.00609 |
| Opus 5 | $0.00014 | $0.00304 |
| Sonnet 5 | $0.00005 | $0.00122 |
| Haiku 4.5 | $0.00003 | $0.00061 |
Grade A, and why
code-wiki scanned grade A with 0 findings 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Wiki
Use this when the user asks to document a repository, generate architecture diagrams, create a code wiki, or onboard to an unfamiliar codebase.
This is a reference-documentation workflow. It explains what exists and how it fits together; it is not a product strategy or roadmap exercise.
Output Location
Default to ~/.cybara/wikis/<repo-name>/ so active repositories are not modified. Only write under the repo, such as docs/wiki/, when the user explicitly asks for in-repo documentation.
Workflow
- Resolve the target repository.
- If the user gave a local path, use that path.
- If they gave a GitHub URL, clone with
git clone --depth 50 <url> <tmp>/repo. - Record
git rev-parse HEADwhen available.
- Scan the structure with
rg --files, excluding generated and dependency dirs:.git,node_modules,dist,build,target,.next,.expo,coverage,venv,.venv.
- Read the README, manifests, and main entry points:
package.json,bun.lock,Cargo.toml,pyproject.toml,go.mod,Package.swift, app entry files.
- Pick 8-10 modules for the first pass.
- Prioritize entry points, shared/core modules, API boundaries, UI route roots, persistence layers, and integration adapters.
- Write:
README.mdwith purpose, concepts, entry points, and module map.architecture.mdwith a Mermaid flowchart.modules/<module>.mdfor each selected module.diagrams/sequences.mdwith 2-4 key workflows.getting-started.mdwith verified local commands..codewiki-state.jsonwith repo path, commit, generated time, and files reviewed.
Quality Bar
- Every statement should trace to code, config, or docs you read.
- Use relative links for local output; use commit-pinned GitHub links for cloned public repos.
- Keep Mermaid valid and readable. Prefer
flowchart LRfor architecture andsequenceDiagramfor workflows. - Do not document generated bundles or dependency directories.
- Do not claim coverage of the whole repo when you only sampled modules; list gaps explicitly.
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.
- 2d ago First seen · 55 lines · 27 tokens per session scan A 19977b79533d
code-wiki is a skill published in the GitHub repository metaspartan/cybara (23 stars, last pushed 3d ago), licensed MIT. It adds 27 tokens to every session and 609 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
kodama-verification
Define measurable success criteria and collect targeted test, build, lint, type-check, or smoke-test evidence before claiming work is complete.
gh-issues
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…
algorithmic-art
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…
gws-calendar
Google Calendar: Manage calendars and events.
internal-comms
A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project…
kodama-behavior
Classify requests, assess unfamiliar codebases, delegate work safely, and recover from failed attempts. Use for multi-step, ambiguous, or parallelizable work.