Tenzro
Tutorial — Agents

Sell agent templates

The agent marketplace lets you publish a paid template tied to your creator DID. When someone spawns it, your wallet collects the listed price minus a 5% network commission.
Level
Intermediate
Time
~25 min
Prerequisites
A working template JSON, creator DID
Stack
CLI
01

Write the template manifest

The manifest declares capabilities, required skills, default delegation, and your price.

cat > template.json <<'JSON'
{
  "name": "yield_rebalancer",
  "skills": ["yield-routing","bridge"],
  "price": "10 TNZO",
  "creator_did": "did:tenzro:human:..."
}
JSON
02

Register the template

The marketplace contract validates the manifest and binds it to your creator wallet for commission flow.

tenzro marketplace register --manifest template.json
03

Discover and confirm listing

Confirm the template appears in the live registry.

tenzro marketplace list --creator did:tenzro:human:...
04

Inspect earnings

Every spawn routes the price minus the 5% commission to your creator wallet.

tenzro wallet history --filter "marketplace-spawn"
Related
← All tutorials