archive-labs 1.0.3 → 1.0.5
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 +38 -15
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Archive Labs CLI
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="
|
|
4
|
+
<img src="https://cdn.jsdelivr.net/npm/archive-labs/logo.png" alt="Archive Labs" width="96" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
-
Archive Labs CLI is
|
|
7
|
+
Archive Labs CLI is a terminal client for Archive. It signs in, reads repository state, runs sync and checks, and supports text or JSON output.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
@@ -19,7 +19,41 @@ No global install:
|
|
|
19
19
|
npx archive-labs
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Commands
|
|
23
|
+
|
|
24
|
+
### Auth and setup
|
|
25
|
+
|
|
26
|
+
- `archive init` Set the API and app targets for this workspace.
|
|
27
|
+
- `archive login` Sign in and store credentials for later commands.
|
|
28
|
+
- `archive logout` Remove stored credentials from this machine.
|
|
29
|
+
|
|
30
|
+
### Repository checks
|
|
31
|
+
|
|
32
|
+
- `archive status` Show repository health, readiness, and missing signals.
|
|
33
|
+
- `archive sync` Refresh the repository index and derived metadata.
|
|
34
|
+
- `archive check` Run the default check for the current context.
|
|
35
|
+
- `archive check pr <number>` Review a pull request for merge readiness, impact, ownership, and blockers.
|
|
36
|
+
- `archive check diff` Review the current working tree before commit or push.
|
|
37
|
+
- `archive events` Review recent repository events.
|
|
38
|
+
- `archive recent` Show recently used commands.
|
|
39
|
+
|
|
40
|
+
### Impact and release
|
|
41
|
+
|
|
42
|
+
- `archive impact file <path>` Show what a file change affects across services and downstream paths.
|
|
43
|
+
- `archive impact diff` Summarize the impact of the current working tree.
|
|
44
|
+
- `archive release summarize <tag>` Summarize what is included in a release tag.
|
|
45
|
+
- `archive release risk <tag>` Review release risk before shipping.
|
|
46
|
+
- `archive ask <question>` Query the codebase in natural language.
|
|
47
|
+
- `archive why <path>` Show file or folder context from history and evidence.
|
|
48
|
+
|
|
49
|
+
### Utilities
|
|
50
|
+
|
|
51
|
+
- `archive doctor` Inspect local config, auth, and runtime state.
|
|
52
|
+
- `archive ping` Check API connectivity.
|
|
53
|
+
- `archive help` Show the command list and usage.
|
|
54
|
+
- `archive version` Print the installed CLI version.
|
|
55
|
+
|
|
56
|
+
Example usage:
|
|
23
57
|
|
|
24
58
|
```bash
|
|
25
59
|
archive login
|
|
@@ -30,20 +64,9 @@ archive impact diff --json
|
|
|
30
64
|
archive release risk v1.2.0
|
|
31
65
|
```
|
|
32
66
|
|
|
33
|
-
## Common Commands
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
archive init
|
|
37
|
-
archive recent
|
|
38
|
-
archive doctor
|
|
39
|
-
archive ping
|
|
40
|
-
archive help
|
|
41
|
-
archive version
|
|
42
|
-
```
|
|
43
|
-
|
|
44
67
|
## Output
|
|
45
68
|
|
|
46
|
-
Use `--json` when you need machine-readable output.
|
|
69
|
+
Use `--json` when you need machine-readable output. Text output stays short and terminal-friendly.
|
|
47
70
|
|
|
48
71
|
## Config
|
|
49
72
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "archive-labs",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Terminal
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Terminal CLI for Archive that manages login, repository status, sync, checks, impact analysis, and release risk.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"preferGlobal": true,
|
|
7
7
|
"packageManager": "pnpm@10.33.0",
|