You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build, deploy, and tokenize AI agents in one conversation.
git clone agent-launch-toolkit && cd agent-launch-toolkit
npm install && cp .env.example .env
# Add your Agentverse API key
claude
> /build-agent
> "Build a price monitoring agent and tokenize it as $PMON"
Done. Agent running on Agentverse. Token live on-chain. Handoff link ready.
git clone https://github.com/tonyoconnell/agent-launch-toolkit.git
cd agent-launch-toolkit
npm install
cp .env.example .env
# Paste your Agentverse API key in .env
claude
Then say: /build-agent
Option B: Add to Existing Project
cd my-project
npx agent-launch init
cp .env.example .env
# Paste your Agentverse API key in .env
claude
The init command installs .claude/ rules, skills, MCP config, .env.example, and Cursor rules. It merges into existing config files without overwriting.
What's Inside
Package
npm
Description
SDK
agentlaunch-sdk
TypeScript client for all API operations
CLI
agentlaunch-cli
10 commands, full lifecycle, JSON output mode
MCP Server
agent-launch-mcp
13+ tools for Claude Code and Cursor
Templates
agentlaunch-templates
6 production-ready agent code generators
Agent Templates
Template
Description
custom
Blank Chat Protocol boilerplate
price-monitor
Watch token prices, send alerts on thresholds
trading-bot
Buy/sell signal generation
data-analyzer
On-chain data analysis pipelines
research
Deep dives, reports, knowledge retrieval
gifter
Treasury wallet with FET reward distribution
The Lifecycle
1. SCAFFOLD 2. DEPLOY 3. TOKENIZE 4. TRADE
────────── ───────── ─────────── ─────────
Pick a template -> Upload to -> Create token -> Human opens
Generate agent.py Agentverse record on handoff link,
Customize logic Start agent AgentLaunch connects wallet,
Get agent1q... Get handoff link signs deploy tx
Token is LIVE
Slash Commands (Claude Code)
Command
What It Does
/build-agent
Full guided flow: ask requirements, pick template, scaffold, deploy, tokenize
/deploy
Deploy an agent.py to Agentverse hosting
/tokenize
Create a token record for an existing agent, return handoff link
/market
Browse tokens, check prices, see trending, calculate buy/sell
/status
Check token price, progress, holder count, deployment status
MCP Tools (Claude Code / Cursor)
Pre-configured in .claude/settings.json. Available as soon as you open Claude Code.
Discovery
Tool
Description
list_tokens
Browse tokens with status/chain/category filters
get_token
Full details for a token by address or ID
get_platform_stats
Total volume, token count, trending
Price Calculations
Tool
Description
calculate_buy
Preview buy: tokens received, fee, price impact
calculate_sell
Preview sell: FET received, fee, price impact
Token Operations
Tool
Description
create_token_record
Create pending token, get handoff link
create_and_tokenize
Full lifecycle: scaffold + deploy + tokenize
update_token_metadata
Update description, logo, links
Handoff Links
Tool
Description
get_deploy_instructions
Structured deploy instructions for humans
get_trade_link
Pre-filled buy/sell URL for humans
Agentverse
Tool
Description
deploy_to_agentverse
Deploy Python agent, upload code, start
check_agent_logs
Read agent execution logs
stop_agent
Stop a running agent
Code Generation
Tool
Description
scaffold_agent
Generate agent project from template
get_agent_templates
List available templates
Social
Tool
Description
get_comments
Read comments on a token
post_comment
Post a comment on a token
CLI Commands
Command
Description
agentlaunch create
Interactive wizard: scaffold, deploy, tokenize in one flow
agentlaunch scaffold <name>
Generate agent project from template
agentlaunch deploy [file]
Deploy agent.py to Agentverse
agentlaunch tokenize <agent>
Create token record + handoff link
agentlaunch list
List tokens (filter, sort, paginate)
agentlaunch status <address>
Token price, progress, holders
agentlaunch holders <address>
Holder distribution
agentlaunch comments <address>
Read or post comments
agentlaunch config show
Show environment, URLs, chain, API key
agentlaunch config set-key <key>
Store API key
agentlaunch init
Install toolkit into any project
All commands support --json for machine-readable output.
The toolkit defaults to dev URLs — no configuration needed. To switch to production, set AGENT_LAUNCH_ENV=production in your .env. You can also override URLs directly:
npm install # Install all workspace dependencies
npm run build # Build all 4 packages
npm run test# Run all tests (78 tests across SDK + CLI)
npm run clean # Clean all dist/ directories