@clawcipes/recipes 0.1.8 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcipes/recipes",
3
- "version": "0.1.8",
3
+ "version": "0.2.1",
4
4
  "description": "Clawcipes recipes plugin for OpenClaw (markdown recipes -> scaffold agents/teams)",
5
5
  "main": "index.ts",
6
6
  "type": "commonjs",
@@ -12,7 +12,7 @@ agents:
12
12
  name: Support Lead
13
13
  tools:
14
14
  profile: "coding"
15
- allow: ["group:fs", "group:web"]
15
+ allow: ["group:fs", "group:web", "group:runtime"]
16
16
  deny: ["exec"]
17
17
  - role: triage
18
18
  name: Support Triage
@@ -2,7 +2,7 @@
2
2
  id: development-team
3
3
  name: Development Team
4
4
  version: 0.2.0
5
- description: A small engineering team with a shared workspace (lead, dev, devops) using file-first tickets.
5
+ description: A small engineering team with a shared workspace (lead, dev, devops, test) using file-first tickets.
6
6
  kind: team
7
7
  requiredSkills: []
8
8
  team:
@@ -18,7 +18,7 @@ agents:
18
18
  name: Software Engineer
19
19
  tools:
20
20
  profile: "coding"
21
- allow: ["group:fs", "group:web", "group:runtime"]
21
+ allow: ["group:fs", "group:web", "group:runtime", "group:automation"]
22
22
  deny: []
23
23
  - role: devops
24
24
  name: DevOps / SRE
@@ -26,6 +26,12 @@ agents:
26
26
  profile: "coding"
27
27
  allow: ["group:fs", "group:web", "group:runtime", "group:automation"]
28
28
  deny: []
29
+ - role: test
30
+ name: QA / Tester
31
+ tools:
32
+ profile: "coding"
33
+ allow: ["group:fs", "group:web", "group:runtime"]
34
+ deny: []
29
35
 
30
36
  templates:
31
37
  lead.soul: |
@@ -53,6 +59,7 @@ templates:
53
59
  - `inbox/` — raw incoming requests (append-only)
54
60
  - `work/backlog/` — normalized tickets, filename-ordered (`0001-...md`)
55
61
  - `work/in-progress/` — tickets currently being executed
62
+ - `work/testing/` — tickets awaiting QA verification
56
63
  - `work/done/` — completed tickets + completion notes
57
64
  - `notes/plan.md` — current plan / priorities
58
65
  - `notes/status.md` — current status snapshot
@@ -72,6 +79,8 @@ templates:
72
79
  ### Your responsibilities
73
80
  - For every new request in `inbox/`, create a normalized ticket in `work/backlog/`.
74
81
  - Update `notes/plan.md` and `notes/status.md`.
82
+ - When work is ready for QA, move the ticket to `work/testing/` and assign it to the tester.
83
+ - Only after QA verification, move the ticket to `work/done/` (or use `openclaw recipes complete`).
75
84
  - When a completion appears in `work/done/`, write a short summary into `outbox/`.
76
85
 
77
86
  dev.soul: |
@@ -175,6 +184,51 @@ templates:
175
184
 
176
185
  - (empty)
177
186
 
187
+ test.soul: |
188
+ # SOUL.md
189
+
190
+ You are QA / Testing on {{teamId}}.
191
+
192
+ Core job:
193
+ - Verify completed work before it is marked done.
194
+ - Run tests, try edge-cases, and confirm acceptance criteria.
195
+ - If issues found: write a clear bug note and send the ticket back to in-progress.
196
+
197
+ test.agents: |
198
+ # AGENTS.md
199
+
200
+ Shared workspace: {{teamDir}}
201
+
202
+ ## How you work
203
+
204
+ 1) Look in `work/testing/` for tickets assigned to you.
205
+
206
+ 2) For each ticket:
207
+ - Follow the ticket's "How to test" steps (if present)
208
+ - Validate acceptance criteria
209
+ - Write a short verification note (or failures) into the ticket itself or a sibling note.
210
+
211
+ 3) If it passes:
212
+ - Move the ticket to `work/done/` (or ask the lead to do it).
213
+
214
+ 4) If it fails:
215
+ - Move the ticket back to `work/in-progress/` and assign to the right owner.
216
+
217
+ test.tools: |
218
+ # TOOLS.md
219
+
220
+ # Agent-local notes for test (paths, conventions, env quirks).
221
+
222
+ test.status: |
223
+ # STATUS.md
224
+
225
+ - (empty)
226
+
227
+ test.notes: |
228
+ # NOTES.md
229
+
230
+ - (empty)
231
+
178
232
  files:
179
233
  - path: SOUL.md
180
234
  template: soul
@@ -198,9 +252,9 @@ tools:
198
252
  ---
199
253
  # Development Team Recipe
200
254
 
201
- Scaffolds a shared team workspace and three namespaced agents (lead/dev/devops).
255
+ Scaffolds a shared team workspace and four namespaced agents (lead/dev/devops/test).
202
256
 
203
257
  ## What you get
204
- - Shared workspace at `teams/development-team/`
205
- - File-first tickets: backlog → in-progress → done
206
- - Team lead acts as dispatcher
258
+ - Shared workspace at `~/.openclaw/workspace-development-team/`
259
+ - File-first tickets: backlog → in-progress → testing → done
260
+ - Team lead acts as dispatcher; tester verifies before done
@@ -12,7 +12,7 @@ agents:
12
12
  name: Product Lead
13
13
  tools:
14
14
  profile: "coding"
15
- allow: ["group:fs", "group:web"]
15
+ allow: ["group:fs", "group:web", "group:runtime"]
16
16
  deny: ["exec"]
17
17
  - role: pm
18
18
  name: Product Manager
@@ -12,7 +12,7 @@ agents:
12
12
  name: Research Lead
13
13
  tools:
14
14
  profile: "coding"
15
- allow: ["group:fs", "group:web"]
15
+ allow: ["group:fs", "group:web", "group:runtime"]
16
16
  deny: ["exec"]
17
17
  - role: researcher
18
18
  name: Researcher
@@ -10,6 +10,10 @@ team:
10
10
  agents:
11
11
  - role: lead
12
12
  name: Social Team Lead
13
+ tools:
14
+ profile: "coding"
15
+ allow: ["group:fs", "group:web", "group:runtime"]
16
+ deny: ["exec"]
13
17
  - role: research
14
18
  name: Social Trend Researcher
15
19
  - role: writer
@@ -12,7 +12,7 @@ agents:
12
12
  name: Writing Lead
13
13
  tools:
14
14
  profile: "coding"
15
- allow: ["group:fs", "group:web"]
15
+ allow: ["group:fs", "group:web", "group:runtime"]
16
16
  deny: ["exec"]
17
17
  - role: outliner
18
18
  name: Outliner