@stackbilt/cli 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -280,7 +280,7 @@ charter adf evidence [--task "<prompt>"] [--ai-dir <dir>] [--auto-measure]
280
280
  - `bundle`: Read `manifest.adf`, resolve ON_DEMAND modules via keyword matching against the task, and output merged context with token estimate, trigger observability (matched keywords, load reasons), unmatched modules, and advisory-only warnings.
281
281
  - `sync --check`: Verify source `.adf` files match their locked hashes. Exits 1 if any source has drifted since last sync.
282
282
  - `sync --write`: Update `.adf.lock` with current source hashes.
283
- - `evidence`: Validate all metric ceilings in the merged document and produce a structured pass/fail evidence report. `--auto-measure` counts lines in files referenced by the manifest METRICS section. `--context` or `--context-file` inject external metric overrides that take precedence over auto-measured and document values. In `--ci` mode, exits 1 on constraint failures (warnings don't fail).
283
+ - `evidence`: Validate all metric ceilings in the merged document and produce a structured pass/fail evidence report. `--auto-measure` counts lines in files referenced by the manifest METRICS section. `--context` or `--context-file` inject external metric overrides that take precedence over auto-measured and document values. In `--ci` mode, exits 1 on constraint failures (warnings don't fail). The governance workflow template runs this automatically on PRs when `.ai/manifest.adf` is present.
284
284
 
285
285
  #### Evidence Example (from Charter's own repo)
286
286
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@stackbilt/cli",
3
- "version": "0.3.0",
3
+ "sideEffects": false,
4
+ "version": "0.3.2",
4
5
  "description": "Charter CLI — repo-level governance checks",
5
6
  "bin": {
6
7
  "charter": "./dist/bin.js"
@@ -34,13 +35,13 @@
34
35
  "access": "public"
35
36
  },
36
37
  "dependencies": {
37
- "@stackbilt/types": "^0.3.0",
38
- "@stackbilt/core": "^0.3.0",
39
- "@stackbilt/git": "^0.3.0",
40
- "@stackbilt/classify": "^0.3.0",
41
- "@stackbilt/validate": "^0.3.0",
42
- "@stackbilt/adf": "^0.3.0",
43
- "@stackbilt/drift": "^0.3.0"
38
+ "@stackbilt/core": "^0.3.2",
39
+ "@stackbilt/git": "^0.3.2",
40
+ "@stackbilt/classify": "^0.3.2",
41
+ "@stackbilt/types": "^0.3.2",
42
+ "@stackbilt/adf": "^0.3.2",
43
+ "@stackbilt/drift": "^0.3.2",
44
+ "@stackbilt/validate": "^0.3.2"
44
45
  },
45
46
  "license": "Apache-2.0",
46
47
  "scripts": {