@atrib/cli 0.1.5 → 0.1.7

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 +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # `@atrib/cli`
2
2
 
3
- **The atrib operator CLI. Generate Ed25519 keypairs, manage them in macOS Keychain, and publish identity claims to the atrib directory (spec §6).**
3
+ **The atrib operator CLI. Generate Ed25519 keypairs, manage them in macOS Keychain, and publish identity claims to the atrib directory (spec [§6](../../atrib-spec.md#6-key-directory)).**
4
4
 
5
5
  ```bash
6
6
  npx @atrib/cli keygen --keychain
@@ -42,7 +42,7 @@ Remove a Keychain entry. Operator-confirmable destructive operation.
42
42
 
43
43
  ### `publish-claim --keychain`
44
44
 
45
- Publish an `IdentityClaim` to the atrib directory (spec §6.1), optionally with a §6.7 capability envelope. The seed is read from Keychain, the claim is canonicalized + signed, and POST'd to `--directory URL` (defaults to `https://directory.atrib.dev/v6`).
45
+ Publish an `IdentityClaim` to the atrib directory (spec [§6.1](../../atrib-spec.md#61-identity-claim-format)), optionally with a [§6.7](../../atrib-spec.md#67-capability-declarations) capability envelope. The seed is read from Keychain, the claim is canonicalized + signed, and POST'd to `--directory URL` (defaults to `https://directory.atrib.dev/v6`).
46
46
 
47
47
  ```bash
48
48
  atrib publish-claim --keychain \
@@ -61,7 +61,7 @@ Capability envelope fields are optional; an empty envelope means "any tool, any
61
61
 
62
62
  ### `revoke --keychain`
63
63
 
64
- Revoke a key per spec §1.9 (key rotation and revocation). Emits a `key_revocation` record to the log endpoint, signed by the key being retired.
64
+ Revoke a key per spec [§1.9](../../atrib-spec.md#19-key-rotation-and-revocation) (key rotation and revocation). Emits a `key_revocation` record to the log endpoint, signed by the key being retired.
65
65
 
66
66
  ## macOS Keychain integration
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atrib/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "atrib": "./dist/cli.js"
@@ -21,7 +21,7 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "@atrib/directory": "0.1.2",
24
- "@atrib/mcp": "0.4.0"
24
+ "@atrib/mcp": "0.6.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.19.17",