@thirdfy/agent-cli 0.1.12 → 0.1.13

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/CHANGELOG.md CHANGED
@@ -4,6 +4,15 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.1.13] - 2026-04-19
8
+
9
+ **npm:** [`@thirdfy/agent-cli@0.1.13`](https://www.npmjs.com/package/@thirdfy/agent-cli/v/0.1.13)
10
+ **Git tag:** `v0.1.13`
11
+
12
+ ### Changed
13
+
14
+ - **README and onboarding docs refresh:** Updated public README guidance to reflect latest bootstrap/onboarding command surface (`bootstrap begin/complete` plus aliases), session-proof-first issuance behavior, and current release references.
15
+
7
16
  ## [0.1.11] - 2026-04-16
8
17
 
9
18
  **npm:** [`@thirdfy/agent-cli@0.1.11`](https://www.npmjs.com/package/@thirdfy/agent-cli/v/0.1.11)
package/README.md CHANGED
@@ -38,12 +38,12 @@ Run without global install:
38
38
  npx @thirdfy/agent-cli --help
39
39
  ```
40
40
 
41
- ## What's new in 0.1.8
41
+ ## What's new in 0.1.12
42
42
 
43
- - Managed custodial lifecycle parity validation is now first-class in CLI E2E/certification.
44
- - `doctor self` runs as a local diagnostic command without capabilities negotiation.
45
- - Self-exec effect-check fallback payloads are hardened for deterministic automation parsing.
46
- - Managed wallet aliases (`managed wallet init/grant`) are wired directly to custodial delegation handlers.
43
+ - Added Model D onboarding commands: `bootstrap begin` and `bootstrap complete`.
44
+ - Added `onboarding begin` and `onboarding complete` aliases for clearer operator flows.
45
+ - Aligned bootstrap completion to session-proof issuance (`session_token`), with wallet challenge/signature supported as an exchange step into session proof.
46
+ - Hardened bootstrap path behavior for safer timeout and one-time challenge handling.
47
47
 
48
48
  ## Quick start
49
49
 
@@ -112,6 +112,21 @@ Use the returned session token:
112
112
  thirdfy-agent agent register --owner-session-token "$THIRDFY_OWNER_SESSION_TOKEN" --agent-key "0xYOUR_AGENT_KEY" --name "my-agent" --json
113
113
  ```
114
114
 
115
+ ### Bootstrap onboarding (Model D)
116
+
117
+ ```bash
118
+ # Start wallet challenge flow
119
+ thirdfy-agent bootstrap begin --agent-key "0xYOUR_AGENT_KEY" --json
120
+
121
+ # Complete bootstrap with session proof (recommended)
122
+ thirdfy-agent bootstrap complete --agent-key "0xYOUR_AGENT_KEY" --owner-session-token "$THIRDFY_OWNER_SESSION_TOKEN" --lane self --json
123
+
124
+ # Or use challenge/signature as exchange step to obtain session proof first
125
+ thirdfy-agent bootstrap complete --agent-key "0xYOUR_AGENT_KEY" --challenge-id "<challengeId>" --signature "0x..." --lane self --json
126
+ ```
127
+
128
+ `bootstrap complete` is session-proof-first in the current deployment. Direct `wallet_signature` proof is not accepted as a final issuance proof.
129
+
115
130
  ### Idempotency behavior (`run`)
116
131
 
117
132
  - `run` auto-generates `idempotencyKey` by default when not provided.
@@ -240,7 +255,7 @@ Provider and venue guides are kept outside `README` so this page stays stable as
240
255
  - Discovery: `catalogs list`, `actions`
241
256
  - Execution: `preflight`, `run`, `intent-status`, `jeff preflight`, `jeff trade`, `jeff status`
242
257
  - Profiles: `profile init`, `profile use`, `profile show`, `whoami`
243
- - Onboarding: `agent auth challenge`, `agent auth verify`, `agent register`, `agent key rotate`, `agent key revoke`
258
+ - Onboarding: `bootstrap begin`, `bootstrap complete`, `onboarding begin`, `onboarding complete`, `agent auth challenge`, `agent auth verify`, `agent register`, `agent key rotate`, `agent key revoke`, `developer bootstrap`
244
259
  - Governance readiness: `delegation create`, `delegation activate`, `delegation status`, `credentials upsert`, `credentials status`
245
260
  - Delegation operations: `delegation show`, `delegation inspect`, `delegation revoke`
246
261
  - Delegation execution helpers: `delegation balance`, `delegation redeem`
@@ -357,11 +372,11 @@ npm run e2e:managed:delegation:parity
357
372
 
358
373
  ## Release
359
374
 
360
- Version history and user-facing notes: [CHANGELOG.md](./CHANGELOG.md) (for example [0.1.7](https://github.com/thirdfy/agent-cli/releases/tag/v0.1.7) — login/config UX, custodial delegation helpers, swap and config hardening).
375
+ Version history and user-facing notes: [CHANGELOG.md](./CHANGELOG.md) (for example [0.1.12](https://github.com/thirdfy/agent-cli/releases/tag/v0.1.12) — bootstrap onboarding commands and session-proof alignment).
361
376
 
362
377
  ```bash
363
378
  npm version patch
364
379
  npm publish --access public
365
380
  ```
366
381
 
367
- After publishing, push the matching tag (for example `v0.1.7`) so the [Release workflow](.github/workflows/release.yml) can create a GitHub release. If the package version is already on npm, the workflow skips republishing and still creates the release when triggered by a tag.
382
+ After publishing, push the matching tag (for example `v0.1.12`) so the [Release workflow](.github/workflows/release.yml) can create a GitHub release. If the package version is already on npm, the workflow skips republishing and still creates the release when triggered by a tag.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {