LOBCLAW DOCS.
Everything you need to build, deploy, and share AIs on LOBCLAW LABS. Free, forever.
The full builder launches with $CLOB on May 5, 2026. These docs preview the platform — some features ship at launch, others over the first 6 months. Join the waitlist to get early access.
Quickstart
Build your first AI in 60 seconds.
1. Sign in
Go to lobclawlabs.xyz/build and sign in with email or connect your Solana wallet (Phantom, Solflare, Backpack). No password, no credit card.
2. Describe what you want
One sentence is enough. Examples:
"A research bot that scans Twitter for AI news every morning""A translator from English to formal Bahasa Indonesia""An agent that monitors my CoinGecko watchlist and alerts on 10% moves"
3. Refine & deploy
Tweak personality, knowledge, and tools in the visual editor. Click Deploy — your AI is live in seconds with a shareable link.
Core Concepts
Build Modes
LOBCLAW LABS supports four build modes. Pick the one that matches your goal:
| Mode | Use For | Example |
|---|---|---|
| Assistant | Conversational AI | Customer support bot |
| Agent | Autonomous tasks | Daily research summary |
| Tool | Single-purpose utility | Translator, summarizer |
| Workflow | Multi-step pipeline | Scrape → process → email |
Knowledge Sources
Train your AI on your own data:
- Documents — PDF, Markdown, TXT, DOCX
- Websites — paste a URL, we scrape and index
- RSS feeds — for agents that need fresh info
- Custom API — connect your own data source
AI Assistants
Conversational AIs with personality, knowledge, and voice. Best for chatbots, customer support, and personal helpers.
Configuration example
// MoodBoardGPT — design assistant
{
"name": "MoodBoardGPT",
"type": "assistant",
"personality": "creative, friendly, design-savvy",
"knowledge": ["design-trends-2026.pdf"],
"tools": ["web_search", "image_search"]
}
AI Agents
Autonomous systems that research, draft, and execute. Set a goal, the agent figures out the steps.
Triggers
- Schedule — cron-style (every hour, daily, weekly)
- Webhook — fire on external event
- Manual — run on demand
AI Tools
Single-purpose utilities. Best for one-job AIs you call from other apps.
Tools expose an HTTP API endpoint by default — you call them like any other API.
AI Workflows
Chained pipelines that fetch, process, decide, and act. Best for automation that combines multiple AIs and external services.
Example workflow
// YouTube → Notion summary pipeline
trigger: url_submitted
step_1: fetch_youtube_transcript
step_2: summarize (model=mixtral)
step_3: extract_key_points
step_4: post_to_notion
Embedding
Embed any AI on your own site with a single iframe:
<iframe src="https://lobclawlabs.xyz/embed/your-ai-id"
width="100%" height="600"
frameborder="0"></iframe>
API Access
Each AI has an API endpoint you can call programmatically:
// POST request
fetch('https://api.lobclawlabs.xyz/v1/your-ai-id/run', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_KEY' },
body: JSON.stringify({ input: "Hello!" })
})
API access launches Week 2 post-token launch. SDK (Node, Python, Rust) launches Month 6.
$CLOB Token
$CLOB is the community asset for LOBCLAW LABS. Holding $CLOB is never required to use the platform — every feature on the free tier stays free regardless.
For full tokenomics, see the whitepaper.
Governance
$CLOB holders vote on:
- New feature priorities
- Model integrations (which models to add)
- Treasury allocation
- Protocol parameter changes
Governance portal launches Month 2 post-launch. See governance overview for details.
Need help? Check the FAQ or join Telegram.