@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.
- package/README.md +26 -16
- package/agentnet/src/agentnet/agent.clj +24 -1
- package/agentnet/src/agentnet/cli.clj +165 -38
- package/agentnet/src/agentnet/orchestrator.clj +1 -1
- package/agentnet/src/agentnet/runs.clj +165 -0
- package/agentnet/src/agentnet/schema.clj +4 -4
- package/agentnet/src/agentnet/tasks.clj +1 -0
- package/agentnet/src/agentnet/worker.clj +578 -299
- package/config/prompts/_task_header.md +8 -1
- package/oompa.example.json +8 -1
- package/package.json +3 -2
|
@@ -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
|
-
-
|
|
63
|
+
- Do NOT output `__DONE__` on your first action. Only use it when you've verified nothing remains.
|
package/oompa.example.json
CHANGED
|
@@ -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":
|
|
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.
|
|
4
|
-
"description": "Git-worktree multi-agent swarm orchestrator for Codex and
|
|
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": {
|