A DIY agent toolkit that provisions and assembles free-tier cloud services into working projects.
Clone this repo. Open it in any AI coding tool. The agents do the rest.
6 Autonomous Agents that work together:
| Agent | What it does |
|---|---|
| Master | Orchestrates everything — your entry point |
| Planner | Picks the right free services for your project |
| Provisioner | Walks you through creating accounts step by step |
| Assembler | Builds and deploys your project |
| Catalog | Keeps the free-tier service list up to date |
| Infra | Helps set up agent infrastructure (OpenClaw, etc.) |
10 Free-Tier Services ready to provision:
- GitHub (code hosting, CI/CD)
- Vercel (hosting, serverless)
- Supabase (database, auth)
- OpenAI (AI/GPT)
- Cloudflare (CDN, workers, storage)
- Netlify (hosting, forms, edge)
- Render (web services, Postgres)
- Neon (serverless Postgres)
- Resend (email API)
- Upstash (serverless Redis)
5 Project Recipes you can build today:
- Blog with AI summarization
- Portfolio site
- SaaS starter
- AI chatbot
- REST API backend
git clone https://github.com/chiKeka/universalbasiccompute-v2.git
cd universalbasiccompute-v2
npm installThen open in Claude Code and type:
/setup
The agent walks you through everything.
Add this to your MCP config:
{
"mcpServers": {
"ubc": {
"command": "npx",
"args": ["tsx", "tools/src/index.ts"],
"cwd": "/path/to/universalbasiccompute-v2"
}
}
}Your agent now has access to the full UBC toolkit.
git clone https://github.com/chiKeka/universalbasiccompute-v2.git
cd universalbasiccompute-v2
ANTHROPIC_API_KEY=sk-ant-... docker compose upgit clone https://github.com/chiKeka/universalbasiccompute-v2.git
cd universalbasiccompute-v2
pnpm install
pnpm ubc catalog list # Browse free services
pnpm ubc plan "build a blog" # Plan which services to use- You tell the agent what you want to build
- The planner picks the right free-tier services
- The provisioner walks you through creating accounts (step by step, in plain English)
- You paste your API keys back — they're stored locally and securely
- The assembler wires everything together and deploys
- You get a working project on free infrastructure
agents/ — Agent definitions (the brains)
services/ — Free-tier service catalog (signup guides, limits, credentials)
recipes/ — Pre-built project blueprints
tools/ — MCP server (universal toolkit any agent can use)
.claude/ — Claude Code integration (commands, context)
.ubc/ — Your local state and credentials (gitignored)
Add a service: Create a new YAML in services/ following the existing format.
Add a recipe: Create a new YAML in recipes/ listing required services and what to build.
Add an agent: Create a new directory in agents/ with an agent.yaml and README.md.
Connect to your agent platform: Point your MCP config at tools/src/index.ts.
Free-tier services from GitHub, Vercel, Supabase, OpenAI, Cloudflare, and dozens more collectively provide meaningful compute power — enough to build real applications without paying for infrastructure. We call this Universal Basic Compute.
This toolkit makes that compute accessible to everyone, not just developers.
MIT