Skip to main content
AI coding agents can use Boundless more effectively when they have access to structured skill files that describe the product’s capabilities, workflows, and common patterns. Boundless publishes a skill.md file following the agentskills.io specification. This file gives agents structured context about:
  • Requestor workflows — submitting proof requests, configuring offers, tracking fulfillment
  • Prover workflows — setting up nodes, configuring Bento and Broker, depositing collateral
  • SDK and CLI usage — common commands, environment variables, storage providers
  • Decision guidance — when to use Groth16 vs aggregated proofs, onchain vs offchain submission
  • Common gotchas — free RPC failures, journal size limits, collateral requirements

Add Boundless to your agent

Install the Boundless skill into your AI agent’s context using the skills CLI:
npx skills add https://docs.boundless.network
This fetches the skill.md from Boundless and adds it to your agent’s context, so it can help you build on Boundless with accurate, up-to-date guidance.

Monorepo skills

The Boundless monorepo also includes task-specific skills in .claude/skills/ that provide deeper, step-by-step guidance for common workflows:
SkillDescription
requestingSubmit a proof request end-to-end — wallet setup, CLI install, deposit, submit, poll, and proof retrieval.
setup-proverDeploy and manage a Boundless prover on a GPU server using Ansible.
boundless-cliComplete reference for the Boundless CLI — requestor, prover, and rewards commands.
These skills are automatically available to agents working inside the Boundless monorepo (e.g., Claude Code, Cursor). When you clone the repo, your agent can read the skill files directly.
If you’re using Claude Code, the skills in .claude/skills/ are loaded automatically when relevant. Just ask Claude to help you set up a prover or submit a proof request.

What agents can help with

Here are some example prompts to try with your AI agent after adding the Boundless skill: For requestors:
Help me submit my first proof request on Boundless using the CLI
I have a RISC Zero guest program — walk me through requesting a proof on Boundless
For provers:
Help me set up a Boundless prover on my GPU server
My broker isn't picking up requests — help me troubleshoot
For developers:
How do I use Steel to read EVM state in my guest program?
What's the difference between Groth16 and aggregated proofs?