@thirdfy/agent-cli 0.2.55 → 0.2.57
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 +12 -0
- package/README.md +2 -4
- package/package.json +1 -1
- package/src/core/actionTimeouts.mjs +6 -0
- package/src/core/readOnlyActions.mjs +1 -0
- package/src/runtime/providerHints.mjs +59 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.57] - 2026-09-04
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `basedbid` provider hints and `docs/providers/basedbid.md`. `basedbid_get_tokens` is in `READ_ONLY_EXACT`. LBP and flash create are writes on Base 8453, Ethereum 1, and Robinhood Chain 4663. Buy and sell are writes on Base. Board, fee claim, and hook writes stay fail-closed. Pairs with `thirdfy-mcp` **0.0.105**.
|
|
12
|
+
|
|
13
|
+
## [0.2.56] - 2026-09-03
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- `cmc` provider hints and `docs/providers/cmc.md` for nineteen read-only `get_cmc_*` actions (cheap reads + composed Skill Hub briefs). Long-running skill actions use 180s timeout. Pairs with Thirdfy API **3.14.18** and `thirdfy-mcp` **0.0.104**.
|
|
18
|
+
|
|
7
19
|
## [0.2.55] - 2026-08-28
|
|
8
20
|
|
|
9
21
|
### Changed
|
package/README.md
CHANGED
|
@@ -40,13 +40,11 @@ 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.57
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
- See [`docs/providers/nansen.md`](./docs/providers/nansen.md) for discovery examples.
|
|
45
|
+
- `basedbid` provider hints and [`docs/providers/basedbid.md`](./docs/providers/basedbid.md). `basedbid_get_tokens` is read-only. LBP and flash create are writes on Base, Ethereum, and Robinhood Chain. Buy and sell are writes on Base. Board, fee claim, and hook writes stay fail-closed.
|
|
47
46
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
48
47
|
|
|
49
|
-
|
|
50
48
|
## Quick start
|
|
51
49
|
|
|
52
50
|
Hosted solo agents use profile `personal` and `--run-mode agent_wallet` (Path A). Fund the managed **execution wallet**, complete venue trading setup from the catalog when needed, then preflight and run. MetaMask Gator / `delegation *` is not required on this path.
|
package/package.json
CHANGED
|
@@ -7,6 +7,12 @@ const LONG_RUNNING_ACTIONS = new Set([
|
|
|
7
7
|
'deposit_earn_position',
|
|
8
8
|
'withdraw_earn_position',
|
|
9
9
|
'claim_earn_rewards',
|
|
10
|
+
'get_cmc_skill',
|
|
11
|
+
'get_cmc_daily_market_overview',
|
|
12
|
+
'get_cmc_btc_etf_demand',
|
|
13
|
+
'get_cmc_perp_contract_analysis',
|
|
14
|
+
'get_cmc_market_regime',
|
|
15
|
+
'get_cmc_derivatives_crowding',
|
|
10
16
|
]);
|
|
11
17
|
|
|
12
18
|
function normalizeActionId(action) {
|
|
@@ -13,6 +13,7 @@ const READ_ONLY_EXACT = new Set([
|
|
|
13
13
|
'dogeos_barkswap_get_quote',
|
|
14
14
|
'dogeos_laika_read_contract',
|
|
15
15
|
'dogeos_laika_token_state',
|
|
16
|
+
'basedbid_get_tokens',
|
|
16
17
|
'prepare_polymarket_onboarding',
|
|
17
18
|
'create_polymarket_bridge_deposit',
|
|
18
19
|
'create_polymarket_bridge_withdraw',
|
|
@@ -594,6 +594,29 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
594
594
|
'thirdfy-agent run --action get_gmgn_kol_trades --params \'{"chain":"sol","limit":5}\' --provider gmgn --json',
|
|
595
595
|
};
|
|
596
596
|
}
|
|
597
|
+
if (provider === 'basedbid') {
|
|
598
|
+
return {
|
|
599
|
+
provider,
|
|
600
|
+
category: 'spot',
|
|
601
|
+
canonicalReadAction: 'basedbid_get_tokens',
|
|
602
|
+
canonicalWriteAction: 'basedbid_create_lbp',
|
|
603
|
+
readActions: ['basedbid_get_tokens'],
|
|
604
|
+
orderManagementActions: [
|
|
605
|
+
'basedbid_create_lbp',
|
|
606
|
+
'basedbid_create_flash',
|
|
607
|
+
'basedbid_create_board',
|
|
608
|
+
'basedbid_buy',
|
|
609
|
+
'basedbid_sell',
|
|
610
|
+
'basedbid_claim_fees',
|
|
611
|
+
'basedbid_update_hook',
|
|
612
|
+
],
|
|
613
|
+
supportedChains: [8453, 1, 4663],
|
|
614
|
+
laneCompatibility:
|
|
615
|
+
'basedbid launchpad. Discovery is read-only. LBP and flash create are write-enabled on 8453, 1, and 4663. Buy and sell are write-enabled on 8453. Board, fee claim, and hook writes stay fail-closed. Console uses the existing preview-then-confirm path. No extra venue credential.',
|
|
616
|
+
example:
|
|
617
|
+
'thirdfy-agent run --action basedbid_get_tokens --params \'{"chainId":8453,"limit":10}\' --provider basedbid --json',
|
|
618
|
+
};
|
|
619
|
+
}
|
|
597
620
|
if (provider === 'nansen') {
|
|
598
621
|
return {
|
|
599
622
|
provider,
|
|
@@ -617,6 +640,39 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
617
640
|
'thirdfy-agent run --action get_nansen_perp_screener --params \'{"date":{"from":"2026-08-27T00:00:00.000Z","to":"2026-08-28T00:00:00.000Z"},"pagination":{"page":1,"per_page":5}}\' --provider nansen --json',
|
|
618
641
|
};
|
|
619
642
|
}
|
|
643
|
+
if (provider === 'cmc') {
|
|
644
|
+
return {
|
|
645
|
+
provider,
|
|
646
|
+
category: 'research_intel',
|
|
647
|
+
canonicalReadAction: 'get_cmc_quotes',
|
|
648
|
+
readActions: [
|
|
649
|
+
'get_cmc_search',
|
|
650
|
+
'get_cmc_quotes',
|
|
651
|
+
'get_cmc_info',
|
|
652
|
+
'get_cmc_global_metrics',
|
|
653
|
+
'get_cmc_fear_greed',
|
|
654
|
+
'get_cmc_metrics',
|
|
655
|
+
'get_cmc_technicals',
|
|
656
|
+
'get_cmc_marketcap_technicals',
|
|
657
|
+
'get_cmc_derivatives_metrics',
|
|
658
|
+
'get_cmc_news',
|
|
659
|
+
'get_cmc_search_info',
|
|
660
|
+
'get_cmc_narratives',
|
|
661
|
+
'get_cmc_upcoming_events',
|
|
662
|
+
'get_cmc_skill',
|
|
663
|
+
'get_cmc_daily_market_overview',
|
|
664
|
+
'get_cmc_btc_etf_demand',
|
|
665
|
+
'get_cmc_perp_contract_analysis',
|
|
666
|
+
'get_cmc_market_regime',
|
|
667
|
+
'get_cmc_derivatives_crowding',
|
|
668
|
+
],
|
|
669
|
+
supportedChains: [],
|
|
670
|
+
laneCompatibility:
|
|
671
|
+
'CoinMarketCap quotes, global metrics, and composed Skill Hub briefs via Thirdfy API. Skill actions may take up to 180s. Composed briefs cost more than cheap reads.',
|
|
672
|
+
example:
|
|
673
|
+
'thirdfy-agent run --action get_cmc_quotes --params \'{"symbol":"BTC","convert":"USD"}\' --provider cmc --json',
|
|
674
|
+
};
|
|
675
|
+
}
|
|
620
676
|
if (provider === 'market-data') {
|
|
621
677
|
return {
|
|
622
678
|
provider,
|
|
@@ -653,6 +709,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
653
709
|
morpho: 'deposit_earn_position',
|
|
654
710
|
aave: 'deposit_earn_position',
|
|
655
711
|
aegis: 'deposit_aegis_lender',
|
|
712
|
+
basedbid: 'basedbid_create_lbp',
|
|
656
713
|
curve: 'deposit_earn_position',
|
|
657
714
|
uniswap: 'mint_uniswap_position',
|
|
658
715
|
'vaults-fyi': 'deposit_earn_position',
|
|
@@ -670,6 +727,8 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
670
727
|
'market-data': 'get_trending_tokens',
|
|
671
728
|
gmgn: 'get_gmgn_kol_trades',
|
|
672
729
|
nansen: 'get_nansen_perp_screener',
|
|
730
|
+
basedbid: 'basedbid_get_tokens',
|
|
731
|
+
cmc: 'get_cmc_quotes',
|
|
673
732
|
prediction: 'get_prediction_markets',
|
|
674
733
|
};
|
|
675
734
|
return {
|