@thirdfy/agent-cli 0.2.56 → 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 CHANGED
@@ -4,6 +4,12 @@ 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
+
7
13
  ## [0.2.56] - 2026-09-03
8
14
 
9
15
  ### Added
package/README.md CHANGED
@@ -40,18 +40,11 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.56
43
+ ## What's new in v0.2.57
44
44
 
45
- - `cmc` provider hints and [`docs/providers/cmc.md`](./docs/providers/cmc.md) for nineteen read-only `get_cmc_*` actions (quotes, metrics, fear/greed, composed Skill Hub briefs). Long-running skill actions use a 180s timeout.
46
- - Pairs with Thirdfy API **3.14.18** and `thirdfy-mcp` **0.0.104**.
47
-
48
- ## What's new in v0.2.55
49
-
50
- - Nansen and GMGN provider notes no longer list per-action credit or USD prices. Thirdfy auth is enough.
51
- - 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.
52
46
  - See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
53
47
 
54
-
55
48
  ## Quick start
56
49
 
57
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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,
@@ -686,6 +709,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
686
709
  morpho: 'deposit_earn_position',
687
710
  aave: 'deposit_earn_position',
688
711
  aegis: 'deposit_aegis_lender',
712
+ basedbid: 'basedbid_create_lbp',
689
713
  curve: 'deposit_earn_position',
690
714
  uniswap: 'mint_uniswap_position',
691
715
  'vaults-fyi': 'deposit_earn_position',
@@ -703,6 +727,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
703
727
  'market-data': 'get_trending_tokens',
704
728
  gmgn: 'get_gmgn_kol_trades',
705
729
  nansen: 'get_nansen_perp_screener',
730
+ basedbid: 'basedbid_get_tokens',
706
731
  cmc: 'get_cmc_quotes',
707
732
  prediction: 'get_prediction_markets',
708
733
  };