@thirdfy/agent-cli 0.1.19 → 0.1.20
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 +9 -0
- package/README.md +7 -1
- package/bin/thirdfy-agent.mjs +1 -1
- package/package.json +1 -1
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.20] - 2026-04-25
|
|
8
|
+
|
|
9
|
+
**npm:** [`@thirdfy/agent-cli@0.1.20`](https://www.npmjs.com/package/@thirdfy/agent-cli/v/0.1.20)
|
|
10
|
+
**Git tag:** `v0.1.20`
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Bootstrap lane contract docs/help:** `bootstrap complete` now documents `--lane self|hybrid|thirdfy|agent_wallet` and clarifies that `agent_wallet` bootstrap follows self-lane bootstrap policy semantics.
|
|
15
|
+
|
|
7
16
|
## [0.1.18] - 2026-04-21
|
|
8
17
|
|
|
9
18
|
**npm:** [`@thirdfy/agent-cli@0.1.18`](https://www.npmjs.com/package/@thirdfy/agent-cli/v/0.1.18)
|
package/README.md
CHANGED
|
@@ -412,6 +412,12 @@ Version history and user-facing notes: [CHANGELOG.md](./CHANGELOG.md) (for examp
|
|
|
412
412
|
```bash
|
|
413
413
|
npm version patch
|
|
414
414
|
npm publish --access public
|
|
415
|
+
git push origin main --follow-tags
|
|
415
416
|
```
|
|
416
417
|
|
|
417
|
-
|
|
418
|
+
Release contract:
|
|
419
|
+
|
|
420
|
+
- Keep `package.json` version and `CHANGELOG.md` synchronized in the release PR.
|
|
421
|
+
- The git tag must be `vX.Y.Z` and match `package.json` exactly.
|
|
422
|
+
- Push the matching tag so the [Release workflow](.github/workflows/release.yml) creates or aligns the GitHub release entry.
|
|
423
|
+
- If npm already contains that version, the workflow skips republishing and still creates/aligns the GitHub release when triggered by the tag.
|
package/bin/thirdfy-agent.mjs
CHANGED
|
@@ -3500,7 +3500,7 @@ Core commands:
|
|
|
3500
3500
|
thirdfy-agent agent auth challenge --agent-key <key> [--wallet-address <addr>] [--chain-id <id>] [--json]
|
|
3501
3501
|
thirdfy-agent agent auth verify --challenge-id <id> --signature <hex> --agent-key <key> [--wallet-address <addr>] [--json]
|
|
3502
3502
|
thirdfy-agent bootstrap begin --agent-key <key> [--wallet-address <addr>] [--chain-id <id>] [--json]
|
|
3503
|
-
thirdfy-agent bootstrap complete --agent-key <key> [--proof-type session_token|wallet_signature] [--lane self|hybrid|thirdfy] [--owner-session-token <token> | --auth-token <token> | --challenge-id <id> --signature <hex>] [--name <agent-name>] [--mcp-base <url>] [--json]
|
|
3503
|
+
thirdfy-agent bootstrap complete --agent-key <key> [--proof-type session_token|wallet_signature] [--lane self|hybrid|thirdfy|agent_wallet] [--owner-session-token <token> | --auth-token <token> | --challenge-id <id> --signature <hex>] [--name <agent-name>] [--mcp-base <url>] [--json]
|
|
3504
3504
|
thirdfy-agent onboarding begin ... # alias of bootstrap begin
|
|
3505
3505
|
thirdfy-agent onboarding complete ... # alias of bootstrap complete
|
|
3506
3506
|
thirdfy-agent developer bootstrap --agent-key <key> --name <name> [--owner-session-token <token> | --challenge-id <id> --signature <hex>] [--json]
|