Deploy your AI Discord bot in 30 seconds. No code required. Fully built on the Cloudflare ecosystem.
- Create an AI agent (name, personality, skills, LLM)
- Connect your cloud account (Zeabur or AWS)
- Deploy — one click, bot comes online in Discord
web/ React + Vite → Cloudflare Pages
api/ Hono.js → Cloudflare Workers (REST API)
queue-worker/ TypeScript → Cloudflare Workers (deployment jobs)
├── Cloudflare D1 (SQLite database)
├── Cloudflare Queues (async job queue)
└── Cloudflare R2 (agent configs / artifacts)
discord-engine/ Python discord.py → deployed to customer's cloud
agent-templates/ Dockerfile + config templates
Auth: Clerk Encryption: AES-256-GCM (Web Crypto API, no dependencies) Bot deployment targets: Zeabur · AWS
- Node.js 20+
- Wrangler CLI:
npm i -g wrangler - Clerk account (free)
- Cloudflare account (free)
make installnpx wrangler loginmake db-create # creates D1 database
make db-migrate # runs SQL migrations
make r2-create # creates R2 bucket
make queue-create # creates deploy queuecd api
npx wrangler secret put CLERK_SECRET_KEY
npx wrangler secret put ENCRYPTION_KEY # use: make gen-keycp web/.env.example web/.env
# fill in VITE_CLERK_PUBLISHABLE_KEY from clerk.com dashboardmake dev-api # API on http://localhost:8787
make dev-web # Frontend on http://localhost:5173make deploy-api
make deploy-web
make deploy-workerweb/
├── src/
│ ├── pages/ # Home, Dashboard, Agents, AgentNew, AgentDeploy, CloudAccounts
│ ├── components/ # Layout (Sidebar, TopBar), reusable UI
│ ├── lib/ # api.ts (fetch), utils.ts
│ └── types/ # agent.ts, deployment.ts, cloud.ts
api/
├── src/
│ ├── routes/ # agents.ts, deployments.ts, cloud-accounts.ts
│ ├── middleware/ # auth.ts (Clerk JWT)
│ ├── db/ # schema.ts (Drizzle), index.ts
│ └── lib/ # crypto.ts (AES-256)
└── migrations/ # D1 SQL migrations
queue-worker/
└── src/
├── adapters/ # zeabur.ts, aws.ts
└── index.ts # queue consumer logic
discord-engine/ # Python discord.py bot (deployed to customer's cloud)
agent-templates/ # Dockerfile + config templates for deployed bots
docs/ # Architecture, API ref, guides