treeship 0.31.8 → 0.31.10

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 +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -59,7 +59,7 @@ What's **not** captured by the MCP/plugin path: raw argument values, raw output
59
59
  ## Where data lives
60
60
 
61
61
  - Receipts stay in `.treeship/sessions/<id>.treeship` on your machine
62
- - They leave on `treeship session report`, `treeship hub push`, with `auto_push: true` configured — or automatically at session end if you use the Claude Code plugin with a hub attached (the SessionEnd hook runs `session report`)
62
+ - They leave on `treeship session report` or `treeship hub push`, run explicitly. There is no automatic push on session close (`auto_push: true` is accepted in config but not implemented). The Claude Code plugin's SessionEnd hook seals the session locally either way, and only calls `session report` for you if you've set `TREESHIP_AUTO_PUBLISH=1`
63
63
  - Verification (`treeship verify`, `treeship package verify`) runs entirely offline and doesn't phone home. Package verification authenticates the artifacts and Merkle root; the receipt's narrative fields are not signed, and the verifier says so explicitly
64
64
 
65
65
  ## Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "treeship",
3
- "version": "0.31.8",
3
+ "version": "0.31.10",
4
4
  "description": "Portable trust receipts for agent workflows",
5
5
  "bin": {
6
6
  "treeship": "./bin/treeship.js"
@@ -19,10 +19,10 @@
19
19
  "linux"
20
20
  ],
21
21
  "optionalDependencies": {
22
- "@treeship/cli-linux-x64": "0.31.8",
23
- "@treeship/cli-linux-arm64": "0.31.8",
24
- "@treeship/cli-darwin-arm64": "0.31.8",
25
- "@treeship/cli-darwin-x64": "0.31.8"
22
+ "@treeship/cli-linux-x64": "0.31.10",
23
+ "@treeship/cli-linux-arm64": "0.31.10",
24
+ "@treeship/cli-darwin-arm64": "0.31.10",
25
+ "@treeship/cli-darwin-x64": "0.31.10"
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "repository": {