zwarm 3.10.1__tar.gz → 3.10.2__tar.gz

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.
Files changed (39) hide show
  1. {zwarm-3.10.1 → zwarm-3.10.2}/PKG-INFO +1 -1
  2. {zwarm-3.10.1 → zwarm-3.10.2}/pyproject.toml +1 -1
  3. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/prompts/pilot.py +16 -8
  4. {zwarm-3.10.1 → zwarm-3.10.2}/.gitignore +0 -0
  5. {zwarm-3.10.1 → zwarm-3.10.2}/README.md +0 -0
  6. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/__init__.py +0 -0
  7. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/cli/__init__.py +0 -0
  8. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/cli/interactive.py +0 -0
  9. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/cli/main.py +0 -0
  10. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/cli/pilot.py +0 -0
  11. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/__init__.py +0 -0
  12. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/checkpoints.py +0 -0
  13. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/compact.py +0 -0
  14. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/config.py +0 -0
  15. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/costs.py +0 -0
  16. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/environment.py +0 -0
  17. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/models.py +0 -0
  18. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/registry.py +0 -0
  19. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/state.py +0 -0
  20. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/test_compact.py +0 -0
  21. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/test_config.py +0 -0
  22. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/core/test_models.py +0 -0
  23. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/orchestrator.py +0 -0
  24. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/prompts/__init__.py +0 -0
  25. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/prompts/orchestrator.py +0 -0
  26. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/sessions/__init__.py +0 -0
  27. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/sessions/base.py +0 -0
  28. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/sessions/claude.py +0 -0
  29. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/sessions/manager.py +0 -0
  30. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/test_orchestrator_watchers.py +0 -0
  31. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/tools/__init__.py +0 -0
  32. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/tools/delegation.py +0 -0
  33. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/__init__.py +0 -0
  34. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/base.py +0 -0
  35. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/builtin.py +0 -0
  36. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/llm_watcher.py +0 -0
  37. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/manager.py +0 -0
  38. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/registry.py +0 -0
  39. {zwarm-3.10.1 → zwarm-3.10.2}/src/zwarm/watchers/test_watchers.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zwarm
3
- Version: 3.10.1
3
+ Version: 3.10.2
4
4
  Summary: Multi-Agent CLI Orchestration Research Platform
5
5
  Requires-Python: <3.14,>=3.13
6
6
  Requires-Dist: prompt-toolkit>=3.0.52
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "zwarm"
3
- version = "3.10.1"
3
+ version = "3.10.2"
4
4
  description = "Multi-Agent CLI Orchestration Research Platform"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13,<3.14"
@@ -44,10 +44,13 @@ You command executor agents - capable coding agents that do specific tasks. Thin
44
44
 
45
45
  # Your Tools
46
46
 
47
- **delegate(task, adapter="codex", model=None, working_dir=None)** - Dispatch a crew member. Returns immediately with session_id.
48
- - `adapter`: "codex" (fast, great for code) or "claude" (powerful reasoning)
49
- - `model`: Override model (default: gpt-5.1-codex-mini for codex, sonnet for claude)
50
- - Use codex for most tasks - it's fast. Use claude for complex reasoning.
47
+ **delegate(task, model=None, working_dir=None)** - Dispatch a crew member. Returns immediately with session_id.
48
+ - `model`: Just use the model name - adapter is auto-detected:
49
+ - `"5.2"` or `"gpt-5.2-codex"` - GPT-5.2 Codex (default, fast, great for code)
50
+ - `"5.2-think"` - GPT-5.2 with extended reasoning
51
+ - `"opus"` - Claude Opus (most capable, complex reasoning)
52
+ - `"sonnet"` - Claude Sonnet (balanced)
53
+ - Use codex models for most tasks - they're fast. Use opus for complex reasoning.
51
54
 
52
55
  **converse(session_id, message)** - Send follow-up to a crew member. Returns immediately.
53
56
 
@@ -55,11 +58,16 @@ You command executor agents - capable coding agents that do specific tasks. Thin
55
58
 
56
59
  **check_session(session_id)** - Get FULL result. Complete response, tokens, runtime.
57
60
 
58
- **get_trajectory(session_id, full=False)** - See what steps the agent took (for debugging).
61
+ **get_trajectory(session_id, full=False)** - See what steps the agent took.
62
+ - `full=True`: Show complete untruncated content for all steps (debugging)
63
+ - `full=False`: Concise summaries (default)
59
64
 
60
- **list_sessions()** - See all crew. `needs_attention=True` means ready for review.
65
+ **list_sessions(status=None)** - See all crew. `needs_attention=True` means ready for review.
66
+ - `status`: Filter by "running", "completed", "failed", or None for all
61
67
 
62
- **end_session(session_id)** - Dismiss a crew member.
68
+ **end_session(session_id, reason=None, delete=False)** - Dismiss a crew member.
69
+ - `reason`: Optional note about why
70
+ - `delete=True`: Permanently remove from list (otherwise just kills if running)
63
71
 
64
72
  **sleep(seconds)** - Wait before checking. Give crew time to work (15-60s typical).
65
73
 
@@ -68,7 +76,7 @@ You command executor agents - capable coding agents that do specific tasks. Thin
68
76
  # Workflow
69
77
 
70
78
  ```
71
- 1. delegate(task) → session_id
79
+ 1. delegate(task, model="5.2") → session_id # or model="opus" for complex tasks
72
80
  2. sleep(30)
73
81
  3. peek_session(id) → done?
74
82
  4. If running, goto 2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes