opencode-goal-plugin 0.6.2 → 0.6.3

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.6.3 — 2026-07-11
6
+
7
+ - Clarify the textual completion protocol so models keep evidence and completion on consecutive plain-text lines instead of wrapping markers in Markdown or separating them with blank lines.
8
+
5
9
  ## 0.6.2 — 2026-07-11
6
10
 
7
11
  - Keep paused, blocked, and crash-recovered goals inert in model turns with a stopped-goal system guard, and enforce status/history/list/pause/clear control turns as read-only through the host's tool-execution hook so routed command text cannot mutate or resurrect work.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-goal-plugin",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Durable, guarded goal workflows for OpenCode.",
5
5
  "type": "module",
6
6
  "main": "./src/goal-plugin.js",
@@ -1756,11 +1756,16 @@ function buildContinueMessage(
1756
1756
  )
1757
1757
  } else {
1758
1758
  lines.push(
1759
- "Continue with the next concrete step; inspect current state and repair failures.",
1759
+ "Continue the next concrete step; inspect and repair failures.",
1760
1760
  )
1761
1761
  }
1762
1762
 
1763
- lines.push("Complete only after verification: `[goal:evidence] …` then `[goal:complete]`. If only user input can unblock work, state why then `[goal:blocked]`.")
1763
+ lines.push(
1764
+ "Completion format—consecutive plain lines; no Markdown/backticks/blank line:",
1765
+ "[goal:evidence] <proof>",
1766
+ "[goal:complete]",
1767
+ "Need user input? State why before [goal:blocked].",
1768
+ )
1764
1769
  const limitWarning = buildLimitWarning(goal)
1765
1770
  if (limitWarning) lines.push(limitWarning.trim())
1766
1771