@stackbilt/cli 0.1.2 → 0.1.3

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 +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,15 +2,17 @@
2
2
 
3
3
  CLI entry point for Charter Kit -- a local-first governance toolkit for software repositories. Orchestrates all other `@stackbilt/*` packages to parse commit trailers, score risk, detect blessed-stack drift, and classify change scope. No LLM calls at runtime.
4
4
 
5
- ## Install
5
+ > **This is the only package most users need.** One install gives you the full Charter Kit toolkit.
6
6
 
7
- Global (recommended for developer machines):
7
+ ## Install
8
8
 
9
9
  ```bash
10
10
  npm install -g @stackbilt/cli
11
11
  ```
12
12
 
13
- Local (recommended for CI):
13
+ This pulls in all Charter Kit packages automatically. You get the `charter` command globally.
14
+
15
+ For CI pipelines, install as a dev dependency instead:
14
16
 
15
17
  ```bash
16
18
  npm install --save-dev @stackbilt/cli
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbilt/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Charter CLI — repo-level governance checks",
5
5
  "bin": {
6
6
  "charter": "./dist/bin.js"