archgate 0.11.2 → 0.13.0

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 +14 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -38,6 +38,18 @@ When a rule is violated, `archgate check` reports the file, line, and which ADR
38
38
 
39
39
  ## Installation
40
40
 
41
+ **Standalone** (no Node.js required):
42
+
43
+ ```bash
44
+ # macOS / Linux
45
+ curl -fsSL https://raw.githubusercontent.com/archgate/cli/main/install.sh | sh
46
+
47
+ # Windows (PowerShell)
48
+ irm https://raw.githubusercontent.com/archgate/cli/main/install.ps1 | iex
49
+ ```
50
+
51
+ **Via npm** (or any Node.js package manager):
52
+
41
53
  ```bash
42
54
  # npm
43
55
  npm install -g archgate
@@ -64,8 +76,8 @@ npx archgate check # run via package manager
64
76
  ## Quick start
65
77
 
66
78
  ```bash
67
- # 1. Install (pick your package manager)
68
- npm install -g archgate # or: bun install -g archgate
79
+ # 1. Install
80
+ curl -fsSL https://raw.githubusercontent.com/archgate/cli/main/install.sh | sh # or: npm install -g archgate
69
81
 
70
82
  # 2. Initialize governance in your project
71
83
  cd my-project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgate",
3
- "version": "0.11.2",
3
+ "version": "0.13.0",
4
4
  "description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
5
5
  "keywords": [
6
6
  "adr",
@@ -75,9 +75,9 @@
75
75
  "typescript": "^5"
76
76
  },
77
77
  "optionalDependencies": {
78
- "archgate-darwin-arm64": "0.11.2",
79
- "archgate-linux-x64": "0.11.2",
80
- "archgate-win32-x64": "0.11.2"
78
+ "archgate-darwin-arm64": "0.13.0",
79
+ "archgate-linux-x64": "0.13.0",
80
+ "archgate-win32-x64": "0.13.0"
81
81
  },
82
82
  "readme": "README.md"
83
83
  }