@jnyross/code-factory 1.1.0 → 1.1.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/README.md +3 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -26,6 +26,8 @@ All control-plane policy lives in `ARCHITECTURE.yaml` under `control_plane`:
|
|
|
26
26
|
2. fanout: `CI Pipeline`, `harness-smoke`, `Browser Evidence`
|
|
27
27
|
3. `risk-policy-finalize`
|
|
28
28
|
|
|
29
|
+
For `high` tier changes, the gate auto-applies the PR label `high-risk`.
|
|
30
|
+
|
|
29
31
|
`Code Review Agent` workflow (`.github/workflows/auto-review.yml`) runs in parallel and is enforced by SHA-aware policy checks.
|
|
30
32
|
|
|
31
33
|
## SHA Discipline and Reruns
|
|
@@ -57,6 +59,7 @@ npm run typecheck
|
|
|
57
59
|
npm test
|
|
58
60
|
npm run build:ci --if-present
|
|
59
61
|
npm run harness:legal-chat:smoke
|
|
62
|
+
npm run harness:ui:pre-pr
|
|
60
63
|
npm run harness:ui:capture-browser-evidence
|
|
61
64
|
npm run harness:ui:verify-browser-evidence
|
|
62
65
|
npm run harness:risk-tier
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jnyross/code-factory",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Bootstrap new repos from the Code Factory template.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"harness:legal-chat:smoke": "node scripts/control-plane/harness-smoke.mjs",
|
|
30
30
|
"harness:ui:capture-browser-evidence": "node scripts/control-plane/capture-browser-evidence.mjs",
|
|
31
31
|
"harness:ui:verify-browser-evidence": "node scripts/control-plane/verify-browser-evidence.mjs",
|
|
32
|
+
"harness:ui:pre-pr": "npm run harness:ui:capture-browser-evidence && npm run harness:ui:verify-browser-evidence",
|
|
32
33
|
"harness:weekly-metrics": "node scripts/control-plane/weekly-metrics.mjs"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|