@thirdfy/agent-cli 0.2.46 → 0.2.47
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 +6 -0
- package/README.md +2 -2
- package/package.json +2 -2
- package/src/runtime/providerHints.mjs +30 -0
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.47] - 2026-08-08
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `gmgn` provider hints and `docs/providers/gmgn.md` for `get_gmgn_*` read-only smart-money actions (pairs with Thirdfy API `gmgn` provider / API 3.13.56).
|
|
12
|
+
|
|
7
13
|
## [0.2.46] - 2026-08-08
|
|
8
14
|
|
|
9
15
|
### Changed
|
package/README.md
CHANGED
|
@@ -40,9 +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.47
|
|
44
44
|
|
|
45
|
-
-
|
|
45
|
+
- GMGN smart-money reads: provider hints and `docs/providers/gmgn.md` for `get_gmgn_*` actions.
|
|
46
46
|
- See [CHANGELOG.md](./CHANGELOG.md) for older versions.
|
|
47
47
|
|
|
48
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.47",
|
|
4
4
|
"description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"LICENSE"
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
|
-
"test": "node --test
|
|
25
|
+
"test": "node --test test/*.test.cjs",
|
|
26
26
|
"lint": "node --check ./bin/thirdfy-agent.mjs && node --check ./src/core/*.mjs && node --check ./src/commands/*.mjs && node --check ./src/cli/*.mjs && node --check ./src/cli/options/*.mjs && node --check ./src/runtime/*.mjs && node --check ./src/runtime/execution/*.mjs && node --check ./src/runtime/actions/*.mjs && node --check ./src/runtime/validation/*.mjs && node --check ./src/runtime/certification/*.mjs",
|
|
27
27
|
"validate:cli-manifest-handlers": "node ./scripts/validate-cli-manifest-handlers.mjs",
|
|
28
28
|
"validate:runtime-boundaries": "node ./scripts/validate-runtime-boundaries.mjs",
|
|
@@ -533,6 +533,35 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
533
533
|
'thirdfy-agent condor policy-status && thirdfy-agent condor preflight --estimated-amount-usd 25 --idempotency-key <key>',
|
|
534
534
|
};
|
|
535
535
|
}
|
|
536
|
+
if (provider === 'gmgn') {
|
|
537
|
+
return {
|
|
538
|
+
provider,
|
|
539
|
+
category: 'smart_money_intel',
|
|
540
|
+
canonicalReadAction: 'get_gmgn_kol_trades',
|
|
541
|
+
readActions: [
|
|
542
|
+
'get_gmgn_token_info',
|
|
543
|
+
'get_gmgn_token_security',
|
|
544
|
+
'get_gmgn_token_pool',
|
|
545
|
+
'get_gmgn_token_holders',
|
|
546
|
+
'get_gmgn_token_traders',
|
|
547
|
+
'get_gmgn_token_kline',
|
|
548
|
+
'get_gmgn_trending',
|
|
549
|
+
'get_gmgn_trenches',
|
|
550
|
+
'get_gmgn_hot_searches',
|
|
551
|
+
'get_gmgn_wallet_activity',
|
|
552
|
+
'get_gmgn_wallet_stats',
|
|
553
|
+
'get_gmgn_wallet_token_balance',
|
|
554
|
+
'get_gmgn_created_tokens',
|
|
555
|
+
'get_gmgn_kol_trades',
|
|
556
|
+
'get_gmgn_smartmoney_trades',
|
|
557
|
+
],
|
|
558
|
+
supportedChains: [],
|
|
559
|
+
laneCompatibility:
|
|
560
|
+
'GMGN uses string chain slugs (sol, base, bsc, eth, robinhood), not numeric chainId. Read-only KOL, smart-money, wallet, and token security evidence via Thirdfy API. Pace calls (~1 req/s).',
|
|
561
|
+
example:
|
|
562
|
+
'thirdfy-agent run --action get_gmgn_kol_trades --params \'{"chain":"sol","limit":5}\' --provider gmgn --json',
|
|
563
|
+
};
|
|
564
|
+
}
|
|
536
565
|
if (provider === 'market-data') {
|
|
537
566
|
return {
|
|
538
567
|
provider,
|
|
@@ -582,6 +611,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
582
611
|
'vaults-fyi': 'get-vaults-fyi-vaults',
|
|
583
612
|
'yield-xyz': 'get_yield_xyz_opportunities',
|
|
584
613
|
'market-data': 'get_trending_tokens',
|
|
614
|
+
gmgn: 'get_gmgn_kol_trades',
|
|
585
615
|
prediction: 'get_prediction_markets',
|
|
586
616
|
};
|
|
587
617
|
return {
|