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/aleksbuss/orchestra/graphifynpx skills add aleksbuss/orchestra --skill graphifygit clone --depth 1 https://github.com/aleksbuss/orchestraWhat 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.00077 | $0.02349 |
| Opus 5 | $0.00039 | $0.01175 |
| Sonnet 5 | $0.00015 | $0.00470 |
| Haiku 4.5 | $0.00008 | $0.00235 |
Grade A, and why
graphify 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 — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Graphify — code navigation by graph, not by grep
Graphify parses a repository into a local knowledge graph and answers structural questions without
reading whole files into context. Code is parsed with tree-sitter — deterministic and offline. (Non-code
documents go through an LLM pass when a provider key is present; inside code_execution there is no
key, so what you get is the free AST path.)
This skill is a wrapper around an external CLI. It is not installed by default. Everything below
runs through code_execution. See docs/references/graphify-integration-adr.md
for why this is a skill and not a tool.
Decision — graphify first, grep second (read this before you touch find/grep)
You loaded this skill because a codebase question came up. The measured failure mode is loading it and then grepping anyway. Do not. Make the call explicitly:
| The question is… | Do this |
|---|---|
Where is X defined? What calls X? (you have the symbol name) |
graphify explain "X" — the cheapest, highest-precision call here. Measured 971 chars vs 1668 for the equivalent grep, and it reports call DIRECTION, which grep cannot. |
What breaks if I change X? |
graphify affected "X" (reverse traversal). |
How do A and B connect? |
graphify path "A" "B" — but empty output is NOT proof of no connection (dynamic imports, DI, string-keyed registries). |
| How is this codebase structured? Planning a cross-file refactor? | graphify query "<identifiers>" --budget 500 — see the budget warning below; never call query without --budget. |
| A literal string/comment/config value; a file whose path you already know; the exact current text of lines you are about to edit; a command's exit code; a field inside a JSON file | grep / read_text_file. The graph models code STRUCTURE — it does not model runtime values or literal text. Routing these through it returns confident noise. This is the right call, not a shortcut. |
Probe (graphify --version) failed, or no index exists and building is not appropriate here |
Fall back to grep, and say plainly the graph is unavailable. |
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 · 142 lines · 77 tokens per session scan A fdb1cb74499b
graphify is a skill published in the GitHub repository aleksbuss/orchestra (2 stars, last pushed 6d ago), licensed MIT. It adds 77 tokens to every session and 2,349 once invoked, about $0.0004 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-31.
Other skills, from other repositories
comm-agent-skill
Communication specialist for the OpenClaw multi-agent system. Use this skill when the task involves: drafting or sending emails, posting to Discord or other chat platforms, scheduling calendar events, sending notifications, or any outbound communication on behalf of the user. Always drafts before sending and requires…
data-agent-skill
Data processing and analysis specialist for the OpenClaw multi-agent system. Use this skill when the task involves: parsing CSV/JSON/Excel files, data cleaning and transformation, SQL queries, statistical analysis, generating charts or visualizations, aggregating data from multiple sources, or extracting insights from…
research-agent-skill
Information gathering and research specialist for the OpenClaw multi-agent system. Use this skill when the task involves: web search, fact-checking, comparing products or technologies, summarizing articles, gathering documentation, researching errors, or producing structured reports with sources. Also use for "what is…
system-agent-skill
System administration specialist for the OpenClaw multi-agent system. Use this skill when the task involves: package installation (apt), service management (systemctl), configuration file editing, cron job scheduling, firewall rules (ufw), disk space management, log inspection (journalctl), user/group management…
vision-agent-skill
Vision-capable agent for image analysis, screenshot interpretation, OCR, and visual tasks. Uses kimi-k2.5 for its vision capabilities (text+image input, 125k context).
code-agent-skill
Software development specialist for the OpenClaw multi-agent system. Use this skill when the task involves: writing new code, debugging existing code, code review, writing tests, git operations (commit, branch, merge), refactoring, setting up projects, or any software engineering work in Python, JavaScript/TypeScript…