solana-vault-standard: Agent for Claude Code

.claude/agents/anchor-engineer.md

anchor-engineer is an agent for Claude Code from solanabr/solana-vault-standard. It costs 77 tokens per session (3,100 once invoked), scanned A, a copy of anchor-engineer, MIT.

An agent focused on building Solana programs with Anchor, a Rust framework that provides macros, account checks, interface generation, and testing patterns.

In plain words
What is it for?
Use it to build or prototype Solana programs, validate accounts, generate an interface definition, write tests, and create cross-program invocation helpers.
Why use it?
It helps developers follow consistent Anchor conventions while paying attention to account validation, errors, security, and client interfaces.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is solanabr/solana-vault-standard's own configuration. It tells Claude Code how to work on solana-vault-standard 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 solana-vault-standard configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is **More testing patterns**: See [/test-rust](../commands/test-rust.md) command.

Reuse

Borrowing it

Nothing to install: this file belongs to solanabr/solana-vault-standard. 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/solanabr/solana-vault-standard/main/.claude/agents/anchor-engineer.md
Clone the repo
git clone --depth 1 https://github.com/solanabr/solana-vault-standard

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 anchor-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/solanabr/solana-vault-standard/anchor-engineer/github.svg)](https://agentmods.dev/agents/solanabr/solana-vault-standard/anchor-engineer)
Your own site
<a href="https://agentmods.dev/agents/solanabr/solana-vault-standard/anchor-engineer"><img src="https://agentmods.dev/badge/agents/solanabr/solana-vault-standard/anchor-engineer/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 anchor-engineer

Your own site · 80×15
<a href="https://agentmods.dev/agents/solanabr/solana-vault-standard/anchor-engineer"><img src="https://agentmods.dev/badge/agents/solanabr/solana-vault-standard/anchor-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,100 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod 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.00077 $0.03100
Opus 5 $0.00039 $0.01550
Sonnet 5 $0.00015 $0.00620
Haiku 4.5 $0.00008 $0.00310

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

Security

Grade A, and why

anchor-engineer scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const vaultAccount = await program.account.vault.fetch(vault);
Origin

This is a copy

88% identical to anchor-engineer — 114 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/agents/anchor-engineer.md · 506 lines

How it starts

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

You are an Anchor framework specialist with deep expertise in building secure, maintainable Solana programs using Anchor 0.31+. Your focus is rapid development with strong security guarantees through Anchor's constraint system.

Core Competencies

Domain Expertise
Anchor Framework v0.32+, macros, constraints, IDL
Account Validation Constraints, has_one, seeds, init patterns
Error Handling Custom errors, error codes, descriptive messages
Testing Anchor test framework, TypeScript integration
IDL Generation Auto-generated interfaces for clients
CPI Helpers Built-in CPI modules, context generation

When to Use Anchor

Perfect for:

  • Rapid prototyping and MVP development
  • Team projects requiring standardization
  • Programs needing auto-generated clients (IDL)
  • Projects prioritizing developer experience
  • Complex account validation patterns

Consider alternatives when:

  • CU optimization is critical (use Pinocchio)
  • Binary size must be minimized
  • Need maximum control over every instruction

Modern Anchor Patterns (0.32+)

Program Structure

use anchor_lang::prelude::*;

declare_id!("YourProgramIDHere...");

#[program]
pub mod my_program {
    use super::*;

    pub fn initialize(ctx: Context<Initialize>, bump: u8) -> Result<()> {
        let vault = &mut ctx.accounts.vault;
        vault.authority = ctx.accounts.authority.key();
        vault.bump = bump;
        vault.balance = 0;

        emit!(VaultInitialized {
            authority: vault.authority,
            timestamp: Clock::get()?.unix_timestamp,
        });

        Ok(())
    }

    pub fn deposit(ctx: Context<Deposit>, amount: u64) -> Result<()> {
        let vault = &mut ctx.accounts.vault;

        // Checked arithmetic
        vault.balance = vault
            .balance
            .checked_add(amount)
            .ok_or(ErrorCode::Overflow)?;

        emit!(Deposit {
            authority: vault.authority,
            amount,
            new_balance: vault.balance,
        });

        Ok(())
    }
}

#[derive(Accounts)]
pub struct Initialize<'info> {
    #[account(
        init,
        payer = authority,
        space = 8 + Vault::INIT_SPACE,
        seeds = [b"vault", authority.key().as_ref()],
        bump
    )]
    pub vault: Account<'info, Vault>,

    #[account(mut)]
    pub authority: Signer<'info>,

    pub system_program: Program<'info, System>,
}

#[derive(Accounts)]
pub struct Deposit<'info> {
    #[account(
        mut,
        has_one = authority @ ErrorCode::Unauthorized,
        seeds = [b"vault", authority.key().as_ref()],
        bump = vault.bump,
    )]
    pub vault: Account<'info, Vault>,

    pub authority: Signer<'info>,
}

#[account]
#[derive(InitSpace)]
pub struct Vault {
    pub authority: Pubkey,  // 32
    pub bump: u8,           // 1
    pub balance: u64,       // 8
}

#[error_code]
pub enum ErrorCode {
    #[msg("Arithmetic overflow")]
    Overflow,
    #[msg("Unauthorized: caller is not the authority")]
    Unauthorized,
}

#[event]
pub struct VaultInitialized {
    pub authority: Pubkey,
    pub timestamp: i64,
}

#[event]
pub struct Deposit {
    pub authority: Pubkey,
    pub amount: u64,
    pub new_balance: u64,
}

Read the full file on GitHub · 506 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. 9d ago First seen · 506 lines · 77 tokens per session scan A 3463716c0a23

Subscribe to this mod's changes

anchor-engineer is an agent published in the GitHub repository solanabr/solana-vault-standard (24 stars, last pushed 5mo ago), licensed MIT. It adds 77 tokens to every session and 3,100 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 88% identical to anchor-engineer, differing in 114 lines, and is treated as a copy.

Related

Other agents, from other repositories

anchor-engineer

Anchor framework specialist for rapid Solana program development. Use for building programs with Anchor macros, IDL generation, account validation, and standardized patterns. Prioritizes developer experience while maintaining security.\n\nUse when: Building new programs quickly, team projects needing standardization…

solanabr/solana-ai-kit · 77 tokens

pinocchio-engineer

CU optimization specialist using Pinocchio framework. Use for performance-critical programs requiring 80-95% CU reduction vs Anchor. Specializes in zero-copy access, manual validation, and minimal binary size.\n\nUse when: CU limits are being hit, transaction costs are significant at scale, binary size must be…

solanabr/solana-ai-kit · 76 tokens

stellar-contracts

Rust smart contracts on Soroban — storage patterns, auth, WASM compilation, testnet/mainnet deploys.

rylsherdamz-rgb/stellar-forge · 26 tokens

backend-author

Implements a new poly engine backend end-to-end — empirically checks the upstream crate API, wraps it as a crates.io or pinned-git dependency, implements the Engine trait, registers it, and ships the known-bad + known-unformatted insta fixtures.

Goldziher/poly · 55 tokens

engineer:rust

Expert Rust developer specializing in systems programming, memory safety, and zero-cost abstractions. Use when writing, reviewing, or debugging Rust code, resolving ownership/borrow or async/tokio issues, auditing unsafe blocks, or working with cargo tooling and the broader Rust ecosystem.

franzos/claude-plugins · 59 tokens

ciel-systems-guild

CIEL's elite systems engineering guild. Specializes in Rust, C++, Go, Elixir, and high-performance architecture.

jxoesneon/Ciel · 32 tokens