zwarm 3.10.1__py3-none-any.whl → 3.10.2__py3-none-any.whl
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.
zwarm/prompts/pilot.py
CHANGED
|
@@ -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,
|
|
48
|
-
- `
|
|
49
|
-
|
|
50
|
-
|
|
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
|
|
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
|
|
@@ -19,7 +19,7 @@ zwarm/core/test_config.py,sha256=bXXd3OHhK-ndC7wAxePWIdpu73s4O1eScxi3xDzrZwA,482
|
|
|
19
19
|
zwarm/core/test_models.py,sha256=sWTIhMZvuLP5AooGR6y8OR2EyWydqVfhmGrE7NPBBnk,8450
|
|
20
20
|
zwarm/prompts/__init__.py,sha256=DI307o712F8qQyDt5vwnFgpVBrxpKwjhr0MaBHLzr9E,334
|
|
21
21
|
zwarm/prompts/orchestrator.py,sha256=rfxpVCNAlTdQN8h0hgtU1OOr_9Io62ULZFisBjNUZVs,15076
|
|
22
|
-
zwarm/prompts/pilot.py,sha256=
|
|
22
|
+
zwarm/prompts/pilot.py,sha256=LHo9JwOmCXcPvxXBqztYFVBt6djUhenTIW-QjppQ1vg,6041
|
|
23
23
|
zwarm/sessions/__init__.py,sha256=5fPkl6JRS_GwPn9hi5iv3dzIpGWu_yghPtvPZdujhnM,1728
|
|
24
24
|
zwarm/sessions/base.py,sha256=3YBd-WWKslQvsBtu03Blth8cEGc_4k4H3GOoKJoTcgg,16976
|
|
25
25
|
zwarm/sessions/claude.py,sha256=hBP_TpNFJjR29IRGJFB3rlG7Z9uWEYSbBGV61tpIr00,16672
|
|
@@ -33,7 +33,7 @@ zwarm/watchers/llm_watcher.py,sha256=yJGpE3BGKNZX3qgPsiNtJ5d3UJpiTT1V-A-Rh4AiMYM
|
|
|
33
33
|
zwarm/watchers/manager.py,sha256=XZjBVeHjgCUlkTUeHqdvBvHoBC862U1ik0fG6nlRGog,5587
|
|
34
34
|
zwarm/watchers/registry.py,sha256=A9iBIVIFNtO7KPX0kLpUaP8dAK7ozqWLA44ocJGnOw4,1219
|
|
35
35
|
zwarm/watchers/test_watchers.py,sha256=zOsxumBqKfR5ZVGxrNlxz6KcWjkcdp0QhW9WB0_20zM,7855
|
|
36
|
-
zwarm-3.10.
|
|
37
|
-
zwarm-3.10.
|
|
38
|
-
zwarm-3.10.
|
|
39
|
-
zwarm-3.10.
|
|
36
|
+
zwarm-3.10.2.dist-info/METADATA,sha256=GPtjlVc851Hj_7-81_svlrLhdMz0ZpHptPrMjFnkrrs,11422
|
|
37
|
+
zwarm-3.10.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
38
|
+
zwarm-3.10.2.dist-info/entry_points.txt,sha256=u0OXq4q8d3yJ3EkUXwZfkS-Y8Lcy0F8cWrcQfoRxM6Q,46
|
|
39
|
+
zwarm-3.10.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|