handprint-sh 0.2.0
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/LICENSE +21 -0
- package/README.md +59 -0
- package/dist/bin/handprint.js +5522 -0
- package/package.json +37 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Cameron Whiteside
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# handprint-sh
|
|
2
|
+
|
|
3
|
+
Human decision provenance for the age of AI.
|
|
4
|
+
|
|
5
|
+
handprint captures the decisions you and your AI make — what you chose, why, and what you ruled out — and anchors them in a cryptographically signed, tamper-evident chain. Your handprint stays with your work.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm i -g handprint-sh
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Initialize your global identity (one time):
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
handprint init --global
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Extract decisions from AI transcripts in the current project:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
handprint grab
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Publish handprints to the hub:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
handprint push
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
See your decision chain:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
handprint log
|
|
37
|
+
handprint verify
|
|
38
|
+
handprint status
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Commands
|
|
42
|
+
|
|
43
|
+
| Command | Description |
|
|
44
|
+
|---------|-------------|
|
|
45
|
+
| `handprint init [--global]` | Initialize global identity or project |
|
|
46
|
+
| `handprint grab [--dry-run]` | Extract decisions from AI transcripts |
|
|
47
|
+
| `handprint push` | Publish handprints to the hub |
|
|
48
|
+
| `handprint log` | List local handprints |
|
|
49
|
+
| `handprint show <ref>` | Show a handprint by hash or prefix |
|
|
50
|
+
| `handprint verify` | Verify chain integrity and signatures |
|
|
51
|
+
| `handprint status` | Chain state, auth status, key fingerprint |
|
|
52
|
+
| `handprint keys add --label <name>` | Register this device's key |
|
|
53
|
+
| `handprint keys list` | Show this device's key info |
|
|
54
|
+
| `handprint keys rotate` | Generate a new signing key |
|
|
55
|
+
| `handprint config show` | Show configuration |
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
MIT © Cameron Whiteside 2026
|