@nbardy/oompa 0.1.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 +197 -0
- package/agentnet/src/agentnet/agent.clj +293 -0
- package/agentnet/src/agentnet/cli.clj +436 -0
- package/agentnet/src/agentnet/core.clj +211 -0
- package/agentnet/src/agentnet/merge.clj +355 -0
- package/agentnet/src/agentnet/notes.clj +123 -0
- package/agentnet/src/agentnet/orchestrator.clj +367 -0
- package/agentnet/src/agentnet/review.clj +263 -0
- package/agentnet/src/agentnet/schema.clj +141 -0
- package/agentnet/src/agentnet/tasks.clj +198 -0
- package/agentnet/src/agentnet/worker.clj +427 -0
- package/agentnet/src/agentnet/worktree.clj +342 -0
- package/bin/oompa.js +37 -0
- package/config/prompts/cto.md +45 -0
- package/config/prompts/engineer.md +44 -0
- package/config/prompts/executor.md +32 -0
- package/config/prompts/planner.md +35 -0
- package/config/prompts/reviewer.md +49 -0
- package/config/prompts/worker.md +31 -0
- package/oompa.example.json +18 -0
- package/package.json +45 -0
- package/swarm.bb +18 -0
package/swarm.bb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env bb
|
|
2
|
+
|
|
3
|
+
;; AgentNet Swarm Orchestrator
|
|
4
|
+
;;
|
|
5
|
+
;; New modular entry point using worktree-based isolation.
|
|
6
|
+
;;
|
|
7
|
+
;; Usage:
|
|
8
|
+
;; ./swarm.bb run # Run all tasks once
|
|
9
|
+
;; ./swarm.bb run --workers 4 # With 4 parallel workers
|
|
10
|
+
;; ./swarm.bb run --claude # Use Claude instead of Codex
|
|
11
|
+
;; ./swarm.bb loop 20 # Run 20 iterations
|
|
12
|
+
;; ./swarm.bb check # Check agent backends
|
|
13
|
+
;;
|
|
14
|
+
;; See ./swarm.bb help for full usage.
|
|
15
|
+
|
|
16
|
+
(require '[agentnet.cli :as cli])
|
|
17
|
+
|
|
18
|
+
(apply cli/-main *command-line-args*)
|