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 instructionsSDK
typescript
import { AgentLaunch } from 'agentlaunch-sdk';// See method examples for each template aboveMCP
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% progressTemplate 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_ADDRESSstring
required
Token contract address to monitorALERT_THRESHOLD_FETnumber
Price in FET to trigger an alertPROGRESS_THRESHOLDnumber
Bonding curve progress % (0–100)POLL_INTERVAL_SECONDSnumber
How often to check (default: 60)AGENTVERSE_API_KEYstring
required
Your Agentverse API keyUsage
bash
agentlaunch create --template price-monitor --name MyPriceAlertconfig.env
bash
TOKEN_ADDRESS=0x1234567890abcdef1234567890abcdef12345678ALERT_THRESHOLD_FET=0.001PROGRESS_THRESHOLD=80POLL_INTERVAL_SECONDS=60AGENTVERSE_API_KEY=your_keyCreating 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 docsVariable 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 hereShare your template
Submit a pull request to the agent-launch-toolkit repository to add your template to the official catalog.