一键导入
butterbase-skills
Claude Code plugin for Butterbase — 30+ guided skills and auto-configured MCP for the AI-native backend-as-a-service.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Claude Code plugin for Butterbase — 30+ guided skills and auto-configured MCP for the AI-native backend-as-a-service.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user wants to read/write their Butterbase substrate — the per-user agent-memory backend that holds entities, business state, institutional memory, and an append-only action ledger. Use for: founder copilots, AI agents that need memory across sessions, anything that proposes actions on the user's behalf.
Use when designing, deploying, or debugging a Butterbase Agent (declarative LLM/tool graph), registering an MCP server for tool use, or wiring access controls and rate limits. Agents are first-class app resources defined by a `graph_spec` and invoked over `/v1/<app_id>/agents/<name>/runs`.
Use as the agents build stage of the Butterbase journey. Implements the Agents section of 02-plan.md by delegating to the `agents` skill for each agent. Registers any required MCP servers, validates each graph_spec, creates the agent, and smokes it via invoke_agent. Skipped if the plan has no agents.
Use as stage 1 of the Butterbase journey, when the user has only a rough idea ("I want to build something that..."). Conducts a concrete, one-question-at-a-time brainstorm that surfaces who the user is, what they do first, what the must-haves are, and inline-tags Butterbase capabilities (→ manage_schema, → deploy_function, etc.). Produces docs/butterbase/01-idea.md.
Use as stage 2 of the Butterbase journey, after journey-idea has written 01-idea.md. Translates the idea + capability map into a concrete Butterbase plan — tables (with columns/types/RLS shape), auth providers, function list (name + trigger), storage buckets, AI/RAG/realtime/durable usage, and the chosen frontend stack. In hackathon mode, ruthlessly cuts scope into a "ship now" vs "post-hackathon" split. Produces docs/butterbase/02-plan.md.
Use when the user says "build an app", "let's start", "help me build", "I have an idea for", "ship it", or otherwise signals they want to go from idea to deployed Butterbase app. Orchestrates the full guided journey (idea → plan → preflight → build → deploy → optional hackathon submit) by reading docs/butterbase/00-state.md and dispatching to the next stage skill.
| name | butterbase-skills |
| description | Claude Code plugin for Butterbase — 30+ guided skills and auto-configured MCP for the AI-native backend-as-a-service. |
| license | MIT |
| supported_assistants | ["claude-code","claude-desktop"] |
| homepage | https://butterbase.ai |
| repository | https://github.com/butterbase-ai/butterbase-skills |
Claude Code plugin for Butterbase — an AI-native backend-as-a-service with Postgres, auth, storage, serverless functions, an AI gateway, RAG, realtime, and durable objects.
This plugin gives Claude deep knowledge of Butterbase's 40+ MCP tools, ships 30+ guided skills, and auto-configures the MCP server connection.
.mcp.json points Claude at https://api.butterbase.ai/mcp with your BUTTERBASE_API_KEY. All Butterbase tools available immediately.CLAUDE.md teaches Claude Butterbase's environment, branding, tool shape, and core workflow./butterbase-skills:journey walks any idea from brainstorm → plan → schema → auth → functions → deploy → optional hackathon submission.schema-design, auth-setup, function-dev, deploy-frontend, debug-rls, storage, rag-dev, realtime, durable-objects, ai, migrations, substrate, integrations, payments, and more.# Add the marketplace
claude plugin marketplace add https://github.com/butterbase-ai/butterbase-skills
# Install the plugin
claude plugin install butterbase
butterbase keys generate
export BUTTERBASE_API_KEY=bb_sk_your_key_here
| Skill | What it does |
|---|---|
/butterbase-skills:journey | End-to-end orchestrator — idea → deployed app |
/butterbase-skills:build-app | Build a complete app from scratch |
/butterbase-skills:schema-design | Design Postgres schemas with the declarative DSL |
/butterbase-skills:auth-setup | Configure OAuth providers, JWT, service keys |
/butterbase-skills:function-dev | Develop and deploy serverless functions |
/butterbase-skills:deploy-frontend | Deploy React / Next.js / static to a live URL |
/butterbase-skills:debug-rls | Debug Row-Level Security access issues |
/butterbase-skills:rag-dev | Build a RAG knowledge base with semantic search |
/butterbase-skills:durable-objects | Stateful per-key actors (chat rooms, multiplayer, rate limiters) |
/butterbase-skills:realtime | WebSocket subscriptions for live database changes |
/butterbase-skills:integrations | Composio toolkits — email, Slack, GitHub, Notion, Linear, CRM |
/butterbase-skills:payments | Stripe Connect via manage_billing — subscriptions, marketplace splits |
/butterbase-skills:substrate | Per-user agent memory backend (entities, decisions, action ledger) |
See CLAUDE.md and the skills/ directory for the full set.
claude_desktop_config.json:
{
"mcpServers": {
"butterbase": {
"url": "https://api.butterbase.ai/mcp",
"headers": { "Authorization": "Bearer ${BUTTERBASE_API_KEY}" }
}
}
}
@butterbase/mcp.MIT