commitgate 0.9.2 → 0.9.4
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 +8 -0
- package/README.en.md +124 -621
- package/README.md +124 -618
- package/bin/sync.ts +1 -1
- package/package.json +5 -2
package/bin/sync.ts
CHANGED
|
@@ -252,7 +252,7 @@ function printHelp(): void {
|
|
|
252
252
|
|
|
253
253
|
하지 않는 일:
|
|
254
254
|
companion skills · workflow/.gitignore · package.json · req:* · req.config.json 은 건드리지 않습니다.
|
|
255
|
-
캐럿 범위(^0.x)는 자동으로 못 넘깁니다 —
|
|
255
|
+
캐럿 범위(^0.x)는 자동으로 못 넘깁니다 — 업그레이드(0.x) 문서(github.com/sol5288/commitgate/blob/main/docs/upgrade.md)를 참고해 범위를 먼저 올리세요.
|
|
256
256
|
`)
|
|
257
257
|
}
|
|
258
258
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commitgate",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "CommitGate — Builder↔Reviewer(Claude↔Codex) fail-closed 커밋 게이트: 리뷰·승인·증거 없인 커밋을 통과시키지 않는 AI REQ 워크플로 kit (req:new/next/review-codex/doctor/commit)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"test": "vitest run",
|
|
38
38
|
"typecheck": "tsc --noEmit",
|
|
39
39
|
"smoke": "node scripts/smoke.mjs",
|
|
40
|
-
"verify:overrides": "node scripts/verify-review-overrides.mjs"
|
|
40
|
+
"verify:overrides": "node scripts/verify-review-overrides.mjs",
|
|
41
|
+
"docs:lint": "remark docs README.md README.en.md --quiet --frail"
|
|
41
42
|
},
|
|
42
43
|
"files": [
|
|
43
44
|
"scripts/req",
|
|
@@ -67,6 +68,8 @@
|
|
|
67
68
|
"@types/cross-spawn": "^6.0.6",
|
|
68
69
|
"@types/node": "^22.7.4",
|
|
69
70
|
"@types/semver": "^7.5.8",
|
|
71
|
+
"remark-cli": "^12.0.1",
|
|
72
|
+
"remark-validate-links": "^13.1.0",
|
|
70
73
|
"typescript": "^5.6.2",
|
|
71
74
|
"vitest": "^2.1.2"
|
|
72
75
|
}
|