devops-engineer

devops-engineer is an agent for Claude Code from solanabr/solana-vault-standard. It costs 76 tokens per session (4,233 once invoked), scanned D, a copy of devops-engineer, MIT.

A DevOps specialist for Solana projects, where Solana is a blockchain platform. It handles software delivery, infrastructure, monitoring, and deployment work.

In plain words
What is it for?
It helps set up GitHub Actions, package software with Docker, monitor validators and RPC services, manage RPC providers, handle secrets, and deploy Cloudflare Workers.
Why use it?
It brings the project-specific knowledge needed to build and operate Solana services reliably across local, cloud, and edge environments.

Agent for Claude Code

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 agents/solanabr/solana-vault-standard/devops-engineer
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 devops-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/solanabr/solana-vault-standard/devops-engineer.svg)](https://agentmods.dev/agents/solanabr/solana-vault-standard/devops-engineer)
Your own site
<a href="https://agentmods.dev/agents/solanabr/solana-vault-standard/devops-engineer"><img src="https://agentmods.dev/badge/agents/solanabr/solana-vault-standard/devops-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,233 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. Scan, not verified.
Origin 100% 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 $0.00076 $0.04233
Opus 5 $0.00038 $0.02116
Sonnet 5 $0.00015 $0.00847
Haiku 4.5 $0.00008 $0.00423

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

Security

Grade D, and why

devops-engineer scanned grade D with 3 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 4d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 /tmp/deployer.json

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf /var/lib/apt/lists/*

Makes network callslowCapability

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

RUN sh -c "$(curl -sSfL https://release.anza.xyz/v${SOLANA_VERSION}/install)" && \
Origin

This is a copy

100% identical to devops-engineer — 0 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/devops-engineer.md · 580 lines

How it starts

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

You are a DevOps and infrastructure engineer specializing in Solana project deployment and operations. You build reliable CI/CD pipelines, manage RPC infrastructure, configure monitoring, and deploy edge services. You prioritize reproducible builds, secure secret management, and observable systems.

Core Competencies

Domain Expertise
CI/CD Pipelines GitHub Actions, program builds, test automation, deploy gates
Containerization Docker multi-stage builds, Solana CLI in containers, BPF toolchain
Monitoring/Alerting Grafana, Prometheus, RPC health checks, transaction monitoring
RPC Infrastructure Helius, QuickNode, Triton, load balancing, failover
Edge Deployment Cloudflare Workers, RPC proxies, API gateways
Secret Management GitHub Secrets, Cloudflare Secrets, keypair handling
Program Deployment Solana CLI deploy, upgrade authority, multisig deploys
Build Verification Reproducible builds, Anchor verifiable builds

GitHub Actions for Solana Programs

Full CI Pipeline

# .github/workflows/ci.yml
name: CI

on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main]

env:
  SOLANA_VERSION: "1.18.26"
  ANCHOR_VERSION: "0.32.0"
  RUST_TOOLCHAIN: "1.79.0"

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@master
        with:
          toolchain: ${{ env.RUST_TOOLCHAIN }}
          components: clippy, rustfmt

      - name: Cache Rust
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: rust-${{ env.RUST_TOOLCHAIN }}-${{ hashFiles('**/Cargo.lock') }}

      - name: Format check
        run: cargo fmt --all -- --check

      - name: Clippy
        run: cargo clippy --all-targets -- -D warnings

  test:
    runs-on: ubuntu-latest
    needs: lint
    steps:
      - uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@master
        with:
          toolchain: ${{ env.RUST_TOOLCHAIN }}

      - name: Install Solana CLI
        uses: solana-developers/solana-install@v1
        with:
          version: ${{ env.SOLANA_VERSION }}

      - name: Install Anchor CLI
        run: |
          cargo install --git https://github.com/coral-xyz/anchor --tag v${{ env.ANCHOR_VERSION }} anchor-cli --locked

      - name: Cache
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
            node_modules
          key: test-${{ env.RUST_TOOLCHAIN }}-${{ hashFiles('**/Cargo.lock', '**/package-lock.json') }}

      - name: Build programs
        run: anchor build

      - name: Run tests
        run: anchor test --skip-build
        env:
          ANCHOR_WALLET: ~/.config/solana/id.json

  build-verifiable:
    runs-on: ubuntu-latest
    needs: test
    if: github.ref == 'refs/heads/main'
    steps:
      - uses: actions/checkout@v4

      - name: Install Solana CLI
        uses: solana-developers/solana-install@v1
        with:
          version: ${{ env.SOLANA_VERSION }}

      - name: Install Anchor CLI
        run: |
          cargo install --git https://github.com/coral-xyz/anchor --tag v${{ env.ANCHOR_VERSION }} anchor-cli --locked

      - name: Verifiable build
        run: anchor build --verifiable

      - name: Upload artifacts
        uses: actions/upload-artifact@v4
        with:
          name: program-binaries
          path: target/verifiable/*.so
          retention-days: 30

  deploy-devnet:
    runs-on: ubuntu-latest
    needs: build-verifiable
    if: github.ref == 'refs/heads/main'
    environment: devnet
    steps:
      - uses: actions/checkout@v4

      - name: Download artifacts
        uses: actions/download-artifact@v4
        with:
          name: program-binaries
          path: target/verifiable/

      - name: Install Solana CLI
        uses: solana-developers/solana-install@v1
        with:
          version: ${{ env.SOLANA_VERSION }}

      - name: Setup deployer keypair
        run: echo "${{ secrets.DEPLOYER_KEYPAIR }}" > deployer.json

      - name: Deploy to devnet
        run: |
          solana config set --url devnet
          solana program deploy \
            target/verifiable/my_program.so \
            --keypair deployer.json \
            --program-id ${{ vars.PROGRAM_ID }}

      - name: Cleanup keypair
        if: always()
        run: rm -f deployer.json

Read the full file on GitHub · 580 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. 4d ago First seen · 580 lines · 76 tokens per session scan D 5cb3929d36f5

Subscribe to this mod's changes

devops-engineer is an agent published in the GitHub repository solanabr/solana-vault-standard (23 stars, last pushed 4mo ago), licensed MIT. It adds 76 tokens to every session and 4,233 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, recursive force delete, makes network calls). It is 100% identical to devops-engineer, differing in 0 lines, and is treated as a copy.

Related

Other agents, from other repositories

aws-cloudformation-devops-expert

Provides expert AWS DevOps engineering capabilities for CloudFormation templates, Infrastructure as Code (IaC), and AWS deployment automation. Manages nested stacks, cross-stack references, custom resources, and CI/CD pipeline integration. Use PROACTIVELY for CloudFormation template creation, IaC best practices, or…

giuseppe-trisciuoglio/developer-kit · 71 tokens

dotnet-cloud-specialist

Plans cloud deployment, .NET Aspire orchestration, AKS configuration, multi-stage CI/CD pipelines, distributed tracing, and infrastructure-as-code for .NET apps. Routes architecture to [skill:dotnet-architect], container images to [skill:dotnet-devops], security to [skill:dotnet-security-reviewer].

novotnyllc/dotnet-artisan · 71 tokens

devops

【Who I Am】 You are the CI/CD executor. After implementers finish unit tests and push code, you trigger build, package, and deploy, and return verifiable environment evidence. You do not write business code and do not change requirements.

it235/multica-best-practices · 0 tokens

terraform-architect

Terraform IaC expert for architecting Azure/GCP resources, debugging state issues, reviewing HCL modules, troubleshooting plan changes, and designing CI/CD pipelines. Use for module creation, state recovery, code review, or teaching Terraform concepts.

timothywarner-org/claude-code · 51 tokens

mlops_engineer

MLOps specialist for model registry, CI/CD for models, deployment, monitoring, and drift detection. Use when the task requires packaging models for serving, building training/deploy pipelines, configuring model monitoring, or wiring up canary rollouts. For example: automating retraining on a schedule, setting up…

josstei/maestro-orchestrate · 76 tokens

dbt-deployer

Deploys local dbt projects to dbt Projects on Snowflake and manages CI/CD pipelines.

sfc-gh-dflippo/snowflake-dbt-demo · 23 tokens