@archpilotlabs/archpilot 0.0.4 → 0.0.6
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 +53 -2
- package/dist/archpilot-cli.js +2431 -1120
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
<h1 align="center">ArchPilot</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
|
|
8
|
+
Continuous architecture governance for engineering teams
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
Validate • Enforce • Measure
|
|
12
|
+
Validate • Enforce • Measure architecture continuously
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
ArchPilot is a CLI that validates your repository against architecture rules and helps you keep your system **visible, enforceable, and measurable** as it evolves.
|
|
@@ -40,6 +40,43 @@ No runtime agents. No external services. Fully deterministic and local-first.
|
|
|
40
40
|
|
|
41
41
|
---
|
|
42
42
|
|
|
43
|
+
## Local-first. Cloud-powered.
|
|
44
|
+
|
|
45
|
+
Start locally in minutes:
|
|
46
|
+
|
|
47
|
+
* Offline validation
|
|
48
|
+
* Local reports and artifacts
|
|
49
|
+
* PR review markdown
|
|
50
|
+
* CI validation
|
|
51
|
+
* Deterministic architecture checks
|
|
52
|
+
|
|
53
|
+
Then connect to **ArchPilot Cloud** to unlock:
|
|
54
|
+
|
|
55
|
+
* Repository history and trends
|
|
56
|
+
* Findings dashboards
|
|
57
|
+
* Team ownership and governance workflows
|
|
58
|
+
* Shared policies and exceptions
|
|
59
|
+
* Organization-wide architecture visibility
|
|
60
|
+
* Continuous governance across repositories
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
archpilot cloud status
|
|
64
|
+
archpilot cloud connect
|
|
65
|
+
archpilot cloud disconnect
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Cloud setup only asks for your API token. ArchPilot uses the canonical production API automatically:
|
|
69
|
+
|
|
70
|
+
`https://api.archpilot.org`
|
|
71
|
+
|
|
72
|
+
For local development, set `ARCHPILOT_CLOUD_URL=http://localhost:4000` before running Cloud commands. CLI `--server` remains available for one-off debugging and automated tests.
|
|
73
|
+
|
|
74
|
+
Learn more:
|
|
75
|
+
|
|
76
|
+
https://archpilot.org/docs
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
43
80
|
## 📦 Installation
|
|
44
81
|
|
|
45
82
|
Install globally:
|
|
@@ -145,11 +182,25 @@ archpilot validate
|
|
|
145
182
|
archpilot validate --ci
|
|
146
183
|
archpilot fix
|
|
147
184
|
archpilot impact <file>
|
|
185
|
+
archpilot map
|
|
186
|
+
archpilot baseline check
|
|
148
187
|
archpilot review pr
|
|
188
|
+
archpilot review generate
|
|
189
|
+
archpilot report
|
|
190
|
+
archpilot cloud status
|
|
191
|
+
archpilot cloud connect
|
|
192
|
+
archpilot cloud disconnect
|
|
149
193
|
archpilot diagrams generate
|
|
194
|
+
archpilot policy init
|
|
195
|
+
archpilot exception init
|
|
196
|
+
archpilot safety init
|
|
197
|
+
archpilot bootstrap --with-contracts
|
|
198
|
+
archpilot contracts generate
|
|
150
199
|
archpilot governance upload
|
|
151
200
|
```
|
|
152
201
|
|
|
202
|
+
`archpilot upload` is an intentional shorthand alias for `archpilot governance upload`.
|
|
203
|
+
|
|
153
204
|
---
|
|
154
205
|
|
|
155
206
|
## 🧩 Core Capabilities
|