graphify

A code-navigation tool that builds a local map of how files, symbols, and calls in a repository connect. It uses tree-sitter, a parser that reads programming-language structure, and works offline for code.

In plain words
What is it for?
Use it to find where a symbol is defined, see what calls it, understand links between modules, and plan changes spanning multiple files.
Why use it?
It helps answer codebase questions without searching through large amounts of text or loading whole files.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/aleksbuss/orchestra/graphify
Any agent
npx skills add aleksbuss/orchestra --skill graphify
Clone the repo
git clone --depth 1 https://github.com/aleksbuss/orchestra

Made for: Claude Code, Codex.

Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,349 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash fdb1cb74499b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

bundled-skills/graphify/SKILL.md · 142 lines

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.

Read the full file on GitHub · 142 lines

Changes

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.

  1. 2d ago First seen · 142 lines · 77 tokens per session scan A fdb1cb74499b

Subscribe to this mod's changes

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.

Related

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…

parijatmukherjee/openclaw-hawkins · 74 tokens

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…

parijatmukherjee/openclaw-hawkins · 88 tokens

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…

parijatmukherjee/openclaw-hawkins · 87 tokens

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…

parijatmukherjee/openclaw-hawkins · 96 tokens

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).

parijatmukherjee/openclaw-hawkins · 43 tokens

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…

parijatmukherjee/openclaw-hawkins · 97 tokens