@chrono-meta/fh-gate 1.0.0 → 1.0.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/bin/fh-gate.js +9 -0
- package/package.json +4 -4
- package/bin/fh-gate +0 -3
package/bin/fh-gate.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrono-meta/fh-gate",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "FH governance gate — runs structured AI code review via claude --print and returns machine-parseable verdicts (PASS/PENDING/BLOCKED/ESCALATE).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"url": "https://github.com/chrono-meta/forge-harness.git"
|
|
17
17
|
},
|
|
18
18
|
"bin": {
|
|
19
|
-
"fh-gate": "./bin/fh-gate"
|
|
19
|
+
"fh-gate": "./bin/fh-gate.js"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"prepare": "chmod +x bin/fh-gate scripts/fh-gate.sh"
|
|
22
|
+
"prepare": "chmod +x bin/fh-gate.js scripts/fh-gate.sh"
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=16"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
|
-
"bin/fh-gate",
|
|
36
|
+
"bin/fh-gate.js",
|
|
37
37
|
"scripts/fh-gate.sh",
|
|
38
38
|
"knowledge/shared/harness-core/fh_integration_contract.md",
|
|
39
39
|
"README.md"
|
package/bin/fh-gate
DELETED