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.
git clone --depth 1 https://github.com/rylsherdamz-rgb/stellar-forgeWrote 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.
[](https://agentmods.dev/commands/rylsherdamz-rgb/stellar-forge/scaffold)<a href="https://agentmods.dev/commands/rylsherdamz-rgb/stellar-forge/scaffold"><img src="https://agentmods.dev/badge/commands/rylsherdamz-rgb/stellar-forge/scaffold/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.
<a href="https://agentmods.dev/commands/rylsherdamz-rgb/stellar-forge/scaffold"><img src="https://agentmods.dev/badge/commands/rylsherdamz-rgb/stellar-forge/scaffold.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00415 |
| Opus 5 | $0.00000 | $0.00208 |
| Sonnet 5 | $0.00000 | $0.00083 |
| Haiku 4.5 | $0.00000 | $0.00042 |
Grade A, and why
scaffold 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 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.
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.
What it actually says
/scaffold
Create a new Stellar dApp project from scratch using the framework templates.
Usage
/scaffold <project-name> [type]
Types: full (default), contract-only, frontend-only, backend-only, payment-only, zk-only
Steps
- Run
mkdir -p <project-name>and cd into it - Determine which templates to copy based on
[type] - Copy from
templates/to<project-name>/:templates/contracts/→<project-name>/contracts/templates/frontend/→<project-name>/frontend/templates/backend/→<project-name>/backend/templates/cicd/→<project-name>/.github/workflows/
- Create
<project-name>/package.jsonwith npm workspaces - Create
<project-name>/.env.examplefrom template - Run
cd <project-name> && npm install - Run
cargo init --workspace <project-name>/contracts/if contracts included - Write decision record to
data/decisions/<date>-scaffold-<project-name>.md - Run
/graphify <project-name> --no-vizto graph the new project - Report: "Project scaffolded at . Next: run /deploy or /test-e2e"
Templates Reference
templates/contracts/hello-world/— Minimal contract with constructor, auth, eventstemplates/contracts/token/— SEP-41 token contract (mint, burn, transfer, approve)templates/frontend/— Next.js 15 App Router with Stellar Wallets Kit + wallet hookstemplates/backend/— Express server with x402/MPP payment middlewaretemplates/cicd/— GitHub Actions for contract test, frontend deploy, backend deploy
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.
- 9d ago First seen · 33 lines · 0 tokens per session scan A 5e92b15ae7cf
scaffold is a command published in the GitHub repository rylsherdamz-rgb/stellar-forge (17 stars, last pushed 16d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 415 tokens. 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.
Other commands, from other repositories
analyze
Conduct a full gas optimization analysis on a Foundry Solidity project.
compare
Compare gas snapshots between two git references to identify regressions and improvements.
watch
Toggle real-time gas annotation mode. When active, Claude appends a gas impact note after every Solidity edit it makes in the current session.
baseline
Read, update, or query the .gas-snapshot file produced by forge snapshot.
explain
Explain the EVM mechanic behind a specific gas optimization pattern with exact cost numbers, before/after code, and when NOT to apply it.
deploy
Deploy Solana program (devnet first, then mainnet).