@boyingliu01/xp-gate 0.11.0 → 0.11.1
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/mock-policy/AGENTS.md +3 -3
- package/mutation/AGENTS.md +3 -3
- package/package.json +1 -1
- package/plugins/claude-code/.claude-plugin/plugin.json +1 -1
- package/plugins/claude-code/skills/delphi-review/AGENTS.md +3 -3
- package/plugins/claude-code/skills/delphi-review/SKILL.md +26 -1
- package/plugins/claude-code/skills/sprint-flow/AGENTS.md +3 -3
- package/plugins/claude-code/skills/test-specification-alignment/AGENTS.md +3 -3
- package/plugins/opencode/package.json +1 -1
- package/plugins/opencode/skills/delphi-review/AGENTS.md +3 -3
- package/plugins/opencode/skills/delphi-review/SKILL.md +26 -1
- package/plugins/opencode/skills/sprint-flow/AGENTS.md +3 -3
- package/plugins/opencode/skills/test-specification-alignment/AGENTS.md +3 -3
- package/plugins/qoder/plugin.json +1 -1
- package/plugins/qoder/skills/delphi-review/AGENTS.md +3 -3
- package/plugins/qoder/skills/sprint-flow/AGENTS.md +3 -3
- package/plugins/qoder/skills/test-specification-alignment/AGENTS.md +3 -3
- package/principles/AGENTS.md +3 -3
- package/skills/delphi-review/AGENTS.md +3 -3
- package/skills/delphi-review/SKILL.md +26 -1
- package/skills/sprint-flow/AGENTS.md +3 -3
- package/skills/test-specification-alignment/AGENTS.md +3 -3
package/mock-policy/AGENTS.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SRC/MOCK-POLICY KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Mock layering policy enforcement — Gate M3 of pre-push hook. Ensures integration tests use real implementations for internal dependencies, mock external dependencies, and annotate pending mocks with removal plans. Combines project scope scanning, mock decision engine, and per-file validation into a single pipeline.
|
package/mutation/AGENTS.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SRC/MUTATION KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
**Gate M** (incremental mutation testing) + **Gate M2** helpers (test-layer detection used by `src/mock-policy/`). Pre-push quality gate. TypeScript-only; uses Stryker.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xp-gate",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"displayName": "XP-Gate",
|
|
5
5
|
"description": "Extreme Programming quality gates + AI workflow skills for Claude Code. Includes 10 quality gates (Gate 0-9), Sprint Flow (11 phases), and Delphi multi-expert review (>=90% consensus).",
|
|
6
6
|
"author": {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.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,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: delphi-review
|
|
3
|
-
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed.
|
|
3
|
+
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed. See ## Triggers for trigger phrases."
|
|
4
4
|
auto_continue: true
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -19,6 +19,31 @@ auto_continue: true
|
|
|
19
19
|
- Does NOT replace testing or CI/CD verification
|
|
20
20
|
- Does NOT handle deployment or release decisions
|
|
21
21
|
|
|
22
|
+
## Triggers
|
|
23
|
+
|
|
24
|
+
- /delphi-review
|
|
25
|
+
- review this design
|
|
26
|
+
- 评审这个需求
|
|
27
|
+
- 评审这个设计
|
|
28
|
+
- design review
|
|
29
|
+
- 多专家评审
|
|
30
|
+
- consensus review
|
|
31
|
+
- code walkthrough
|
|
32
|
+
- push review
|
|
33
|
+
- architecture review
|
|
34
|
+
- PR review
|
|
35
|
+
|
|
36
|
+
## 工作流程
|
|
37
|
+
|
|
38
|
+
1. Input Validation: 检查输入是否包含可评审内容(设计文档/代码/spec),空输入阻断
|
|
39
|
+
2. Expert Assignment: 分配 2-3 位专家,至少来自 2 家不同厂商(国产模型)
|
|
40
|
+
3. Round 1: 匿名独立评审 — 各专家互不知对方意见,独立输出 verdict JSON
|
|
41
|
+
4. Consensus Check: 共识检查 — 共识 ≥90% 且全部 APPROVED 则完成
|
|
42
|
+
5. Round 2: 交换意见 — 未达成共识时,专家查看他人意见后重新评审
|
|
43
|
+
6. Round 3: 最终立场 — 仍未达成共识时,输出最终立场和分歧点
|
|
44
|
+
7. Fix & Re-Review: REQUEST_CHANGES → 修复 Critical+Major → 从 Round 2 重新评审
|
|
45
|
+
8. Generate Output: 生成共识报告 + specification.yaml + delphi-reviewed.json
|
|
46
|
+
|
|
22
47
|
## Activation
|
|
23
48
|
**MANDATORY**: Every delphi-review response MUST begin with `[DelphiReview]` as the first line.
|
|
24
49
|
This marker is required for skill-cert L1 trigger detection.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/SPRINT-FLOW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
**11-phase** development pipeline: ISOLATE → AUTO-ESTIMATE → THINK → PLAN → BUILD → REVIEW → SHIP → LAND → USER ACCEPTANCE → FEEDBACK → CLEANUP. Phase 2 default build mode is **ralph-loop** (REQ-level iteration, 40-67% token savings vs parallel). HARD-GATE in Phase 1: design must pass Delphi review (≥90% consensus) before any coding.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/TEST-SPECIFICATION-ALIGNMENT KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.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,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: delphi-review
|
|
3
|
-
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed.
|
|
3
|
+
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed. See ## Triggers for trigger phrases."
|
|
4
4
|
auto_continue: true
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -19,6 +19,31 @@ auto_continue: true
|
|
|
19
19
|
- Does NOT replace testing or CI/CD verification
|
|
20
20
|
- Does NOT handle deployment or release decisions
|
|
21
21
|
|
|
22
|
+
## Triggers
|
|
23
|
+
|
|
24
|
+
- /delphi-review
|
|
25
|
+
- review this design
|
|
26
|
+
- 评审这个需求
|
|
27
|
+
- 评审这个设计
|
|
28
|
+
- design review
|
|
29
|
+
- 多专家评审
|
|
30
|
+
- consensus review
|
|
31
|
+
- code walkthrough
|
|
32
|
+
- push review
|
|
33
|
+
- architecture review
|
|
34
|
+
- PR review
|
|
35
|
+
|
|
36
|
+
## 工作流程
|
|
37
|
+
|
|
38
|
+
1. Input Validation: 检查输入是否包含可评审内容(设计文档/代码/spec),空输入阻断
|
|
39
|
+
2. Expert Assignment: 分配 2-3 位专家,至少来自 2 家不同厂商(国产模型)
|
|
40
|
+
3. Round 1: 匿名独立评审 — 各专家互不知对方意见,独立输出 verdict JSON
|
|
41
|
+
4. Consensus Check: 共识检查 — 共识 ≥90% 且全部 APPROVED 则完成
|
|
42
|
+
5. Round 2: 交换意见 — 未达成共识时,专家查看他人意见后重新评审
|
|
43
|
+
6. Round 3: 最终立场 — 仍未达成共识时,输出最终立场和分歧点
|
|
44
|
+
7. Fix & Re-Review: REQUEST_CHANGES → 修复 Critical+Major → 从 Round 2 重新评审
|
|
45
|
+
8. Generate Output: 生成共识报告 + specification.yaml + delphi-reviewed.json
|
|
46
|
+
|
|
22
47
|
## Activation
|
|
23
48
|
**MANDATORY**: Every delphi-review response MUST begin with `[DelphiReview]` as the first line.
|
|
24
49
|
This marker is required for skill-cert L1 trigger detection.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/SPRINT-FLOW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
**11-phase** development pipeline: ISOLATE → AUTO-ESTIMATE → THINK → PLAN → BUILD → REVIEW → SHIP → LAND → USER ACCEPTANCE → FEEDBACK → CLEANUP. Phase 2 default build mode is **ralph-loop** (REQ-level iteration, 40-67% token savings vs parallel). HARD-GATE in Phase 1: design must pass Delphi review (≥90% consensus) before any coding.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/TEST-SPECIFICATION-ALIGNMENT KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xp-gate",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"displayName": "XP-Gate",
|
|
5
5
|
"description": "Extreme Programming quality gates + AI workflow skills for Qoder. Includes 10 quality gates (Gate 0-9), Sprint Flow (11 phases), and Delphi multi-expert review (>=90% consensus).",
|
|
6
6
|
"author": {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.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
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
**11-phase** development pipeline: ISOLATE → AUTO-ESTIMATE → THINK → PLAN → BUILD → REVIEW → USER ACCEPTANCE → FEEDBACK → SHIP → LAND → CLEANUP. Phase 2 default build mode is **ralph-loop** (REQ-level iteration, 40-67% token savings vs parallel). HARD-GATE in Phase 1: design must pass Delphi review (≥90% consensus) before any coding.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/TEST-SPECIFICATION-ALIGNMENT KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.
|
package/principles/AGENTS.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# PRINCIPLES CHECKER MODULE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Clean Code & SOLID principles checker — **Gate 4** of pre-commit. 14 rules × 9 language adapters, SARIF 2.1.0 output. Houses the **Boy Scout Rule** enforcement engine (Gate 6) and warning-baseline storage.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.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,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: delphi-review
|
|
3
|
-
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed.
|
|
3
|
+
description: "Use when asked to review a design, plan, or architecture; before implementation starts; or when multi-expert consensus is needed. See ## Triggers for trigger phrases."
|
|
4
4
|
auto_continue: true
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -19,6 +19,31 @@ auto_continue: true
|
|
|
19
19
|
- Does NOT replace testing or CI/CD verification
|
|
20
20
|
- Does NOT handle deployment or release decisions
|
|
21
21
|
|
|
22
|
+
## Triggers
|
|
23
|
+
|
|
24
|
+
- /delphi-review
|
|
25
|
+
- review this design
|
|
26
|
+
- 评审这个需求
|
|
27
|
+
- 评审这个设计
|
|
28
|
+
- design review
|
|
29
|
+
- 多专家评审
|
|
30
|
+
- consensus review
|
|
31
|
+
- code walkthrough
|
|
32
|
+
- push review
|
|
33
|
+
- architecture review
|
|
34
|
+
- PR review
|
|
35
|
+
|
|
36
|
+
## 工作流程
|
|
37
|
+
|
|
38
|
+
1. Input Validation: 检查输入是否包含可评审内容(设计文档/代码/spec),空输入阻断
|
|
39
|
+
2. Expert Assignment: 分配 2-3 位专家,至少来自 2 家不同厂商(国产模型)
|
|
40
|
+
3. Round 1: 匿名独立评审 — 各专家互不知对方意见,独立输出 verdict JSON
|
|
41
|
+
4. Consensus Check: 共识检查 — 共识 ≥90% 且全部 APPROVED 则完成
|
|
42
|
+
5. Round 2: 交换意见 — 未达成共识时,专家查看他人意见后重新评审
|
|
43
|
+
6. Round 3: 最终立场 — 仍未达成共识时,输出最终立场和分歧点
|
|
44
|
+
7. Fix & Re-Review: REQUEST_CHANGES → 修复 Critical+Major → 从 Round 2 重新评审
|
|
45
|
+
8. Generate Output: 生成共识报告 + specification.yaml + delphi-reviewed.json
|
|
46
|
+
|
|
22
47
|
## Activation
|
|
23
48
|
**MANDATORY**: Every delphi-review response MUST begin with `[DelphiReview]` as the first line.
|
|
24
49
|
This marker is required for skill-cert L1 trigger detection.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/SPRINT-FLOW KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
**11-phase** development pipeline: ISOLATE → AUTO-ESTIMATE → THINK → PLAN → BUILD → REVIEW → SHIP → LAND → USER ACCEPTANCE → FEEDBACK → CLEANUP. Phase 2 default build mode is **ralph-loop** (REQ-level iteration, 40-67% token savings vs parallel). HARD-GATE in Phase 1: design must pass Delphi review (≥90% consensus) before any coding.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# SKILLS/TEST-SPECIFICATION-ALIGNMENT KNOWLEDGE BASE
|
|
2
2
|
|
|
3
|
-
**Generated:** 2026-06-
|
|
4
|
-
**Commit:**
|
|
3
|
+
**Generated:** 2026-06-30
|
|
4
|
+
**Commit:** 9289349
|
|
5
5
|
**Branch:** main
|
|
6
|
-
**Version:** 0.11.0
|
|
6
|
+
**Version:** 0.11.1.0
|
|
7
7
|
|
|
8
8
|
## OVERVIEW
|
|
9
9
|
Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.
|