@boyingliu01/xp-gate 0.9.1 → 0.9.2

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/adapters/cpp.sh CHANGED
@@ -13,12 +13,12 @@ _detect_cpp_build() {
13
13
  run_static_analysis() {
14
14
  if command -v clang-tidy &>/dev/null; then
15
15
  local files
16
- files=$(find . -name "*.cpp" -o -name "*.cc" -o -name "*.c" -o -name "*.h" 2>/dev/null | head -20)
16
+ files=$(find . -name "*.cpp" -o -name "*.cc" -o -name "*.c" -o -name "*.h" 2>/dev/null | sed -n '1,20p; 20q')
17
17
  if [ -n "$files" ]; then
18
- echo "$files" | xargs clang-tidy 2>&1 | head -20
18
+ echo "$files" | xargs clang-tidy 2>&1 | sed -n '1,20p; 20q'
19
19
  fi
20
20
  elif command -v cppcheck &>/dev/null; then
21
- cppcheck --enable=all --inline-suppr . 2>&1 | head -20
21
+ cppcheck --enable=all --inline-suppr . 2>&1 | sed -n '1,20p; 20q'
22
22
  else
23
23
  echo "No C++ analysis tools (clang-tidy/cppcheck)"
24
24
  return 1
package/adapters/dart.sh CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  run_static_analysis() {
4
4
  if command -v dart &>/dev/null; then
5
- dart analyze 2>&1 | head -30
5
+ dart analyze 2>&1 | sed -n '1,30p; 30q'
6
6
  return $?
7
7
  else
8
8
  echo "Dart SDK not available"
@@ -12,7 +12,7 @@ run_static_analysis() {
12
12
 
13
13
  run_lint() {
14
14
  if command -v dart &>/dev/null; then
15
- dart format --output=none --set-exit-if-changed . 2>&1 | head -30
15
+ dart format --output=none --set-exit-if-changed . 2>&1 | sed -n '1,30p; 30q'
16
16
  return $?
17
17
  else
18
18
  echo "Dart SDK not available"
@@ -2,7 +2,7 @@
2
2
 
3
3
  run_static_analysis() {
4
4
  if command -v flutter &>/dev/null; then
5
- flutter analyze 2>&1 | head -30
5
+ flutter analyze 2>&1 | sed -n '1,30p; 30q'
6
6
  return $?
7
7
  else
8
8
  echo "Flutter SDK not available"
@@ -12,7 +12,7 @@ run_static_analysis() {
12
12
 
13
13
  run_lint() {
14
14
  if command -v flutter &>/dev/null; then
15
- flutter format --output=none --set-exit-if-changed . 2>&1 | head -30
15
+ flutter format --output=none --set-exit-if-changed . 2>&1 | sed -n '1,30p; 30q'
16
16
  return $?
17
17
  else
18
18
  echo "Flutter SDK not available"
package/adapters/java.sh CHANGED
@@ -27,13 +27,13 @@ run_static_analysis() {
27
27
  build_system=$(_detect_java_build)
28
28
 
29
29
  if [ "$build_system" = "maven" ]; then
30
- mvn compile -q 2>&1 | grep -i "error\|fail" | head -5
30
+ mvn compile -q 2>&1 | grep -i "error\|fail" | sed -n '1,5p; 5q'
31
31
  if [ "${PIPESTATUS[0]}" -ne 0 ]; then
32
32
  echo "❌ Maven compilation failed"
33
33
  return 1
34
34
  fi
35
35
  elif [ "$build_system" = "gradle" ]; then
36
- gradle compileJava --quiet 2>&1 | grep -i "error\|fail" | head -5
36
+ gradle compileJava --quiet 2>&1 | grep -i "error\|fail" | sed -n '1,5p; 5q'
37
37
  if [ "${PIPESTATUS[0]}" -ne 0 ]; then
38
38
  echo "❌ Gradle compilation failed"
39
39
  return 1
@@ -42,12 +42,12 @@ run_static_analysis() {
42
42
 
43
43
  # CheckStyle with Google style (legacy fallback)
44
44
  if command -v checkstyle &>/dev/null; then
45
- checkstyle -c /google_checks.xml . 2>&1 | head -20
45
+ checkstyle -c /google_checks.xml . 2>&1 | sed -n '1,20p; 20q'
46
46
  fi
47
47
 
48
48
  # PMD error detection (legacy fallback)
49
49
  if command -v pmd &>/dev/null; then
50
- pmd check -d . -R category/java/errorprone.xml 2>&1 | head -20
50
+ pmd check -d . -R category/java/errorprone.xml 2>&1 | sed -n '1,20p; 20q'
51
51
  fi
52
52
 
53
53
  # p3c-pmd check (Alibaba coding guidelines) — primary Java quality gate
@@ -15,13 +15,13 @@ run_static_analysis() {
15
15
  build_system=$(_detect_kotlin_build)
16
16
 
17
17
  if [ "$build_system" = "maven" ]; then
18
- mvn compile -q 2>&1 | grep -i "error\|fail" | head -5
18
+ mvn compile -q 2>&1 | grep -i "error\|fail" | sed -n '1,5p; 5q'
19
19
  if [ ${PIPESTATUS[0]} -ne 0 ]; then
20
20
  echo "❌ Maven compilation failed"
21
21
  return 1
22
22
  fi
23
23
  elif [ "$build_system" = "gradle" ]; then
24
- gradle compileKotlin --quiet 2>&1 | grep -i "error\|fail" | head -5
24
+ gradle compileKotlin --quiet 2>&1 | grep -i "error\|fail" | sed -n '1,5p; 5q'
25
25
  if [ ${PIPESTATUS[0]} -ne 0 ]; then
26
26
  echo "❌ Gradle compilation failed"
27
27
  return 1
@@ -29,10 +29,10 @@ run_static_analysis() {
29
29
  fi
30
30
 
31
31
  if command -v ktlint &>/dev/null; then
32
- ktlint "**/*.kt" 2>&1 | head -20
32
+ ktlint "**/*.kt" 2>&1 | sed -n '1,20p; 20q'
33
33
  return $?
34
34
  elif command -v detekt &>/dev/null; then
35
- detekt --input . 2>&1 | head -20
35
+ detekt --input . 2>&1 | sed -n '1,20p; 20q'
36
36
  return $?
37
37
  else
38
38
  echo "No Kotlin lint tools (ktlint/detekt)"
@@ -2,10 +2,10 @@
2
2
 
3
3
  run_static_analysis() {
4
4
  if command -v oclint &>/dev/null; then
5
- oclint-json-compilation-database 2>&1 | head -30
5
+ oclint-json-compilation-database 2>&1 | sed -n '1,30p; 30q'
6
6
  return $?
7
7
  elif command -v clang-tidy &>/dev/null; then
8
- find . -name "*.m" -o -name "*.mm" -o -name "*.h" | head -20 | xargs clang-tidy 2>&1 | head -30
8
+ find . -name "*.m" -o -name "*.mm" -o -name "*.h" | sed -n '1,20p; 20q' | xargs clang-tidy 2>&1 | sed -n '1,30p; 30q'
9
9
  return $?
10
10
  else
11
11
  echo "No Objective-C analysis tools available (oclint/clang-tidy)"
@@ -46,10 +46,10 @@ if grep -q '<profiles>' pom.xml; then
46
46
 
47
47
  # Use sed to insert before </profiles>
48
48
  # Find the line number of </profiles>
49
- PROFILES_END_LINE=$(grep -n '</profiles>' pom.xml | head -1 | cut -d: -f1)
49
+ PROFILES_END_LINE=$(grep -n '</profiles>' pom.xml | sed -n '1p; 1q' | cut -d: -f1)
50
50
 
51
51
  if [ -n "$PROFILES_END_LINE" ]; then
52
- head -n $((PROFILES_END_LINE - 1)) pom.xml > pom.xml.tmp
52
+ sed -n "1,$((PROFILES_END_LINE - 1))p; $((PROFILES_END_LINE - 1))q" pom.xml > pom.xml.tmp
53
53
  {
54
54
  echo ""
55
55
  echo " <!-- XP-Gate: Alibaba p3c-pmd quality gate profile -->"
@@ -66,7 +66,7 @@ else
66
66
  PROJECT_END_LINE=$(grep -n '</project>' pom.xml | tail -1 | cut -d: -f1)
67
67
 
68
68
  if [ -n "$PROJECT_END_LINE" ]; then
69
- head -n $((PROJECT_END_LINE - 1)) pom.xml > pom.xml.tmp
69
+ sed -n "1,$((PROJECT_END_LINE - 1))p; $((PROJECT_END_LINE - 1))q" pom.xml > pom.xml.tmp
70
70
  {
71
71
  echo ""
72
72
  echo " <!-- XP-Gate: Alibaba p3c-pmd quality gate profile -->"
@@ -154,9 +154,9 @@ else
154
154
  echo "Step 2: Installing xp-gate-whalecloud-java profile into pom.xml..."
155
155
 
156
156
  if grep -q '<profiles>' pom.xml; then
157
- PROFILES_END_LINE=$(grep -n '</profiles>' pom.xml | head -1 | cut -d: -f1)
157
+ PROFILES_END_LINE=$(grep -n '</profiles>' pom.xml | sed -n '1p; 1q' | cut -d: -f1)
158
158
  if [ -n "$PROFILES_END_LINE" ]; then
159
- head -n $((PROFILES_END_LINE - 1)) pom.xml > pom.xml.tmp
159
+ sed -n "1,$((PROFILES_END_LINE - 1))p; $((PROFILES_END_LINE - 1))q" pom.xml > pom.xml.tmp
160
160
  {
161
161
  echo ""
162
162
  echo " <!-- XP-Gate: WhaleCloud Java Coding Standards profile -->"
@@ -169,7 +169,7 @@ else
169
169
  else
170
170
  PROJECT_END_LINE=$(grep -n '</project>' pom.xml | tail -1 | cut -d: -f1)
171
171
  if [ -n "$PROJECT_END_LINE" ]; then
172
- head -n $((PROJECT_END_LINE - 1)) pom.xml > pom.xml.tmp
172
+ sed -n "1,$((PROJECT_END_LINE - 1))p; $((PROJECT_END_LINE - 1))q" pom.xml > pom.xml.tmp
173
173
  {
174
174
  echo ""
175
175
  echo " <!-- XP-Gate: WhaleCloud Java Coding Standards profile -->"
@@ -72,7 +72,7 @@ run_tests() {
72
72
  test_paths="test/"
73
73
  fi
74
74
 
75
- if [ -n "$test_paths" ] && find "$test_paths" -name "*.Tests.ps1" -type f 2>/dev/null | head -1 | grep -q "."; then
75
+ if [ -n "$test_paths" ] && find "$test_paths" -name "*.Tests.ps1" -type f 2>/dev/null | sed -n '1p; 1q' | grep -q "."; then
76
76
  echo "Running Pester tests..."
77
77
  "$PWSH" -NoProfile -Command "
78
78
  \$results = Invoke-Pester -Path '$test_paths' -PassThru
@@ -84,7 +84,7 @@ run_tests() {
84
84
  exit 0
85
85
  "
86
86
  return $?
87
- elif find . -maxdepth 2 -name "*.Tests.ps1" -type f 2>/dev/null | head -1 | grep -q "."; then
87
+ elif find . -maxdepth 2 -name "*.Tests.ps1" -type f 2>/dev/null | sed -n '1p; 1q' | grep -q "."; then
88
88
  echo "Running Pester tests in current directory..."
89
89
  "$PWSH" -NoProfile -Command "
90
90
  \$results = Invoke-Pester -CI -PassThru
@@ -117,7 +117,7 @@ run_coverage() {
117
117
  test_paths="test/"
118
118
  fi
119
119
 
120
- if [ -n "$test_paths" ] || find . -maxdepth 2 -name "*.Tests.ps1" -type f 2>/dev/null | head -1 | grep -q "."; then
120
+ if [ -n "$test_paths" ] || find . -maxdepth 2 -name "*.Tests.ps1" -type f 2>/dev/null | sed -n '1p; 1q' | grep -q "."; then
121
121
  echo "Running Pester with code coverage..."
122
122
  local path_arg="${test_paths:-.}"
123
123
  "$PWSH" -NoProfile -Command "
@@ -63,7 +63,7 @@ run_tests() {
63
63
  fi
64
64
 
65
65
  # Check for errors in summary line (e.g. "3 errors")
66
- ERROR_COUNT=$(echo "$PYTEST_OUTPUT" | grep -oP '\d+ error' | grep -oP '\d+' | head -1)
66
+ ERROR_COUNT=$(echo "$PYTEST_OUTPUT" | grep -oP '\d+ error' | grep -oP '\d+' | sed -n '1p; 1q')
67
67
  if [ -n "$ERROR_COUNT" ] && [ "$ERROR_COUNT" -gt 0 ]; then
68
68
  echo "❌ $ERROR_COUNT test collection/execution errors detected"
69
69
  return 1
@@ -94,7 +94,7 @@ run_coverage() {
94
94
  fi
95
95
 
96
96
  # Check for errors in summary line (e.g. "3 errors")
97
- ERROR_COUNT=$(echo "$PYTEST_OUTPUT" | grep -oP '\d+ error' | grep -oP '\d+' | head -1)
97
+ ERROR_COUNT=$(echo "$PYTEST_OUTPUT" | grep -oP '\d+ error' | grep -oP '\d+' | sed -n '1p; 1q')
98
98
  if [ -n "$ERROR_COUNT" ] && [ "$ERROR_COUNT" -gt 0 ]; then
99
99
  echo "❌ $ERROR_COUNT test collection/execution errors detected"
100
100
  return 1
package/adapters/shell.sh CHANGED
@@ -26,13 +26,13 @@ run_lint() {
26
26
 
27
27
  run_tests() {
28
28
  # Look for and run shell test files
29
- if [[ -d "tests" ]] && [[ -n "$(find tests -name "*.sh" -type f | head -n 1)" ]]; then
29
+ if [ -d "tests" ] && [ -n "$(find tests -name "*.sh" -type f | sed -n '1p; 1q')" ]; then
30
30
  echo "Running Shell tests..."
31
31
  for test_file in tests/*.sh; do
32
- if [[ -x "$test_file" ]]; then
32
+ if [ -x "$test_file" ]; then
33
33
  "$test_file"
34
34
  local exit_code=$?
35
- if [[ $exit_code -ne 0 ]]; then
35
+ if [ "$exit_code" -ne 0 ]; then
36
36
  return $exit_code
37
37
  fi
38
38
  fi
package/adapters/swift.sh CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  run_static_analysis() {
4
4
  if command -v swiftlint &>/dev/null; then
5
- swiftlint lint 2>&1 | head -30
5
+ swiftlint lint 2>&1 | sed -n '1,30p; 30q'
6
6
  return $?
7
7
  else
8
8
  echo "SwiftLint not available"
@@ -12,7 +12,7 @@ run_static_analysis() {
12
12
 
13
13
  run_lint() {
14
14
  if command -v swiftlint &>/dev/null; then
15
- swiftlint lint --strict 2>&1 | head -30
15
+ swiftlint lint --strict 2>&1 | sed -n '1,30p; 30q'
16
16
  return $?
17
17
  else
18
18
  echo "SwiftLint not available"
@@ -1,9 +1,9 @@
1
1
  # SRC/MOCK-POLICY KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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.
@@ -1,9 +1,9 @@
1
1
  # SRC/MUTATION KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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": "@boyingliu01/xp-gate",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "AI-driven development workflow: 6 quality gates + Delphi review + Sprint Flow",
5
5
  "bin": {
6
6
  "xp-gate": "./bin/xp-gate.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xp-gate",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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": "@boyingliu01/opencode-plugin",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "description": "XP-Gate quality gates + AI workflow skills for OpenCode",
@@ -1,9 +1,9 @@
1
1
  # SKILLS/DELPHI-REVIEW KNOWLEDGE BASE
2
2
 
3
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
  # PRINCIPLES CHECKER MODULE
2
2
 
3
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.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
3
  **Generated:** 2026-06-18
4
- **Commit:** 33cf3f2
4
+ **Commit:** 5ee2fa4
5
5
  **Branch:** main
6
- **Version:** 0.9.1.0
6
+ **Version:** 0.9.0.0
7
7
 
8
8
  ## OVERVIEW
9
9
  Test-Specification Alignment Engine — two-stage validation ensuring tests accurately reflect requirements and design specs.