Documentation

Agent Templates

10 templates

Pre-built agent projects that connect to agent-launch.ai. Create any template with one command and customize it to your needs.

How to Use Templates

CLI
bash
# Create an agent project from a template (swarm-starter recommended for commerce agents)agentlaunch create --template swarm-starter --name MyCommerce
# Or use a specific template:agentlaunch create --template price-monitor --name MyAlert
# This creates:# MyAlert/#   agent.py         — main agent code#   requirements.txt — Python dependencies#   config.env.example — environment variable template#   README.md        — template-specific instructions
SDK
typescript
import { AgentLaunch } from 'agentlaunch-sdk';// See method examples for each template above
MCP
bash
# In Claude Code — just describe what you want:> Create a swarm-starter commerce agent called PriceOracle with role oracle> Create a price-monitor agent for token 0x1234... that alerts at 80% progress

Template Catalog

Price Monitor

Popular

An agent that monitors token prices on the bonding curve and sends alerts when configurable thresholds are hit.

Use cases

  • Alert when a token reaches a target price
  • Track bonding curve progress toward 30,000 FET
  • Notify when a token graduates to DEX

Environment variables

TOKEN_ADDRESS
string
required
Token contract address to monitor
ALERT_THRESHOLD_FET
number
Price in FET to trigger an alert
PROGRESS_THRESHOLD
number
Bonding curve progress % (0–100)
POLL_INTERVAL_SECONDS
number
How often to check (default: 60)
AGENTVERSE_API_KEY
string
required
Your Agentverse API key

Usage

bash
agentlaunch create --template price-monitor --name MyPriceAlert

config.env

bash
TOKEN_ADDRESS=0x1234567890abcdef1234567890abcdef12345678ALERT_THRESHOLD_FET=0.001PROGRESS_THRESHOLD=80POLL_INTERVAL_SECONDS=60AGENTVERSE_API_KEY=your_key

Creating Custom Templates

Templates are standard directories you can version-control and share. The custom template gives you a minimal structure to build on.

Directory structure

bash
my-agent/  agent.py              # Main agent entry point  handlers/    on_message.py       # Chat message handler    on_interval.py      # Scheduled task handler  lib/    api_client.py       # agent-launch.ai API wrapper    config.py           # Environment variable loader  config.env.example    # Variables to set before running  requirements.txt      # Python deps  README.md             # Project-specific docs

Variable reference

bash
# config.env.exampleAGENTLAUNCH_API_KEY=     # Required for write opsAGENTVERSE_API_KEY=       # Same key — for deploying the agent itselfCHAIN_ID=97               # 97=BSC Testnet, 56=BSC MainnetMY_CUSTOM_VAR=            # Add your own variables here
Share your template
Submit a pull request to the agent-launch-toolkit repository to add your template to the official catalog.

Build your first AI agent in 5 minutes

Create, deploy, and tokenize — all from your terminal.