@thirdfy/agent-cli 0.2.25 → 0.2.28
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 +23 -1
- package/README.md +2 -11
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.28] - 2026-07-11
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- `e2e:base:simulate` Robinhood tier uses `--run-mode agent_wallet` so chain 4663 compatibility passes (Robinhood advertises `self` + `agent_wallet` only).
|
|
12
|
+
|
|
13
|
+
## [0.2.27] - 2026-07-11
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Robinhood partner validator moved to `scripts/e2e/chains/robinhood/delegated-preflight.mjs` with shared `delegation-lane` helper and Robinhood constants.
|
|
18
|
+
- `e2e:base:simulate` includes `actions --chain-id 4663` tier; `docs/partners/robinhood-validation.md` documents CLI vs API validation split.
|
|
19
|
+
- npm alias `validate:robinhood:delegated-preflight`; legacy `validate:robinhood-agent-wallet-preflight` preserved.
|
|
20
|
+
|
|
21
|
+
## [0.2.26] - 2026-07-11
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Robinhood live validator uses Privy subscriber delegation (`THIRDFY_USER_DID` + `managed_wallet_server`) and Robinhood-native WETH/USDG addresses instead of solo `did:wallet:<agentKey>`.
|
|
26
|
+
- Validator requires explicit `THIRDFY_USER_DID` or `ROBINHOOD_SMOKE_USER_DID` (no `~/.thirdfy/config.json` fallback) so partner checks always exercise the delegation lane.
|
|
27
|
+
- Validator probes `GET /api/v1/agent/execution-wallet` and rejects agent-owner bypass when `canonicalUserDid` rewrites to `did:wallet:<agentKey>`.
|
|
28
|
+
|
|
7
29
|
## [0.2.25] - 2026-07-11
|
|
8
30
|
|
|
9
31
|
### Fixed
|
|
@@ -24,7 +46,7 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
24
46
|
|
|
25
47
|
### Added
|
|
26
48
|
|
|
27
|
-
- `npm run validate:robinhood-agent-wallet-preflight` for live API
|
|
49
|
+
- `npm run validate:robinhood-agent-wallet-preflight` for live API delegated agent_wallet preflight on chain 4663 (requires `THIRDFY_USER_DID` + active delegation on 4663).
|
|
28
50
|
|
|
29
51
|
## [0.2.22] - 2026-07-10
|
|
30
52
|
|
package/README.md
CHANGED
|
@@ -40,18 +40,9 @@ Run without global install:
|
|
|
40
40
|
npx @thirdfy/agent-cli --help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
## What's new in v0.2.
|
|
43
|
+
## What's new in v0.2.28
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
## What's new in v0.2.24
|
|
48
|
-
|
|
49
|
-
- `agent_wallet` read-only execute-intent fallback keeps solo `did:wallet:<agentKey>` identity (matches preflight and primary execute path).
|
|
50
|
-
|
|
51
|
-
## What's new in v0.2.23
|
|
52
|
-
|
|
53
|
-
- Solo `agent_wallet` preflight uses `did:wallet:<agentKey>` so Robinhood and direct agent lanes skip subscriber delegation (`SUBSCRIPTION_NOT_FOUND` fix).
|
|
54
|
-
- `npm run validate:robinhood-agent-wallet-preflight` for live chain 4663 execution-wallet checks.
|
|
45
|
+
- `e2e:base:simulate` Robinhood tier passes chain 4663 compatibility by using `--run-mode agent_wallet`.
|
|
55
46
|
|
|
56
47
|
Older versions: see [CHANGELOG.md](./CHANGELOG.md) and [GitHub Releases](https://github.com/thirdfy/agent-cli/releases).
|
|
57
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thirdfy/agent-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"smoke:cli": "node ./bin/thirdfy-agent.mjs --help && node ./bin/thirdfy-agent.mjs -V && node ./bin/thirdfy-agent.mjs --version --json",
|
|
48
48
|
"validate:release-preflight": "npm run lint && npm run validate:public-docs && npm run validate:cli-contract-schemas && npm run validate:provider-parity && npm run validate:cli-manifest-handlers && npm run validate:runtime-boundaries && npm run test && npm run validate:npm-pack && npm run smoke:cli",
|
|
49
49
|
"validate:live-api-capabilities": "node ./scripts/validate-live-api-capabilities.mjs",
|
|
50
|
-
"validate:robinhood-
|
|
51
|
-
"validate:robinhood-agent-wallet-preflight": "node ./scripts/
|
|
50
|
+
"validate:robinhood:delegated-preflight": "node ./scripts/e2e/chains/robinhood/delegated-preflight.mjs",
|
|
51
|
+
"validate:robinhood-agent-wallet-preflight": "node ./scripts/e2e/chains/robinhood/delegated-preflight.mjs",
|
|
52
52
|
"prepublishOnly": "npm run validate:release-preflight"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|