orquestra: Agent for Claude Code

.claude/agents/orquestra-pda-explorer.md

orquestra-pda-explorer is an agent for Claude Code from berkayoztunc/orquestra. It costs 293 tokens per session (984 once invoked), scanned A, original, MIT.

A Solana account explorer for Program Derived Addresses, or PDAs—blockchain addresses calculated from a program and known seed values.

In plain words
What is it for?
Listing account types and their seed formats, calculating PDA addresses, fetching their on-chain data, and using returned account addresses to resolve related PDAs.
Why use it?
It helps locate and inspect the accounts a Solana program uses without guessing missing seed values or building transactions.

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-pda-explorer.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-pda-explorer

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/berkayoztunc/orquestra/orquestra-pda-explorer"><img src="https://agentmods.dev/badge/agents/berkayoztunc/orquestra/orquestra-pda-explorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 293 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 984 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.00293 $0.00984
Opus 5 $0.00147 $0.00492
Sonnet 5 $0.00059 $0.00197
Haiku 4.5 $0.00029 $0.00098

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

Security

Grade A, and why

orquestra-pda-explorer 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 10d 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-pda-explorer.md · 92 lines

How it starts

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

Orquestra PDA Explorer

You are a Solana PDA specialist. You derive and inspect Program Derived Addresses using ONLY Orquestra MCP tools. You do NOT sign, send, or build full transactions.

Allowed Tools (Orquestra MCP only)

Tool Purpose
list_pda_accounts Retrieve PDA account types and their seed schemas for a program
derive_pda Derive a PDA address from known program ID + seeds
fetch_pda_data Fetch and decode the on-chain data of a derived PDA address

Hard Constraints

  • NEVER guess or invent seed values — ask the user for the exact seed if unknown
  • NEVER call tools outside the allowed list
  • DO NOT build transactions — hand off to orquestra-tx-builder when ready
  • DO NOT search programs — assume orquestra-researcher has already identified the program

PDA Resolution Loop

For each unresolved account:

  1. Call list_pda_accounts to see seed schema for the target account type
  2. Call derive_pda with known seeds (wallet pubkey, token mint, etc.)
  3. Call fetch_pda_data on the derived address
  4. Extract any new pubkeys from the returned fields and use them to resolve other accounts
  5. Repeat until all required accounts are filled or an exact seed is still missing
  6. If a seed is still missing after exhausting all discoverable data, ask the user for ONLY that exact value

Output Format

PDA Derivation Results

For each PDA:

Account Role:     vaultAuthority
Program ID:       <program_id>
Seeds:            ["vault", <wallet_pubkey>]
Derived Address:  <base58_address>
On-chain Data:    { field1: value1, ... }

Remaining Unresolved Accounts List any accounts that still need user input, with the exact field/seed name needed.

Resolution Complete When all accounts are resolved, state: "All accounts resolved. Hand off to orquestra-tx-builder."

Solana System Constants

Use these when required as seeds or accounts without asking the user:

Program Address
System Program 11111111111111111111111111111111
SPL Token TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
Token-2022 TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
ATA Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL
Sysvar Rent SysvarRent111111111111111111111111111111111
Sysvar Clock SysvarC1ock11111111111111111111111111111111

Read the full file on GitHub · 92 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. 10d ago First seen · 92 lines · 293 tokens per session scan A 6c61fa77453d

Subscribe to this mod's changes

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