Journey: Plan
Stage 2 of the guided journey. Turn the idea brief into an actionable Butterbase plan.
When to use
- Dispatched by
journey when current_stage: plan.
- Directly via
/butterbase-skills:plan.
Inputs
docs/butterbase/01-idea.md (must exist — if absent, bounce back to journey-idea).
docs/butterbase/00-state.md (for hackathon_mode, hackathon_deadline).
External services — check built-ins first
When the plan needs email, messaging, calendar, CRM, docs, or project-management integration:
- Invoke
butterbase-skills:integrations and call manage_integrations action: "list_available" to see what Composio covers for this app.
- If a toolkit fits, the plan should record "via manage_integrations (toolkit: )" instead of naming an external SDK.
When the plan needs payments:
- Invoke
butterbase-skills:payments.
- Default to Stripe Connect via
manage_billing unless the user's region forces a fallback (see the payments skill).
- Record the choice ("Stripe Connect" or " via function proxy") in the plan's Payments section.
Procedure
Work through these sections in order. After each section, write the result to 02-plan.md before moving on. One question at a time per the spec's questioning discipline.
Tables. Read the capability map. Propose a starter table list with columns and types — recommend, don't ask blank. Example: "Tables I'm seeing: users, orders, items. Missing any?" Then for each table: "<table>.<column>: should this be a uuid / text / int / timestamp / enum?". Confirm primary keys, foreign keys, indexes that are obvious (foreign-key columns).
RLS model. For each table: "Can user A see user B's <table> rows? ① no, strict isolation ② yes, public-read ③ only shared via explicit grant." Decide policy shape. In hackathon mode, prefer option ① and recommend manage_rls action: create_user_isolation.
Auth. "OAuth providers: ① Google only ② Google + GitHub ③ email/password too ④ none (anonymous app)." Also ask: "Need a demo / judge account seeded? (hackathon mode only)".
Functions. For each function from the capability map: "<name>: trigger = HTTP / cron / WebSocket? If cron: schedule? If HTTP: idempotency needed?".
Storage. If used: "Which objects (avatars, attachments, …)? Public-read or per-user?".
AI / RAG / realtime / durable. Only if used. Capture model choice (AI), collections (RAG), tables to subscribe to (realtime), object kinds (durable).
6b. Agents. Only if create_agent is tagged in the idea. For each agent, capture:
name (slug), one-line purpose.
- Tool surface: which builtins (
query_table, insert_row, …), which functions (must exist in the Functions section), which MCP servers (URL + transport).
- Visibility: private | authenticated | public. If public AND any write tool is reachable, mark
safety_acknowledged_needed: true and set per-IP / per-user / per-app rate limits + daily_budget_usd.
- Default model.
- Note that the agent record will not be carried by clone replay — the spec JSON (under
agents/<name>.json) rides along in the repo snapshot, so this matters for the publish stage too.
- Frontend stack.
"Frontend: ① Vite + React ② Next.js ③ static HTML ④ none (API-only)." Write to 00-state.md frontend_stack.
7b. Publish-as-template. Read publish_as_template from 00-state.md front-matter (set by journey-idea). If yes or unlisted, plan for it now:
- README outline (one-liner, env-var-per-function list, OAuth setup, agent re-import, MCP server registration, seed data, first-run smoke).
- Which env vars use the auto-mint convention (
butterbase_api_key) vs. require manual user input on clone.
- Whether
agents/*.json files need to be exported and committed (yes if Agents section is non-empty).
- Note that publishing requires
butterbase repo push to upload the source tree as a snapshot — without it, cloners get an empty file tree.
Toolchain question
Ask: "Will your app's code use @butterbase/sdk only in the frontend, only server-side (functions, scripts), or both?" Record under Toolchain → SDK surfaces.
Ask: "Want to install @butterbase/cli for the local dev loop (logs, scaffolding, key rotation)? (yes/no — default yes)" Record under Toolchain → CLI usage.
Scope cut (hackathon mode). Re-read the must-haves list. For each, ask: "Ship now or post-hackathon?" Write the cut list into 02-plan.md's "Post-hackathon" section.
Annotate skipped stages. For every build stage NOT used in this plan (check the capability map and feature list), update 00-state.md's checklist to read - [ ] <stage> (n/a) for that row. Also do this for rls if hackathon_mode: true (mark as (folded into schema)).
Final approval. Show the user the assembled plan and ask: "Plan looks good? (yes / revise <section>)". Loop until yes.
02-plan.md format
# Plan
## Tables
- `users` (id uuid pk, email text unique, created_at timestamp)
- `orders` (id uuid pk, user_id uuid fk→users.id, status enum[pending,paid,shipped], total int, created_at timestamp; index on user_id)
- ...
## RLS
- `orders`: user-isolation (create_user_isolation, owner column = user_id)
- ...
## Auth
- Providers: Google
- Demo user: yes (email demo@example.com, password set via seed)
## Functions
- `stripe-webhook` — HTTP, idempotency table `_processed_events`
- `daily-digest` — cron 0 9 * * * UTC
## Storage
- bucket: `avatars` (per-user, private; download via presigned URL)
## AI / RAG / realtime / durable
- (none)
## Agents
- `order-summariser` — purpose: summarise a user's recent orders on demand.
- Tools: builtin `query_table`, function `format-currency`.
- Visibility: authenticated. Rate: 60/hr per user. Daily budget: $5.
- Default model: claude-haiku-4-5-20251001.
- Spec file: `agents/order-summariser.json` (committed to repo).
- (omit section entirely if no agents)
## Publish-as-template
- Intent: yes / unlisted / no
- README outline: <bullet list of sections>
- Env vars cloners must supply: <list per function>
- Auto-mint eligible keys: `butterbase_api_key` (etc.)
- Agent specs to bundle: `agents/*.json`
- Snapshot push: `butterbase repo push` at end of journey-templates.
- (omit section entirely if publish_as_template = no)
## Frontend
- Vite + React
## Toolchain
- **SDK surfaces**: <client-side only | server-side only | both>
- Client-side: install `@butterbase/sdk` in the frontend; use `auth`, `db`, `storage`, `realtime`.
- Server-side: install `@butterbase/sdk` in functions / scripts; use the service-key flow for elevated access.
- **CLI usage**: <yes / no>
- Yes (default): use `butterbase` CLI for local scaffolding, log tailing (`butterbase logs <fn>`), function invocation, and key rotation.
- **Why both**: MCP tools provision and orchestrate; SDK + CLI are the runtime + dev loop.
## Build order
1. schema
2. rls (folded into schema in hackathon mode)
3. auth
4. storage
5. functions
6. ai (if used)
7. rag (if used)
8. realtime (if used)
9. durable (if used)
10. agents (if used — must come after functions, ai, and any MCP-server setup)
11. frontend
12. deploy
13. templates (optional — only if publish_as_template != no)
## Post-hackathon
- email notifications (deferred)
- admin dashboard (deferred)
Outputs
- Writes
docs/butterbase/02-plan.md.
- Updates
00-state.md: tick - [x] plan, set frontend_stack, set current_stage: preflight, annotate skipped build stages with (n/a).
Anti-patterns
- ❌ Asking the user to design every table column without recommending defaults first.
- ❌ Skipping the scope-cut section in hackathon mode.
- ❌ Writing the plan only at the end — write as you go so progress survives a crash.
1---2name: journey-plan3description: 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.4---5
6# Journey: Plan
7
8Stage 2 of the guided journey. Turn the idea brief into an actionable Butterbase plan.
9
10## When to use
11
12- Dispatched by `journey` when `current_stage: plan`.
13- Directly via `/butterbase-skills:plan`.
14
15## Inputs
16
17- `docs/butterbase/01-idea.md` (must exist — if absent, bounce back to `journey-idea`).
18- `docs/butterbase/00-state.md` (for `hackathon_mode`, `hackathon_deadline`).
19
20### External services — check built-ins first
21
22When the plan needs email, messaging, calendar, CRM, docs, or project-management integration:
23
241. Invoke `butterbase-skills:integrations` and call `manage_integrations` `action: "list_available"` to see what Composio covers for this app.
252. If a toolkit fits, the plan should record "via manage_integrations (toolkit: <name>)" instead of naming an external SDK.
26
27When the plan needs payments:
28
291. Invoke `butterbase-skills:payments`.
302. Default to Stripe Connect via `manage_billing` unless the user's region forces a fallback (see the payments skill).
313. Record the choice ("Stripe Connect" or "<regional gateway> via function proxy") in the plan's Payments section.
32
33## Procedure
34
35Work through these sections in order. After each section, write the result to `02-plan.md` before moving on. One question at a time per the spec's questioning discipline.
36
371. **Tables.** Read the capability map. Propose a starter table list with columns and types — recommend, don't ask blank. Example: `"Tables I'm seeing: users, orders, items. Missing any?"` Then for each table: `"<table>.<column>: should this be a uuid / text / int / timestamp / enum?"`. Confirm primary keys, foreign keys, indexes that are obvious (foreign-key columns).
38
392. **RLS model.** For each table: `"Can user A see user B's <table> rows? ① no, strict isolation ② yes, public-read ③ only shared via explicit grant."` Decide policy shape. In hackathon mode, prefer option ① and recommend `manage_rls action: create_user_isolation`.
40
413. **Auth.** `"OAuth providers: ① Google only ② Google + GitHub ③ email/password too ④ none (anonymous app)."` Also ask: `"Need a demo / judge account seeded? (hackathon mode only)"`.
42
434. **Functions.** For each function from the capability map: `"<name>: trigger = HTTP / cron / WebSocket? If cron: schedule? If HTTP: idempotency needed?"`.
44
455. **Storage.** If used: `"Which objects (avatars, attachments, …)? Public-read or per-user?"`.
46
476. **AI / RAG / realtime / durable.** Only if used. Capture model choice (AI), collections (RAG), tables to subscribe to (realtime), object kinds (durable).
48
496b. **Agents.** Only if `create_agent` is tagged in the idea. For each agent, capture:
50 - `name` (slug), one-line purpose.
51 - Tool surface: which builtins (`query_table`, `insert_row`, …), which functions (must exist in the Functions section), which MCP servers (URL + transport).
52 - Visibility: private | authenticated | public. If public AND any write tool is reachable, mark `safety_acknowledged_needed: true` and set per-IP / per-user / per-app rate limits + `daily_budget_usd`.
53 - Default model.
54 - Note that the agent record will **not** be carried by clone replay — the spec JSON (under `agents/<name>.json`) rides along in the repo snapshot, so this matters for the publish stage too.
55
567. **Frontend stack.** `"Frontend: ① Vite + React ② Next.js ③ static HTML ④ none (API-only)."` Write to `00-state.md` `frontend_stack`.
57
587b. **Publish-as-template.** Read `publish_as_template` from `00-state.md` front-matter (set by `journey-idea`). If `yes` or `unlisted`, plan for it now:
59 - README outline (one-liner, env-var-per-function list, OAuth setup, agent re-import, MCP server registration, seed data, first-run smoke).
60 - Which env vars use the auto-mint convention (`butterbase_api_key`) vs. require manual user input on clone.
61 - Whether `agents/*.json` files need to be exported and committed (yes if Agents section is non-empty).
62 - Note that publishing requires `butterbase repo push` to upload the source tree as a snapshot — without it, cloners get an empty file tree.
63
64### Toolchain question
65
66Ask: "Will your app's code use `@butterbase/sdk` only in the frontend, only server-side (functions, scripts), or both?" Record under Toolchain → SDK surfaces.
67
68Ask: "Want to install `@butterbase/cli` for the local dev loop (logs, scaffolding, key rotation)? (yes/no — default yes)" Record under Toolchain → CLI usage.
69
708. **Scope cut (hackathon mode).** Re-read the must-haves list. For each, ask: `"Ship now or post-hackathon?"` Write the cut list into `02-plan.md`'s "Post-hackathon" section.
71
729. **Annotate skipped stages.** For every build stage NOT used in this plan (check the capability map and feature list), update `00-state.md`'s checklist to read `- [ ] <stage> (n/a)` for that row. Also do this for `rls` if `hackathon_mode: true` (mark as `(folded into schema)`).
73
7410. **Final approval.** Show the user the assembled plan and ask: `"Plan looks good? (yes / revise <section>)"`. Loop until yes.
75
76## `02-plan.md` format
77
78```markdown
79# Plan
80
81## Tables
82- `users` (id uuid pk, email text unique, created_at timestamp)
83- `orders` (id uuid pk, user_id uuid fk→users.id, status enum[pending,paid,shipped], total int, created_at timestamp; index on user_id)
84- ...
85
86## RLS
87- `orders`: user-isolation (create_user_isolation, owner column = user_id)
88- ...
89
90## Auth
91- Providers: Google
92- Demo user: yes (email demo@example.com, password set via seed)
93
94## Functions
95- `stripe-webhook` — HTTP, idempotency table `_processed_events`
96- `daily-digest` — cron 0 9 * * * UTC
97
98## Storage
99- bucket: `avatars` (per-user, private; download via presigned URL)
100
101## AI / RAG / realtime / durable
102- (none)
103
104## Agents
105- `order-summariser` — purpose: summarise a user's recent orders on demand.
106 - Tools: builtin `query_table`, function `format-currency`.
107 - Visibility: authenticated. Rate: 60/hr per user. Daily budget: $5.
108 - Default model: claude-haiku-4-5-20251001.
109 - Spec file: `agents/order-summariser.json` (committed to repo).
110- (omit section entirely if no agents)
111
112## Publish-as-template
113- Intent: yes / unlisted / no
114- README outline: <bullet list of sections>
115- Env vars cloners must supply: <list per function>
116- Auto-mint eligible keys: `butterbase_api_key` (etc.)
117- Agent specs to bundle: `agents/*.json`
118- Snapshot push: `butterbase repo push` at end of journey-templates.
119- (omit section entirely if publish_as_template = no)
120
121## Frontend
122- Vite + React
123
124## Toolchain
125
126- **SDK surfaces**: <client-side only | server-side only | both>
127 - Client-side: install `@butterbase/sdk` in the frontend; use `auth`, `db`, `storage`, `realtime`.
128 - Server-side: install `@butterbase/sdk` in functions / scripts; use the service-key flow for elevated access.
129- **CLI usage**: <yes / no>
130 - Yes (default): use `butterbase` CLI for local scaffolding, log tailing (`butterbase logs <fn>`), function invocation, and key rotation.
131- **Why both**: MCP tools provision and orchestrate; SDK + CLI are the runtime + dev loop.
132
133## Build order
1341. schema
1352. rls (folded into schema in hackathon mode)
1363. auth
1374. storage
1385. functions
1396. ai (if used)
1407. rag (if used)
1418. realtime (if used)
1429. durable (if used)
14310. agents (if used — must come after functions, ai, and any MCP-server setup)
14411. frontend
14512. deploy
14613. templates (optional — only if publish_as_template != no)
147
148## Post-hackathon
149- email notifications (deferred)
150- admin dashboard (deferred)
151```
152
153## Outputs
154
155- Writes `docs/butterbase/02-plan.md`.
156- Updates `00-state.md`: tick `- [x] plan`, set `frontend_stack`, set `current_stage: preflight`, annotate skipped build stages with `(n/a)`.
157
158## Anti-patterns
159
160- ❌ Asking the user to design every table column without recommending defaults first.
161- ❌ Skipping the scope-cut section in hackathon mode.
162- ❌ Writing the plan only at the end — write as you go so progress survives a crash.