stellar-agentic-frameworklisted
Install: claude install-skill rylsherdamz-rgb/stellar-agentic-framework
# Stellar Agentic Framework
Build production Stellar dApps with an eval-driven, multi-agent coding harness.
## When to Use
- Building a Stellar smart contract (token, DeFi, NFT, zk)
- Scaffolding a full dApp with wallet connect + contract interaction
- Setting up x402 payment middleware for a paid API
- Creating a Stellar frontend with Stellar Wallets Kit
- Writing backend services that query Stellar chain data
- Need eval-driven quality gates for Stellar development
## How It Works
The harness routes your request to 6 specialist agents running in parallel, verifies every output against structured evals, steers on failure (max 3 retries), and produces an eval report.
```
User Request → Route to Agents → Parallel Build → Verify with Evals → Report
┌���─────────────┐
│ @contracts │
│ @frontend │
│ @backend │
│ @payments │
│ @ops │
│ @zk │
└──────────────┘
```
## Setup
### Install the Framework
```bash
npx create-stellar-agentic my-dapp
cd my-dapp
npm install
```
This scaffolds a full project with contracts, frontend, and backend templates.
### Or Install as a Skill Only
```bash
npx create-stellar-agentic --skill-only .
```
Or from the registry:
```bash
npx skills add r