orc CLAUDE.md

Repository instructions for orc, a Claude Code plugin made of skills, agents, and hook scripts rather than a conventional TypeScript application. It explains where these parts live and how the project runs.

In plain words
What is it for?
Working on plugin skills, agent definitions, Bun-based hooks, generated code maps, and code-structure or dependency analysis across supported programming languages.
Why use it?
It helps the coding agent navigate the repository and use the expected runtime and analysis commands. It also provides different dependency and call-tracing approaches for TypeScript or JavaScript, Rust, and Solidity projects.

Instructions file

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 instructions/qgolem/orc/claude-md
Clone the repo
git clone --depth 1 https://github.com/qGolem/orc
Per session 1,397 This file is loaded in full into every session.
When invoked 1,397 The same file — it is already loaded in full.
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.01397 $0.01397
Opus 5 $0.00698 $0.00698
Sonnet 5 $0.00279 $0.00279
Haiku 4.5 $0.00140 $0.00140

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

Security

Grade A, and why

orc CLAUDE.md 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.

CLAUDE.md · 121 lines

How it starts

The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.

orc — Claude Code Plugin

Project Structure

This is a skills/agents plugin repo, not a conventional TypeScript project.

Location Contents
skills/ Plugin skills (namespaced orc:)
.claude/skills/ Local skills (no namespace)
.claude/agents/ Agent definitions
.claude/hooks/ Hook scripts (TypeScript, runs via Bun)
.claude/context/ Generated codebase maps

No src/ directory. Use tree -L 3 -P '*.md' skills/ or tree -L 2 .claude/ for structure.

Agents target multiple languages. When developing or testing agents, use the appropriate analysis tools:

Purpose TS/JS Rust Solidity
Dependencies madge --circular src/ cargo modules dependencies --acyclic slither . --print inheritance-graph
Call chains /dive symbol depth Grep-based tracing slither . --print call-graph
Structure file analysis cargo modules structure --lib slither . --print contract-summary
Dep tree madge --orphans src/ cargo tree --depth 2 forge inspect <C> storageLayout

Runtime

Bun is the runtime. Use bun run, not npm run or pnpm run.

Hooks

Wiring

Hook registration requires BOTH:

  1. A script file under .claude/hooks/ (e.g., index.ts)
  2. An entry in .claude/settings.json under "hooks"

Always check both when debugging "hook didn't trigger."

Testing

Test hooks directly before claiming they work or don't:

echo '{"session_id":"test","transcript_path":"/tmp/t"}' | bun .claude/hooks/index.ts

Safety

  • .claude/hooks/index.ts is live — changes take immediate effect on the current session
  • Read the full file before editing; never infer content from memory or truncated reads
  • Do not modify hook behavior without explicit request; hook logic is intentionally experimental

Deadlock

When a stop hook blocks and no user action resolves it within 2 turns:

  1. State the situation once with the exact user action required
  2. Stop repeating — no further substantive responses on that topic until user acts
  3. Never offer to commit as an escape hatch from a blocked state

Read the full file on GitHub · 121 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 · 121 lines · 1,397 tokens per session scan A 3703c55cb997

Subscribe to this mod's changes

orc CLAUDE.md is an instructions file published in the GitHub repository qGolem/orc (5 stars, last pushed 5mo ago), licensed MIT. It adds 1,397 tokens to every session, about $0.0070 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.