@boyingliu01/opencode-plugin 0.14.5 → 0.14.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boyingliu01/opencode-plugin",
3
- "version": "0.14.5",
3
+ "version": "0.14.6",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "description": "XP-Gate quality gates + AI workflow skills + Sprint Flow TUI sidebar for OpenCode",
@@ -1,9 +1,9 @@
1
1
  # SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-07-09
4
- **Commit:** b1d2c76
5
- **Branch:** sprint/2026-07-09-02
6
- **Version:** 0.14.5.0
4
+ **Commit:** df2023f
5
+ **Branch:** main
6
+ **Version:** 0.14.6.0
7
7
 
8
8
  ## OVERVIEW
9
9
  Delphi Consensus Review — multi-round anonymous expert review (≥90% threshold, 3 experts from ≥2 providers, domestic models only). Supports design + code-walkthrough modes.
@@ -1,9 +1,9 @@
1
1
  # SKILLS/SPRINT-FLOW KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-07-09
4
- **Commit:** b1d2c76
5
- **Branch:** sprint/2026-07-09-02
6
- **Version:** 0.14.5.0
4
+ **Commit:** df2023f
5
+ **Branch:** main
6
+ **Version:** 0.14.6.0
7
7
 
8
8
  ## OVERVIEW
9
9
  **6-phase** development pipeline (v2.0 compact redesign, Issue #290): PREP → DESIGN → BUILD → VERIFY → SHIP → CLOSE. Phase 3/6 BUILD default build mode is **ralph-loop** (REQ-level iteration, 40-67% token savings vs parallel). HARD-GATE between DESIGN (2/6) and BUILD (3/6): design must pass Delphi review (≥90% consensus) before any coding.
@@ -200,6 +200,9 @@ Every phase MUST output its header as the first line of that phase's output. For
200
200
  4. On `/sprint-flow` trigger, first line MUST output: `Sprint Flow: PREP → DESIGN → BUILD → VERIFY → SHIP → CLOSE`
201
201
  5. Each phase completion MUST write Phase Summary to `.sprint-state/phase-outputs/phase-{N}-summary.md`
202
202
  6. Each phase completion MUST update `.sprint-state/sprint-state.json`
203
+
204
+ ### Required Rendering (MANDATORY per phase)
205
+
203
206
  7. Each phase completion MUST render the ASCII progress dashboard using `templates/sprint-progress-template.md` — the orchestrator reads `sprint-state.json` and outputs the dashboard after every phase's status block, so the user always sees current global progress without needing to ask
204
207
 
205
208
  ### Phase Output Status Schema (MANDATORY per phase)
@@ -29,10 +29,12 @@ function contentIncludes(str) {
29
29
  return skillContent.includes(str) || phaseOverviewContent.includes(str);
30
30
  }
31
31
  function contentSplit(str) {
32
- // Return the part after str from whichever file contains it
32
+ // Return the part after str from whichever file contains it.
33
+ // Throws descriptive error instead of returning undefined so callers
34
+ // get a clear assertion message rather than a TypeError crash.
33
35
  if (skillContent.includes(str)) return skillContent.split(str)[1];
34
36
  if (phaseOverviewContent.includes(str)) return phaseOverviewContent.split(str)[1];
35
- return undefined;
37
+ throw new Error(`Section "${str}" not found in SKILL.md or references/phase-overview.md`);
36
38
  }
37
39
 
38
40
  function parseFrontmatter(content) {
@@ -1,9 +1,9 @@
1
1
  # SKILLS/TEST-SPECIFICATION-ALIGNMENT KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-07-09
4
- **Commit:** b1d2c76
5
- **Branch:** sprint/2026-07-09-02
6
- **Version:** 0.14.5.0
4
+ **Commit:** df2023f
5
+ **Branch:** main
6
+ **Version:** 0.14.6.0
7
7
 
8
8
  ## OVERVIEW
9
9
  Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.