Signature features that turn breadth (174 skills) into a differentiated product: - Workflow recipes: 5 cross-profession chains (workflows.json) that pass each output forward — slash commands (/ship-a-feature etc.), WORKFLOWS.md generated by scripts/build-workflows.mjs, README + MCP (list_workflows/get_workflow) wired - Eval-backed quality: real per-skill scores from evals/results.json surfaced as badges in the playground and an honest README section (6 scored skills) - One-click MCP: 'claude mcp add' install + workflow tools, works in any MCP client - Playground: 'which skill?' recommender, with/without compare toggle, shareable ?skill= deep-links with prefilled inputs - Sample-output gallery: hand-written examples for the hero five + generator (scripts/build-samples.mjs) + web/examples.html - Skill-of-the-week: scheduled workflow + script that composes X/LinkedIn posts and posts to an optional webhook Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4.4 KiB
🧩 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
- ambiguity-resolver → produces a sharp problem statement and scoped boundaries.
- prd-template → produces a full PRD with goals, requirements, and success metrics.
- rice-prioritisation → produces a RICE score positioning this work against alternatives.
- roadmap-narrative → produces where this sits on the roadmap and the story around it.
- 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
- metrics-framework → produces the metric tree and what actually moved.
- churn-analysis → produces why customers left and what is avoidable.
- executive-update → produces a tight leadership briefing of the quarter.
- 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
- competitor-teardown → produces the competitive map and gaps to exploit.
- product-positioning-doc → produces positioning, value props, and messaging pillars.
- go-to-market → produces the GTM plan across audience and channels.
- product-launch-checklist → produces an owner-by-owner launch readiness checklist.
- 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
- cs-health-scorecard → produces a health score with the specific risk drivers.
- churn-analysis → produces the root cause and whether the risk is avoidable.
- cs-escalation-brief → produces an internal escalation brief for the save.
- 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
- ambiguity-resolver → produces a one-page problem brief from the fuzzy opportunity.
- discovery-interview-guide → produces a screener and discussion guide for user interviews.
- user-research-synthesis → produces themes and insights from the research.
- rice-prioritisation → produces a ranked, defensible list of what to do next.
Add your own: define it in workflows.json, add a matching commands/<id>.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.