orquestra-pda-explorer

orquestra-pda-explorer is a skill for Claude Code from berkayoztunc/orquestra. It costs 85 tokens per session (640 once invoked), scanned A, original, MIT.

A Solana account lookup tool for deriving Program Derived Addresses, or PDAs, and retrieving their on-chain data. PDAs are deterministic blockchain addresses calculated from a program and exact seed values.

In plain words
What is it for?
Use it to find a stake account, derive a PDA for a wallet, inspect account data, or resolve all account addresses needed before building a Solana transaction.
Why use it?
It resolves missing account addresses from known information and follows links between accounts until the required data is found. It does not guess missing seeds or build or sign transactions.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to find a stake account, derive a PDA for a wallet, inspect account data, or resolve all account addresses needed before building a Solana transaction.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/berkayoztunc/orquestra/orquestra-pda-explorer
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.

Any agent
npx skills add berkayoztunc/orquestra --skill orquestra-pda-explorer
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/skills/berkayoztunc/orquestra/orquestra-pda-explorer/github.svg)](https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-pda-explorer)
Your own site
<a href="https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-pda-explorer"><img src="https://agentmods.dev/badge/skills/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/skills/berkayoztunc/orquestra/orquestra-pda-explorer"><img src="https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-pda-explorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 640 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 31
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00085 $0.00640
Opus 5 $0.00043 $0.00320
Sonnet 5 $0.00017 $0.00128
Haiku 4.5 $0.00009 $0.00064

Measured 11d ago against content hash 219d8782cf72, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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.

agents/skills/orquestra-pda-explorer/SKILL.md · 54 lines

What it actually says

Orquestra PDA Explorer

Account resolution skill. Uses ONLY Orquestra MCP tools to derive PDA addresses, fetch their on-chain data, and iteratively resolve all required accounts.

Constraints

  • ONLY use Orquestra MCP tools: list_pda_accounts, derive_pda, fetch_pda_data, get_program_data
  • DO NOT search programs, build transactions, or sign anything
  • DO NOT guess seed values — ask the user for the exact missing seed
  • DO NOT proceed to build if required accounts are still unresolved

Resolution Loop

For each unresolved account:

  1. Call list_pda_accounts → get seed schema for the target account type
  2. Call derive_pda with available seeds
  3. Call fetch_pda_data on the derived address
  4. Call get_program_data when addresses are not derivable but can be found by program owner, account type, dataSize, memcmp, or fixed-field filters
  5. Extract new pubkeys from returned fields → use to fill other missing accounts
  6. Repeat until all required accounts are filled
  7. If a seed is still missing, ask for ONLY that exact seed value

Solana System Constants (use without asking)

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

Output Format

For each PDA:

Account Role:     <name>
Seeds:            [<seed1>, <seed2>]
Derived Address:  <base58_address>
On-chain Data:    { field: value, ... }

List remaining unresolved accounts with the exact missing seed name. When complete: "All accounts resolved → hand off to orquestra-tx-builder."

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. 11d ago First seen · 54 lines · 85 tokens per session scan A 219d8782cf72

Subscribe to this mod's changes

orquestra-pda-explorer is a skill published in the GitHub repository berkayoztunc/orquestra (23 stars, last pushed 24d ago), licensed MIT. It adds 85 tokens to every session and 640 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-30.

Related

Other skills, from other repositories

solana-dev

Use when user asks to "build a Solana dapp", "write an Anchor program", "create a token", "debug Solana errors", "set up wallet connection", "test my Solana program", "fuzz my Solana program", "deploy to devnet", "send a v1 transaction", "support larger transactions", "fix maxSupportedTransactionVersion", or "explain…

solana-foundation/solana-dev-skill · 250 tokens

code-navigation

Rapid, focused navigation to locate definitions/usages and map the impact of proposed changes.

pilinux/gorest · 20 tokens

alchemy-agentic-gateway

Use when accessing Alchemy APIs for RPC calls, token balances, NFT metadata, asset transfers, transaction simulation, or Alchemy-specific features. Also use when the user mentions "SIWE", "SIWS", "x402", "MPP", "mppx", or "agentic gateway" — this skill covers wallet-based auth flows for Alchemy's x402 and MPP…

moonpay/skills · 101 tokens

alchemy-api

Integrates Alchemy blockchain APIs using an API key. Requires $ALCHEMYAPIKEY to be set; if unavailable, use the alchemy-agentic-gateway skill instead. Use when user asks about EVM JSON-RPC calls, token balances, NFT ownership or metadata, transfer history, token prices, portfolio data, transaction simulation…

moonpay/skills · 100 tokens

slv-validator

Ansible playbooks and Jinja2 templates for deploying and managing Solana validators (mainnet and testnet).

ValidatorsDAO/slv · 0 tokens

slv-grpc-geyser

Ansible playbooks and Jinja2 templates for deploying and managing Solana gRPC Geyser streaming nodes.

ValidatorsDAO/slv · 0 tokens