@thirdfy/agent-cli 0.2.65 → 0.2.67
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,19 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.67] - 2026-09-15
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `--network arc-testnet` (5042002), `arc-mainnet`, and `arc` (5042) for `chat send` and `console-mandate`. Cash rail only. Pairs with `thirdfy-mcp` **0.0.116** and Thirdfy API **3.14.40**.
|
|
12
|
+
- `provider=arc` jobs hints (`get_arc_job`, `create_arc_job`, budget, fund, submit, complete). Infer `arc` from `*_arc_job` before the generic `earn` fallback. See [`docs/providers/arc.md`](./docs/providers/arc.md).
|
|
13
|
+
|
|
14
|
+
## [0.2.66] - 2026-09-15
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Infer `bermuda` before the generic `earn` fallback. `bermuda_stealth_earn` contains `earn` and was leaking into `provider=earn` when catalog rows omit `providerId`. Matches `thirdfy-mcp` **0.0.115** Autofix.
|
|
19
|
+
|
|
7
20
|
## [0.2.65] - 2026-09-15
|
|
8
21
|
|
|
9
22
|
### Added
|
package/README.md
CHANGED
|
@@ -40,9 +40,10 @@ 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.67
|
|
44
44
|
|
|
45
|
-
-
|
|
45
|
+
- `chat send` and `console-mandate` accept `--network arc-testnet` (chain 5042002), `arc-mainnet`, and `arc` (chain 5042).
|
|
46
|
+
- `actions --provider arc` lists ERC-8183 job actions (`get_arc_job`, `create_arc_job`, budget, fund, submit, complete).
|
|
46
47
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
47
48
|
|
|
48
49
|
## Quick start
|
package/package.json
CHANGED
package/src/commands/chat.mjs
CHANGED
|
@@ -13,6 +13,9 @@ const CONSOLE_MANDATE_NETWORK_CHAIN_IDS = {
|
|
|
13
13
|
'arbitrum-mainnet': 42161,
|
|
14
14
|
'robinhood-mainnet': 4663,
|
|
15
15
|
'dogeos-testnet': 6281971,
|
|
16
|
+
'arc-testnet': 5042002,
|
|
17
|
+
'arc-mainnet': 5042,
|
|
18
|
+
'arc': 5042,
|
|
16
19
|
};
|
|
17
20
|
|
|
18
21
|
function resolveConsoleMandateChainId(flags) {
|
|
@@ -206,6 +206,8 @@ function inferActionProvider(action) {
|
|
|
206
206
|
if (key.includes('curve')) return 'curve';
|
|
207
207
|
if (key.includes('uniswap')) return 'uniswap';
|
|
208
208
|
if (key.includes('ratehopper')) return 'ratehopper';
|
|
209
|
+
if (key.includes('bermuda')) return 'bermuda';
|
|
210
|
+
if (key.includes('arc-job') || key === 'get-arc-job') return 'arc';
|
|
209
211
|
if (key.includes('earn') || key.includes('yield') || key.includes('vault')) return 'earn';
|
|
210
212
|
if (key.includes('bridge')) return 'bridge';
|
|
211
213
|
if (key.includes('dogeos-barkswap')) return 'dogeos-barkswap';
|
|
@@ -798,6 +798,27 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
798
798
|
'thirdfy-agent run --action get_bermuda_setup_status --params \'{"chainId":84532}\' --provider bermuda --json',
|
|
799
799
|
};
|
|
800
800
|
}
|
|
801
|
+
if (provider === 'arc') {
|
|
802
|
+
return {
|
|
803
|
+
provider,
|
|
804
|
+
category: 'internal',
|
|
805
|
+
canonicalReadAction: 'get_arc_job',
|
|
806
|
+
canonicalWriteAction: 'create_arc_job',
|
|
807
|
+
readActions: ['get_arc_job'],
|
|
808
|
+
orderManagementActions: [
|
|
809
|
+
'create_arc_job',
|
|
810
|
+
'set_arc_job_budget',
|
|
811
|
+
'fund_arc_job',
|
|
812
|
+
'submit_arc_job',
|
|
813
|
+
'complete_arc_job',
|
|
814
|
+
],
|
|
815
|
+
supportedChains: [5042002, 5042],
|
|
816
|
+
laneCompatibility:
|
|
817
|
+
'Arc ERC-8183 job escrow. Testnet 5042002 is live. Mainnet 5042 cash is ready. Jobs writes on 5042 need the API jobs contract. Use Privy agent_wallet. USDC pays gas. No Uniswap, Li.Fi, or Yield.xyz on Arc yet.',
|
|
818
|
+
example:
|
|
819
|
+
'thirdfy-agent run --action get_arc_job --params \'{"chainId":5042002,"jobId":1}\' --provider arc --json',
|
|
820
|
+
};
|
|
821
|
+
}
|
|
801
822
|
if (provider === 'nansen') {
|
|
802
823
|
return {
|
|
803
824
|
provider,
|
|
@@ -892,6 +913,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
892
913
|
aegis: 'deposit_aegis_lender',
|
|
893
914
|
basedbid: 'basedbid_create_lbp',
|
|
894
915
|
bermuda: 'bermuda_deposit',
|
|
916
|
+
arc: 'create_arc_job',
|
|
895
917
|
curve: 'deposit_earn_position',
|
|
896
918
|
uniswap: 'mint_uniswap_position',
|
|
897
919
|
ratehopper: 'setup_ratehopper_cash_lp',
|
|
@@ -914,6 +936,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
914
936
|
nansen: 'get_nansen_perp_screener',
|
|
915
937
|
basedbid: 'basedbid_get_tokens',
|
|
916
938
|
bermuda: 'get_bermuda_setup_status',
|
|
939
|
+
arc: 'get_arc_job',
|
|
917
940
|
cmc: 'get_cmc_quotes',
|
|
918
941
|
prediction: 'get_prediction_markets',
|
|
919
942
|
};
|