archive-labs 1.0.3 → 1.0.4

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 +22 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  <img src="./logo.png" alt="Archive Labs" width="96" />
5
5
  </p>
6
6
 
7
- Archive Labs CLI is the terminal client for Archive.
7
+ Archive Labs CLI is a terminal client for Archive. It signs in, inspects repository state, runs sync and readiness checks, and returns text or JSON output for scripts.
8
8
 
9
9
  ## Install
10
10
 
@@ -19,7 +19,9 @@ No global install:
19
19
  npx archive-labs
20
20
  ```
21
21
 
22
- ## Use
22
+ ## Commands
23
+
24
+ Use these commands for common tasks:
23
25
 
24
26
  ```bash
25
27
  archive login
@@ -30,20 +32,30 @@ archive impact diff --json
30
32
  archive release risk v1.2.0
31
33
  ```
32
34
 
33
- ## Common Commands
35
+ Command summary:
34
36
 
35
37
  ```bash
36
- archive init
37
- archive recent
38
- archive doctor
39
- archive ping
40
- archive help
41
- archive version
38
+ archive init Set default API and app targets for the workspace.
39
+ archive login Sign in and store credentials for later commands.
40
+ archive status Show repository health, readiness, and missing signals.
41
+ archive sync Refresh the repository index and derived metadata.
42
+ archive check Run the default readiness or local change check.
43
+ archive check pr <number> Evaluate a pull request for merge readiness.
44
+ archive check diff Evaluate the current working tree before commit or push.
45
+ archive impact file <path> Show what a file change affects.
46
+ archive impact diff Summarize the impact of the current working tree.
47
+ archive release summarize <tag> Summarize a release tag.
48
+ archive release risk <tag> Review release risk before shipping.
49
+ archive recent Show recently used CLI commands.
50
+ archive doctor Inspect local config, auth, and runtime state.
51
+ archive ping Check API connectivity.
52
+ archive help Show the command list.
53
+ archive version Print the installed CLI version.
42
54
  ```
43
55
 
44
56
  ## Output
45
57
 
46
- Use `--json` when you need machine-readable output.
58
+ Use `--json` when you need machine-readable output. Text output is kept short and terminal-friendly.
47
59
 
48
60
  ## Config
49
61
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "archive-labs",
3
- "version": "1.0.3",
4
- "description": "Terminal client for Archive Labs",
3
+ "version": "1.0.4",
4
+ "description": "Terminal client for Archive that handles login, repo status, sync, checks, impact, and release risk.",
5
5
  "license": "Apache-2.0",
6
6
  "preferGlobal": true,
7
7
  "packageManager": "pnpm@10.33.0",