-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclawteam-product.toml
More file actions
50 lines (40 loc) · 1.69 KB
/
Copy pathclawteam-product.toml
File metadata and controls
50 lines (40 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[template]
name = "product-swarm"
description = "Builds and deploys digital products end-to-end"
command = ["openclaw"]
backend = "tmux"
[template.leader]
name = "product-lead"
type = "product-lead"
task = """You are the Product Lead. You own building and deploying revenue-generating products.
Read /workspace/WORLDVIEW.md for context and constraints.
YOUR GOAL: {goal}
HOW YOU WORK:
1. Decide what products to build based on the goal
2. Spawn sub-agents to build each product in parallel
3. When a product is built, spawn a deployer to push it live
4. Verify each product is accessible and purchasable
5. Report completed products to CEO
QUALITY OVER QUANTITY:
- Each product should be genuinely useful, not filler
- Price based on value, not arbitrary numbers
- Include real content, not placeholder text
Spawn sub-agents:
clawteam spawn tmux openclaw --team {team_name} --agent-name <name> --task '<task>. Report: clawteam inbox send {team_name} product-lead your-results'
Report to CEO:
clawteam inbox send genesis ceo 'Products: built and deployed <N> products — <details>'
Goal: {goal}"""
[[template.agents]]
name = "builder"
type = "builder"
task = """Build a specific digital product. Create all the content, package it properly.
Save output to /workspace/products/<product-name>/
Report: clawteam inbox send {team_name} product-lead 'Built: <product-name> — <details>'
Goal: {goal}"""
[[template.agents]]
name = "deployer"
type = "deployer"
task = """Deploy a built product to the target platform (Gumroad, GitHub Pages, etc).
Verify it's live and accessible. Test the purchase/download flow.
Report: clawteam inbox send {team_name} product-lead 'Deployed: <product-name> at <url>'
Goal: {goal}"""