Skip to content

Latest commit

 

History

History
214 lines (153 loc) · 4.34 KB

File metadata and controls

214 lines (153 loc) · 4.34 KB

Bundled recipes

ClawRecipes ships with bundled recipes in:

recipes/default/

Looking for bundled workflow examples (not team recipes)? See WORKFLOW_EXAMPLES_BUNDLED.md and the examples/workflows/ directory for four ready-to-run workflow definitions with matching cron-install scripts.

You can browse them with:

openclaw recipes list
openclaw recipes show development-team

This doc is the human-friendly guide to what each bundled recipe is for.


Quick picks

If you just want a recommendation:

  • want a coding team? → development-team
  • want a marketing org? → marketing-team
  • want a social distribution team? → social-team
  • want a research pipeline? → research-team
  • want a writing pipeline? → writing-team
  • want a single coding agent? → developer
  • want a single planning agent? → project-manager

Single-agent recipes

project-manager

Use when you want a lightweight planning/coordination agent.

openclaw recipes scaffold project-manager --agent-id pm --apply-config

researcher

Use when you want a single research-focused agent.

openclaw recipes scaffold researcher --agent-id researcher --apply-config

editor

Use when you want a single editing agent.

openclaw recipes scaffold editor --agent-id editor --apply-config

developer

Use when you want a single developer agent with runtime tooling.

openclaw recipes scaffold developer --agent-id dev --apply-config

Team recipes

development-team

Use when you want a small engineering team with file-first tickets and clear role separation.

Typical scaffold:

openclaw recipes scaffold-team development-team --team-id development-team --apply-config

Typical roles:

  • lead
  • dev
  • devops
  • test n

marketing-team

Use when you want a broad marketing org.

Typical roles include:

  • lead
  • seo
  • copywriter
  • ads
  • social
  • designer
  • analyst
  • video
  • compliance

Scaffold:

openclaw recipes scaffold-team marketing-team --team-id marketing-team --apply-config

social-team

Use when you want social execution and platform-specific distribution.

Scaffold:

openclaw recipes scaffold-team social-team --team-id social-team --apply-config

research-team

Use when you want a citations-first research workflow.

openclaw recipes scaffold-team research-team --team-id research-team --apply-config

writing-team

Use when you want a writing pipeline from brief to edited draft.

openclaw recipes scaffold-team writing-team --team-id writing-team --apply-config

customer-support-team

Use when you want triage → resolution → KB workflow.

openclaw recipes scaffold-team customer-support-team --team-id customer-support-team --apply-config

product-team

Use when you want a product planning and delivery loop.

openclaw recipes scaffold-team product-team --team-id product-team --apply-config

Vertical / specialty team packs

ClawRecipes also ships specialty teams for specific business domains.

Examples may include:

  • clinic / healthcare-oriented teams
  • law-firm teams
  • construction teams
  • financial-planner teams
  • trader teams

To browse what is currently bundled:

openclaw recipes list

Then inspect the exact one you want:

openclaw recipes show clinic-team
openclaw recipes show law-firm-team

Workflow-related bundled recipes

workflow-runner-addon

Use when you already have a team and want to add workflow-runner capability into it.

Example:

openclaw recipes add-role \
  --team-id development-team \
  --role workflow-runner \
  --recipe workflow-runner-addon \
  --apply-config

swarm-orchestrator

Use when you want an orchestrator-style team helper / coordination workspace.

Inspect it first:

openclaw recipes show swarm-orchestrator

More:


Best way to choose a recipe

  1. list recipes
  2. inspect the one you think you want
  3. scaffold into a test team id
  4. look at the generated files before going wider

Example:

openclaw recipes list
openclaw recipes show development-team
openclaw recipes scaffold-team development-team --team-id dev-sandbox-team --apply-config