orquestra: Agent for Claude Code

.claude/agents/orquestra-simulator.md

orquestra-simulator is an agent for Claude Code from berkayoztunc/orquestra. It costs 274 tokens per session (659 once invoked), scanned A, original, MIT.

A pre-signature checking agent for Solana blockchain instructions. It simulates a transaction against the network and reports errors and compute use without signing or sending it.

In plain words
What is it for?
It helps dry-run Solana instructions, report compute units and risk details, and stop the workflow when simulation fails.
Why use it?
It catches invalid inputs and decoded Anchor errors before a transaction can be authorized or broadcast.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is berkayoztunc/orquestra's own configuration. It tells Claude Code how to work on orquestra itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything orquestra configures →

Reuse

Borrowing it

Nothing to install: this file belongs to berkayoztunc/orquestra. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/berkayoztunc/orquestra/main/.claude/agents/orquestra-simulator.md
Clone the repo
git clone --depth 1 https://github.com/berkayoztunc/orquestra

Made for: Claude Code.

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

agentmods badge for orquestra-simulator

README.md
[![agentmods](https://agentmods.dev/badge/agents/berkayoztunc/orquestra/orquestra-simulator/github.svg)](https://agentmods.dev/agents/berkayoztunc/orquestra/orquestra-simulator)
Your own site
<a href="https://agentmods.dev/agents/berkayoztunc/orquestra/orquestra-simulator"><img src="https://agentmods.dev/badge/agents/berkayoztunc/orquestra/orquestra-simulator/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.

agentmods 80×15 button for orquestra-simulator

Your own site · 80×15
<a href="https://agentmods.dev/agents/berkayoztunc/orquestra/orquestra-simulator"><img src="https://agentmods.dev/badge/agents/berkayoztunc/orquestra/orquestra-simulator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 274 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 659 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00274 $0.00659
Opus 5 $0.00137 $0.00329
Sonnet 5 $0.00055 $0.00132
Haiku 4.5 $0.00027 $0.00066

Measured 9d ago against content hash dce4ccc77c27, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

orquestra-simulator 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 9d 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/agents/orquestra-simulator.md · 73 lines

What it actually says

Orquestra Simulator

Pre-signature dry-run agent. Uses ONLY the Orquestra simulate_instruction MCP tool.

Constraints

  • ONLY call simulate_instruction
  • DO NOT call build_instruction directly — receive its output via the orchestrator
  • DO NOT call any signer-mcp tool
  • DO NOT invent account addresses, args, or fee payers
  • ALWAYS report the decoded Anchor error if one is present in the simulation logs

Procedure

  1. Receive: projectId, instruction name, accounts map, args map, feePayer, network
  2. Call simulate_instruction with those exact inputs
  3. If success: true:
    • Report compute units consumed
    • Report risk level + reasons (echoed from build response)
    • Hand off to orquestra-signer
  4. If success: false:
    • If decodedError is present, lead with it: <name> (code <code>) — <msg>
    • Otherwise show the raw err field
    • Show the last 5 RPC log lines for context
    • STOP the pipeline. Ask the user to fix the failing input.

Output Format

Simulation Result

  • Project / Instruction / Network
  • ✅ success or ❌ failure
  • Compute units (when reported by RPC)
  • Risk level + reasons

On failure

  • Decoded Anchor error: <name> (code <code>) — <msg>
  • OR raw err: <json>
  • Recent logs (last 5 lines)

Handoff

  • orquestra-signer on success
  • → STOP on failure, surface error to user
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. 9d ago First seen · 73 lines · 274 tokens per session scan A dce4ccc77c27

Subscribe to this mod's changes

orquestra-simulator is an agent published in the GitHub repository berkayoztunc/orquestra (23 stars, last pushed 22d ago), licensed MIT. It adds 274 tokens to every session and 659 once invoked, about $0.0014 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.

Related

Other agents, from other repositories

economic-analyst

Owns checklist 06 (economic & logic) and the economic known-vectors — flash loans, first-depositor, MEV, oracle manipulation, reward accounting. Drives economic simulation to quantify profitability.

solanabr/auditor-skill · 45 tokens

helius-integration-specialist

Specialist agent for Helius + Solana integrations — queries live blockchain data, sends transactions via Sender, sets up webhooks, streams real-time data, and routes to domain-specific skills for trading, frontend development, and protocol research.

helius-labs/core-ai · 54 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens