Install
npm i @opengsd/gsd-core@1.4.2
# or
npm i @opengsd/gsd-core@latestWhat's Changed
A small patch on top of v1.4.1, fixing two orchestration/runtime bugs on Claude Code.
Fixed
/gsd-plan-phase,/gsd-execute-phase, and/gsd-autonomousno longer fail to spawn their sub-agents on Claude Code. These orchestrators carriedcontext: fork, which runs them in a forked context that has noAgenttool — so they couldn't spawn the researcher/planner/checker/executor agents they depend on (manifesting as a top-level/gsd-plan-phaseaborting at planner spawn on a false-negative Agent-availability check).context: forkis removed from the three spawning orchestrators (theireffort:budget hint is preserved), and the plan-phase Agent-availability guard is now attempt-based — it tries the spawn and only falls back if the tool is genuinely absent, rather than guessing. (#921, #922 — PR #926)- The context monitor now echoes the invoking hook event name. It hardcoded
hookEventName: "PostToolUse"even when invoked by theStop/SubagentStop/PreCompacthooks, so Claude Code rejected its output with "expected Stop but got PostToolUse." It now reports the actual triggering event. (#925 — PR #927)
Full Changelog: v1.4.1...v1.4.2