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.
npx skills add https://github.com/butterbase-ai/butterbase-skills --skill journey-idea
Stage 1 of the guided journey. Turn a vague idea into a written brief with capability tags.
journey when current_stage: idea./butterbase-skills:idea.None required. Optionally reads any existing 01-idea.md to resume.
Follow the cross-cutting rules from the spec:
→ manage_schema, → deploy_function, → manage_storage, → manage_oauth, → manage_rag_content, → manage_realtime, → manage_durable_objects, → manage_ai, → create_agent).01-idea.md so progress survives a crash.Walk through these questions in order. Do not skip — but adapt the wording.
"In one sentence, what is the painful thing your user does today that this replaces?""Who is the first user? ① solo creator ② small team ③ end customers of a business ④ Other""What is the first action they take in the app?""If we could ship only ONE screen, which one?""Do two different users see different data when they log in? (yes → user-scoped data → manage_rls; no → shared → simpler)""Are there files/images involved? (yes → manage_storage; no → skip)""Does anything happen on a schedule or in response to an external event? (yes → deploy_function cron/webhook; no → skip)""Is there a knowledge base / search-over-documents feature? (yes → manage_rag_content; no → skip)""Does the UI need live updates or presence? (yes → manage_realtime; no → skip)"10. "Any chat rooms / multiplayer / per-user-actor state? (yes → manage_durable_objects; no → skip)"
11. "Any LLM features (chat, embeddings, summarisation)? (yes → manage_ai; no → skip)"
12. "Any multi-step LLM+tool workflows the user triggers (e.g. 'summarise my orders', 'auto-tag a doc', 'research and reply')? (yes → create_agent; no → skip)". If yes, also ask: "Will the agent need external MCP servers (e.g. GitHub, Slack, custom MCP)?" and "Visibility: ① only the developer ② any logged-in user ③ unauthenticated public — note: public + write tools requires explicit safety acknowledgement."
13. "Are you planning to publish this app as a public template others can clone? (yes / unlisted-public / no)". Set publish_as_template: <yes|unlisted|no> in 00-state.md front-matter. Public templates require a README with clone instructions and butterbase repo push to sync the source tree — flag this so plan and the publish stage know to plan for it.
If hackathon_mode: true in 00-state.md: after question 4, also ask:
"Hackathon deadline (ISO date/time)?" — write to 00-state.md front-matter."Can this ship in time, or move to a 'post-hackathon' section?"01-idea.md format# Idea
**One-liner:** <user's answer to Q1>
**First user:** <Q2>
**First action:** <Q3>
**One screen:** <Q4>
## Must-haves
- <feature> → <capability tag>
- ...
## Post-hackathon (nice-to-have)
- ...
## Capability map
| Capability | Used? | Why |
|---|---|---|
| manage_schema | yes | core data model |
| manage_rls | yes | user-scoped data |
| manage_oauth | yes | Google sign-in |
| manage_storage | no | no files |
| deploy_function | yes | daily-digest cron |
| manage_ai | no | |
| manage_rag_content | no | |
| manage_realtime | no | |
| manage_durable_objects | no | |
| create_agent | no | |
| publish_as_template | no | set true if user plans to share this app publicly |
At the end of the idea write-up, also note in one line that the build will use:
@butterbase/sdk for any frontend / Node app code@butterbase/cli for the local dev loop (scaffolding, logs, key generation)This sets expectations before plan makes specific package choices.
docs/butterbase/01-idea.md.- [x] idea and bumps current_stage: plan, last_updated in 00-state.md.01-idea.md to disk.Workflow automation is the infrastructure that makes AI agents reliable. Without durable execution, a network hiccup during a 10-step payment flow means lost money and angry customers. With it, workflows resume exactly where they left off. This skill covers the platforms (n8n, Temporal, Inngest) and patterns (sequential, parallel, orchestrator-worker) that turn brittle scripts into production-grade automation. Key insight: The platforms make different tradeoffs. n8n optimizes for accessibility
Automate Cloudinary media management including folder organization, upload presets, asset lookup, transformations, and usage monitoring through natural language commands
You are a workflow automation expert specializing in creating efficient CI/CD pipelines, GitHub Actions workflows, and automated development processes. Design automation that reduces manual work, improves consistency, and accelerates delivery while maintaining quality and security.
Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.
Create a formal specification for an existing GitHub Actions CI/CD workflow, optimized for AI consumption and workflow maintenance.
Build and operate reproducible genomics workloads on DNAnexus with the dx CLI, dxpy, apps/applets, native workflows, dxCompiler, and Nextflow. Use for DNAnexus data transfers, dxapp.json development, execution monitoring, workflow import, and project automation.
Search across company knowledge bases (Confluence, Jira, internal docs) to find and explain internal concepts, processes, and technical details. When an agent needs to: (1) Find or search for information about systems, terminology, processes, deployment, authentication, infrastructure, architecture, or technical concepts, (2) Search internal documentation, knowledge base, company docs, or our docs, (3) Explain what something is, how it works, or look up information, or (4) Synthesize information from multiple sources. Searches in parallel and provides cited answers.
Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.
Take butterbase-ai/journey-idea from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.