attest-it 0.8.0 → 0.9.1

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 +17 -13
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -26,16 +26,19 @@ yarn add attest-it
26
26
  ## Quick Start
27
27
 
28
28
  ```bash
29
- # Initialize configuration
29
+ # Create your signing identity
30
+ npx attest-it identity create
31
+
32
+ # Initialize project configuration
30
33
  npx attest-it init
31
34
 
32
- # Generate signing keys
33
- npx attest-it keygen
35
+ # Add yourself to the project team
36
+ npx attest-it team join
34
37
 
35
- # Run tests and create attestation
38
+ # Run tests and create seal
36
39
  npx attest-it run --suite my-suite
37
40
 
38
- # Verify attestations (in CI)
41
+ # Verify seals (in CI)
39
42
  npx attest-it verify
40
43
  ```
41
44
 
@@ -48,14 +51,15 @@ This umbrella package includes:
48
51
 
49
52
  ### CLI Commands
50
53
 
51
- | Command | Description |
52
- | -------- | -------------------------------- |
53
- | `init` | Initialize configuration |
54
- | `keygen` | Generate signing keypair |
55
- | `status` | Show attestation status |
56
- | `run` | Run tests and create attestation |
57
- | `verify` | Verify attestations (for CI) |
58
- | `prune` | Remove stale attestations |
54
+ | Command | Description |
55
+ | -------- | ------------------------- |
56
+ | `init` | Initialize configuration |
57
+ | `status` | Show seal status |
58
+ | `run` | Run tests and create seal |
59
+ | `verify` | Verify seals (for CI) |
60
+ | `prune` | Remove stale seals |
61
+
62
+ For identity and team management commands, see the [main README](../../README.md#cli-commands).
59
63
 
60
64
  ### Programmatic API
61
65
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "attest-it",
3
3
  "description": "Human-gated test attestation system with cryptographic signing",
4
- "version": "0.8.0",
4
+ "version": "0.9.1",
5
5
  "author": "Mike North <michael.l.north@gmail.com>",
6
6
  "bin": {
7
7
  "attest": "./dist/bin/attest-it.js",
8
8
  "attest-it": "./dist/bin/attest-it.js"
9
9
  },
10
10
  "dependencies": {
11
- "@attest-it/cli": "0.8.0",
12
- "@attest-it/core": "0.8.0"
11
+ "@attest-it/cli": "0.9.1",
12
+ "@attest-it/core": "0.9.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@microsoft/api-extractor": "^7.55.2",