prjct-cli 3.41.0 → 3.44.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/CHANGELOG.md +17 -0
- package/dist/bin/prjct-core.mjs +588 -550
- package/dist/bin/prjct-hooks.mjs +314 -280
- package/dist/daemon/entry.mjs +497 -459
- package/dist/mcp/server.mjs +260 -241
- package/dist/templates.json +1 -1
- package/package.json +1 -1
- package/templates/skills/prjct/SKILL.md +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [3.44.0] - 2026-07-10
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- multi-agent realtime yield/switch handoff + auto-worktree isolation
|
|
9
|
+
- **`prjct switch <agent> [--reason] [--launch]`** — yield the live work cycle to another runtime (codex/claude/grok/…) with durable who/why in SQLite (`task_handoffs`)
|
|
10
|
+
- **`prjct accept [hand_id]`** / **`prjct handoffs`** — accept pending handoff, rebind ownership, resume brief
|
|
11
|
+
- Owner stamping on cycle start (`ownerAgent` / `ownerIdentity` / `ownerSessionId`) so handoffs know who started
|
|
12
|
+
- Auto-worktree isolation when `prjct work` collides with a foreign occupant on main (`multiAgent.autoWorktree`: auto|ask|off)
|
|
13
|
+
- Prompt + SessionStart cues for pending handoffs; desktop notify on yield/accept; optional CLI launch
|
|
14
|
+
- Loop-discipline skill triggers for stuck/switch and parallel worktree isolation
|
|
15
|
+
|
|
16
|
+
## [3.42.0] - 2026-07-10
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- adorable Codex-style cast names for multi-agent fan-out
|
|
20
|
+
- Adorable multi-agent cast names (Codex-style): orchestration assigns durable scientist/inventor codenames (Popper, Copernicus, McClintock…) to explore/implement/review or crew roles; shown on `prjct work` and used as default `claim` identity when `--as` / `PRJCT_AGENT` unset.
|
|
21
|
+
|
|
5
22
|
## [3.41.0] - 2026-07-10
|
|
6
23
|
|
|
7
24
|
### Added
|