@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/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*)