function-dev
49butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use when developing, deploying, or debugging Butterbase serverless functions, or when the user needs to add backend logic like webhooks, scheduled jobs, or custom API endpoints.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use when developing, deploying, or debugging Butterbase serverless functions, or when the user needs to add backend logic like webhooks, scheduled jobs, or custom API endpoints.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use BEFORE recommending or installing any third-party SaaS SDK for email (Resend, SendGrid, Postmark, Mailgun), SMS (Twilio), messaging (Slack), calendar (Google Calendar), CRM (HubSpot, Salesforce), docs (Notion), or project management (Linear, GitHub). Butterbase covers most of these via manageintegrations…
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
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 graphspec, creates the agent, and smokes it via invokeagent. Skipped if the plan has no agents.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the AI build stage of the Butterbase journey. Implements the AI section of 02-plan.md by delegating to the ai skill. Calls manageai (updateconfig) to set defaults and optionally BYOK. Skipped if the plan has no LLM/embeddings usage.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the auth build stage of the Butterbase journey, after journey-schema (and rls if separate). Implements the Auth section of 02-plan.md by delegating to auth-setup. Calls manageoauth (configure) for providers and optionally manageauthconfig (configureauthhook, updatejwt). Skipped if the plan has no end-user auth.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the deploy-verification stage of the Butterbase journey, after journey-frontend (or after any build stage if there is no frontend). Smoke-tests the deployed app — hits the live URL, invokes any deployed functions, checks auth round-trip. Writes results to docs/butterbase/04-build-log.md. Blocks journey-submit…
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the docs-priming stage of the Butterbase journey, immediately after journey-preflight and before the first build stage. Reads the plan to discover which capabilities the app uses, calls butterbasedocs once per relevant topic, and caches a summary the build stages can re-read.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the durable-objects build stage of the Butterbase journey. Implements the Durable section of 02-plan.md by delegating to durable-objects. Calls managedurableobjects (deploy). Skipped if the plan has no per-key stateful actors (chat rooms, multiplayer, rate limiters).
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the frontend build stage of the Butterbase journey. Implements the Frontend section of 02-plan.md by delegating to deploy-frontend. Scaffolds (if needed) and deploys via createfrontenddeployment + managefrontend (startdeployment). Sets VITEAPIURL and VITEAPPID env. Skipped if the plan is API-only.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the functions build stage of the Butterbase journey. Implements the Functions section of 02-plan.md by delegating to function-dev for each function. Calls deployfunction per function; smokes each with invokefunction. Skipped if the plan has no functions.
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
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 (→ manageschema, →…
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
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…
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use before any Butterbase platform-touching action (or when journey-preflight is invoked directly) to verify the user has a Butterbase account, the MCP server is connected, BUTTERBASEAPIKEY is set, and an appid exists for this project. Re-run automatically if docs/butterbase/03-preflight.md is older than 24h or any…
butterbase-ai/butterbase-skills
Skill Claude CodeCodex
Use as the RAG build stage of the Butterbase journey. Implements the RAG section of 02-plan.md by delegating to rag-dev. Calls manageragcontent (createcollection, ingestdocument). Skipped if the plan has no knowledge-base feature.