zk-proofs

zk-proofs is a skill for Claude Code from rylsherdamz-rgb/stellar-forge. It costs 72 tokens per session (415 once invoked), scanned A, original, MIT.

A guide to zero-knowledge proofs—ways to prove something is true without revealing the underlying information—on the Stellar blockchain. It covers Circom, Noir, RISC Zero, and verification in Soroban smart contracts.

In plain words
What is it for?
Use it to build privacy-preserving Stellar applications, such as private transactions, voting, identity, and credentials. It also helps connect Circom, Noir, or RISC Zero proving tools to Stellar contracts.
Why use it?
It clarifies which proof systems can currently be checked directly on Stellar and which require an off-chain attestation. This avoids choosing an unsupported setup or overlooking the required verifier package.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the stellar-forge plugin — 31 skills, 4 commands, 6 agents, 4 MCP servers shipped together

Good fit Use it to build privacy-preserving Stellar applications, such as private transactions, voting, identity, and credentials. It also helps connect Circom, Noir, or RISC Zero proving tools to Stellar contracts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rylsherdamz-rgb/stellar-forge/zk-proofs
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 rylsherdamz-rgb/stellar-forge --skill zk-proofs
Clone the repo
git clone --depth 1 https://github.com/rylsherdamz-rgb/stellar-forge

Made for: Claude Code.

Or install stellar-forge, the plugin that ships this one along with the rest of its 31 skills, 4 commands, 6 agents, 4 MCP servers.

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 zk-proofs

README.md
[![agentmods](https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/zk-proofs/github.svg)](https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/zk-proofs)
Your own site
<a href="https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/zk-proofs"><img src="https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/zk-proofs/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 zk-proofs

Your own site · 80×15
<a href="https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/zk-proofs"><img src="https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/zk-proofs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 415 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 pass 7 Sept 2026
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.00072 $0.00415
Opus 5 $0.00036 $0.00208
Sonnet 5 $0.00014 $0.00083
Haiku 4.5 $0.00007 $0.00042

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

Security

Grade A, and why

zk-proofs 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 12d 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.

skills/zk-proofs/SKILL.md · 53 lines

What it actually says

ZK Proofs

When to Use

  • Privacy-preserving transactions on Stellar
  • On-chain ZK verification in Soroban contracts
  • Private voting, identity, or credential systems
  • Integrating Circom/Noir with Stellar

Toolchain Status

Tool On-Chain Verifiable Notes
Circom Yes (today) Groth16 via BLS12-381 host functions
Noir Pending BN254 Attestation pattern until CAP-74 lands
RISC Zero Pending BN254 Attestation pattern for now

Groth16 Verification (Circom)

Uses BLS12-381 pairing check host functions (available since Protocol 20).

circuit.circom → r1cs → zkey → proof.json + public.json
                                   ↓
                        Soroban contract verifier
                        (import soroban-zk-verifier)

Strict Rules

  1. Only Circom proofs can be verified on-chain today
  2. Noir and RISC Zero use the off-chain attestation pattern until BN254 lands
  3. ZK verifier contracts must import soroban-zk-verifier crate
  4. Always test with small circuits first — proving is expensive
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. 12d ago First seen · 53 lines · 72 tokens per session scan A bc4ac6b01dae

Subscribe to this mod's changes

zk-proofs is a skill published in the GitHub repository rylsherdamz-rgb/stellar-forge (17 stars, last pushed 2d ago), licensed MIT. It adds 72 tokens to every session and 415 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

zero-knowledge-proofs

Zero-knowledge proof systems authority — Groth16, PLONK, STARKs, Circom circuit authoring, snarkjs proof generation and verification, Halo2, recursive proofs, ZK-EVMs, and ZK rollup architectures including Polygon zkEVM, zkSync Era, and Starknet.

LuuOW/meridian-mcp · 70 tokens

lineth-quickstart

Operating manual for the Lineth Stack quickstart — the Docker-Compose dev/demo stack at docs/getting-started/lineth-stack in the lineth-monorepo that boots a local Linea/Lineth L2 with Sepolia or local L1 finality. Use whenever you are working inside the lineth-stack quickstart and need to boot or run the stack…

LFDT-Lineth/lineth-monorepo · 228 tokens

blockchain-zk

Zero-knowledge proofs, zk-rollup, zkEVM, Circom, Noir, Halo2, proof systems, Groth16, PLONK, STARK, recursive proofs, circuit optimization, zkSync, StarkNet, Scroll, Polygon zkEVM, and ZK application patterns. Covers proof system selection, circuit programming, prover infrastructure, and ZK rollup architecture. Do NOT…

j4flmao/agent-skills · 116 tokens

flounder

Operates Flounder, an autonomous white-hat security auditor. Use when a user asks for a security audit, bug-bounty review, vulnerability investigation, or exploit proof for a public-source or authorized repository, source tree, package, smart contract, Solidity/EVM project, ZK or proof-system code, deployed address…

adshao/flounder · 202 tokens

nirium-agentic-payments

Scaffold and run an x402 paid API server on Stellar with open-source client libraries: charge AI agents per API call with x402Serve(), a function from the nirium SDK that runs entirely on your own server, scaffold that server with nirium-cli in one command, and separately read live protocol data through the nirium-mcp…

nirium-protocol/nirium-sdk · 128 tokens

rail402-cli

Discover and pay for x402 APIs on Stellar from the command line. Use when an agent needs to find a paid API in the x402 Bazaar, pay for an API call with USDC on Stellar testnet, fund a testnet wallet, or look up an x402 settlement on the explorer — via the rail402 CLI.

tolgayayci/rail402 · 72 tokens