chore: version packages#126
Merged
Merged
Conversation
e7942ef to
7367f0c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@glrs-dev/harness-opencode@0.16.1
Patch Changes
#127
afe4f8eThanks @iceglober! - Fix PRIME dispatching topilot-planner(or falling back togeneral) instead of@planduring normal sessions. The@planagent was registered asmode: "primary"— which meant it wasn't visible to other agents'task-tool subagent picker — so when PRIME reached Phase 2 and tried to "delegate to @plan via the task tool", the only planner-shaped subagent it could see waspilot-planner(whose description also led with "Interactive planner…"). Switch@plantomode: "all"— which per OpenCode's agent docs means the agent is both a primary (Tab-cycleable, top-level@planinvocation works) AND a subagent (visible to other agents' task-tool picker). No user-visible regression. Also rewritepilot-planner's description to remove the "Interactive planner" prefix collision. Two regression tests lock the fix.#125
f4c6905Thanks @iceglober! - Makepilot buildfailures diagnosable from the terminal alone: failure phase and reason now print inline beneath eachtask.failedline, the run summary includes a per-failed-task detail block with session id and preserved worktree path, and the blocked-cascade is de-noised to one summary line instead of one scary line per blocked task.Also fixes two supporting bugs: a preserved-on-failure worktree slot no longer poisons every subsequent task in the run, and
pilot status --run <id>/pilot logs --run <id>now resolve the state DB from any worktree (or any repo under the same pilot base), so you can investigate a failed run from wherever you happen to be checked out.#127
afe4f8eThanks @iceglober! - PRIME now delegates Phase 3 (plan execution) to@buildvia the task tool instead of executing file edits itself. This moves the highest-volume token-consumer in the five-phase workflow off thedeep/Opus tier and onto themidtier — users can swap Sonnet for Kimi K2, GLM-4.6, Haiku, or any other cheap mid-tier model and see a significant cost reduction on substantial work.@buildnow usesmode: "all"(same pattern as@plan): top-level@build <plan-path>invocation still works for users who want to execute a plan directly, AND the agent is visible to PRIME's task-tool picker for delegation.@build's prompt is reshaped for the dual invocation: sections trimmed to avoid duplicating PRIME's Phase 4 QA delegation (full-suite test runs + qa-reviewer dispatch moved to PRIME), a structured "Return payload" section added for PRIME-relayed summaries, and thequestiontool is scoped to top-level invocations only (subagent-mode invocations STOP with a blocker payload that PRIME relays). Three regression tests lock the behavioral changes.