diff --git a/skills/gmgn-token/SKILL.md b/skills/gmgn-token/SKILL.md index d2fd50b..72c2107 100644 --- a/skills/gmgn-token/SKILL.md +++ b/skills/gmgn-token/SKILL.md @@ -47,7 +47,7 @@ Use the `gmgn-cli` tool to query token information based on the user's request. | `--limit` | No | `20` | Number of results, max `100` | | `--order-by` | No | `amount_percentage` | Sort field — see table below | | `--direction` | No | `desc` | Sort direction: `asc` / `desc` | -| `--tag` | No | — | Wallet filter: `renowned` (KOL wallets) / `smart_degen` (smart money) | +| `--tag` | No | — | Wallet filter: `renowned` (KOL wallets) / `smart_degen` (smart money). Omit to return all wallets. | | `--raw` | No | — | Output raw single-line JSON | ### `--order-by` Values diff --git a/src/commands/token.ts b/src/commands/token.ts index 559a56b..b646e30 100644 --- a/src/commands/token.ts +++ b/src/commands/token.ts @@ -57,7 +57,7 @@ export function registerTokenCommands(program: Command): void { .option("--limit ", "Number of results (default 20, max 100)", parseInt) .option("--order-by ", "Sort field: amount_percentage / profit / unrealized_profit / buy_volume_cur / sell_volume_cur", "amount_percentage") .option("--direction ", "Sort direction: asc / desc", "desc") - .option("--tag ", "Wallet tag filter: renowned / smart_degen", "renowned") + .option("--tag ", "Wallet tag filter: renowned / smart_degen") .option("--raw", "Output raw JSON") .action(async (opts) => { validateChain(opts.chain); @@ -80,7 +80,7 @@ export function registerTokenCommands(program: Command): void { .option("--limit ", "Number of results (default 20, max 100)", parseInt) .option("--order-by ", "Sort field: amount_percentage / profit / unrealized_profit / buy_volume_cur / sell_volume_cur", "amount_percentage") .option("--direction ", "Sort direction: asc / desc", "desc") - .option("--tag ", "Wallet tag filter: renowned / smart_degen", "renowned") + .option("--tag ", "Wallet tag filter: renowned / smart_degen") .option("--raw", "Output raw JSON") .action(async (opts) => { validateChain(opts.chain);