# ๐Ÿงฉ Workflow Recipes > **Skills you can chain.** A recipe runs several skills in sequence and *passes each output forward as context* for the next โ€” so a fuzzy idea comes out the other end as a finished, joined-up set of artifacts. No other skills library chains across professions like this. Run one as a slash command in Claude Code (e.g. `/ship-a-feature a referral program for B2B users`), or fetch it over MCP with the `get_workflow` tool. There are **5 recipes** today: | Recipe | Command | Lifecycle | Chains | |--------|---------|-----------|--------| | **Ship a Feature** | `/ship-a-feature` | Discover โ†’ Decide โ†’ Build โ†’ Ship | 5 skills | | **Close the Quarter** | `/close-the-quarter` | Measure โ†’ Communicate | 4 skills | | **Launch a Product** | `/launch-a-product` | Decide โ†’ Ship | 5 skills | | **Rescue an Account** | `/rescue-an-account` | Measure โ†’ Communicate | 4 skills | | **Run Discovery** | `/run-discovery` | Discover โ†’ Decide | 4 skills | ## Ship a Feature โ€” `/ship-a-feature` *Discover โ†’ Decide โ†’ Build โ†’ Ship* ยท Take a raw feature idea from fuzzy brief all the way to a launch plan, end to end. `ambiguity-resolver` โ†’ `prd-template` โ†’ `rice-prioritisation` โ†’ `roadmap-narrative` โ†’ `go-to-market` 1. **ambiguity-resolver** โ†’ produces a sharp problem statement and scoped boundaries. 2. **prd-template** โ†’ produces a full PRD with goals, requirements, and success metrics. 3. **rice-prioritisation** โ†’ produces a RICE score positioning this work against alternatives. 4. **roadmap-narrative** โ†’ produces where this sits on the roadmap and the story around it. 5. **go-to-market** โ†’ produces a launch plan: audience, messaging, channels, and timeline. ## Close the Quarter โ€” `/close-the-quarter` *Measure โ†’ Communicate* ยท Turn the quarter's raw numbers into a leadership-ready story and board deck. `metrics-framework` โ†’ `churn-analysis` โ†’ `executive-update` โ†’ `board-deck-narrative` 1. **metrics-framework** โ†’ produces the metric tree and what actually moved. 2. **churn-analysis** โ†’ produces why customers left and what is avoidable. 3. **executive-update** โ†’ produces a tight leadership briefing of the quarter. 4. **board-deck-narrative** โ†’ produces a slide-by-slide board deck storyline. ## Launch a Product โ€” `/launch-a-product` *Decide โ†’ Ship* ยท Go from competitive landscape to positioning to a fully checklisted launch and press release. `competitor-teardown` โ†’ `product-positioning-doc` โ†’ `go-to-market` โ†’ `product-launch-checklist` โ†’ `press-release` 1. **competitor-teardown** โ†’ produces the competitive map and gaps to exploit. 2. **product-positioning-doc** โ†’ produces positioning, value props, and messaging pillars. 3. **go-to-market** โ†’ produces the GTM plan across audience and channels. 4. **product-launch-checklist** โ†’ produces an owner-by-owner launch readiness checklist. 5. **press-release** โ†’ produces the announcement press release. ## Rescue an Account โ€” `/rescue-an-account` *Measure โ†’ Communicate* ยท Diagnose an at-risk customer and build the full save play through to renewal. `cs-health-scorecard` โ†’ `churn-analysis` โ†’ `cs-escalation-brief` โ†’ `renewal-playbook` 1. **cs-health-scorecard** โ†’ produces a health score with the specific risk drivers. 2. **churn-analysis** โ†’ produces the root cause and whether the risk is avoidable. 3. **cs-escalation-brief** โ†’ produces an internal escalation brief for the save. 4. **renewal-playbook** โ†’ produces the renewal strategy and negotiation plan. ## Run Discovery โ€” `/run-discovery` *Discover โ†’ Decide* ยท From a vague opportunity to validated insight and a prioritised next step. `ambiguity-resolver` โ†’ `discovery-interview-guide` โ†’ `user-research-synthesis` โ†’ `rice-prioritisation` 1. **ambiguity-resolver** โ†’ produces a one-page problem brief from the fuzzy opportunity. 2. **discovery-interview-guide** โ†’ produces a screener and discussion guide for user interviews. 3. **user-research-synthesis** โ†’ produces themes and insights from the research. 4. **rice-prioritisation** โ†’ produces a ranked, defensible list of what to do next. --- **Add your own:** define it in [`workflows.json`](workflows.json), add a matching `commands/.md`, and run `node scripts/build-workflows.mjs`. Recipes are just composition โ€” every step is an existing skill you can already run on its own.