@nbardy/oompa 0.5.1 → 0.7.0

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.
@@ -47,10 +47,17 @@ EOF
47
47
  - Claim one task, execute it end-to-end, complete it.
48
48
  - If work emerges during execution, create new tasks in `../tasks/pending/`.
49
49
 
50
+ ### Signals
51
+
52
+ Your session persists across iterations. Keep working until your task is complete.
53
+
54
+ - **`COMPLETE_AND_READY_FOR_MERGE`**: Output this on its own line when your current work is done and ready for review. Your changes will be reviewed and merged, then you start a fresh session.
55
+ - **`__DONE__`**: Output this only when ALL project work is truly complete and no more tasks can be derived from the spec. This stops your worker entirely.
56
+
50
57
  ### Rules
51
58
 
52
59
  - Before starting work: read the project spec and all tasks to understand scope.
53
60
  - Claim your task by moving it to `../tasks/current/`.
54
61
  - If the `mv` fails (another worker claimed it first), pick a different task.
55
62
  - One task per commit (or a small, tightly-related set with overlapping files).
56
- - Only output __DONE__ if you have completed work AND no more tasks can be derived from the spec. Never __DONE__ on your first action.
63
+ - Do NOT output `__DONE__` on your first action. Only use it when you've verified nothing remains.
@@ -10,7 +10,14 @@
10
10
  "model": "codex:gpt-5.3-codex:medium",
11
11
  "prompt": ["config/prompts/executor.md"],
12
12
  "iterations": 10,
13
- "count": 3,
13
+ "count": 2,
14
+ "can_plan": false
15
+ },
16
+ {
17
+ "model": "opencode:openai/gpt-5",
18
+ "prompt": ["config/prompts/executor.md"],
19
+ "iterations": 10,
20
+ "count": 1,
14
21
  "can_plan": false
15
22
  }
16
23
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nbardy/oompa",
3
- "version": "0.5.1",
4
- "description": "Git-worktree multi-agent swarm orchestrator for Codex and Claude",
3
+ "version": "0.7.0",
4
+ "description": "Git-worktree multi-agent swarm orchestrator for Codex, Claude, and Opencode",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
7
7
  "bin": {
@@ -30,6 +30,7 @@
30
30
  "worktree",
31
31
  "codex",
32
32
  "claude",
33
+ "opencode",
33
34
  "babashka"
34
35
  ],
35
36
  "repository": {