From 8a095a99a8ec6f3895bd1c126ffff872832485b9 Mon Sep 17 00:00:00 2001 From: gina888666 Date: Fri, 29 May 2026 10:47:39 +0800 Subject: [PATCH 1/3] docs: clarify price/price_usd in portfolio activity and check-price unit in strategy create Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-portfolio/SKILL.md | 3 ++- skills/gmgn-swap/SKILL.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/skills/gmgn-portfolio/SKILL.md b/skills/gmgn-portfolio/SKILL.md index c68b862..b1db2d1 100644 --- a/skills/gmgn-portfolio/SKILL.md +++ b/skills/gmgn-portfolio/SKILL.md @@ -233,7 +233,8 @@ The response has a `activities` array and a `next` cursor field for pagination. | `token.symbol` | Token ticker | | `token_amount` | Token quantity in this transaction | | `cost_usd` | USD value of this transaction | -| `price` | Token price in USD at time of transaction | +| `price` | Token price denominated in the quote token at time of transaction (e.g. price in SOL on Solana) | +| `price_usd` | Token price in USD at time of transaction | | `timestamp` | Unix timestamp of the transaction | | `next` | Pagination cursor — pass to `--cursor` to fetch the next page | diff --git a/skills/gmgn-swap/SKILL.md b/skills/gmgn-swap/SKILL.md index 804870f..8fa80a0 100644 --- a/skills/gmgn-swap/SKILL.md +++ b/skills/gmgn-swap/SKILL.md @@ -544,7 +544,7 @@ gmgn-cli order strategy create \ | `--quote-token` | Yes | all | Quote token contract address | | `--order-type` | Yes | all | Order type: `limit_order` | | `--sub-order-type` | Yes | all | Sub-order type: `buy_low` / `buy_high` / `stop_loss` / `take_profit` | -| `--check-price` | Yes | all | Trigger check price | +| `--check-price` | Yes | all | Trigger price in USD — the order fires when the token's USD price crosses this value | | `--amount-in` | No* | all | Input amount (smallest unit). Mutually exclusive with `--amount-in-percent` | | `--amount-in-percent` | No* | all | Input as percentage (e.g. `50` = 50%). Mutually exclusive with `--amount-in` | | `--limit-price-mode` | No | all | `exact` / `slippage` (default: `slippage`) | From 81d67808faf7f6107cf31c9c889b54f8a7262a87 Mon Sep 17 00:00:00 2001 From: gina888666 Date: Fri, 29 May 2026 10:51:34 +0800 Subject: [PATCH 2/3] docs(gmgn-portfolio): fix price field description to mention quote token may vary (SOL or USDC) Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-portfolio/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/gmgn-portfolio/SKILL.md b/skills/gmgn-portfolio/SKILL.md index b1db2d1..bb2b7e2 100644 --- a/skills/gmgn-portfolio/SKILL.md +++ b/skills/gmgn-portfolio/SKILL.md @@ -233,7 +233,7 @@ The response has a `activities` array and a `next` cursor field for pagination. | `token.symbol` | Token ticker | | `token_amount` | Token quantity in this transaction | | `cost_usd` | USD value of this transaction | -| `price` | Token price denominated in the quote token at time of transaction (e.g. price in SOL on Solana) | +| `price` | Token price denominated in the quote token of the trading pair at time of transaction (e.g. SOL or USDC) | | `price_usd` | Token price in USD at time of transaction | | `timestamp` | Unix timestamp of the transaction | | `next` | Pagination cursor — pass to `--cursor` to fetch the next page | From 693a63c723b28c36e1e0c32b2507d5ecbe997855 Mon Sep 17 00:00:00 2001 From: gina888666 Date: Fri, 29 May 2026 10:53:20 +0800 Subject: [PATCH 3/3] docs(gmgn-portfolio): remove example from price field description Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-portfolio/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/gmgn-portfolio/SKILL.md b/skills/gmgn-portfolio/SKILL.md index bb2b7e2..afc5b66 100644 --- a/skills/gmgn-portfolio/SKILL.md +++ b/skills/gmgn-portfolio/SKILL.md @@ -233,7 +233,7 @@ The response has a `activities` array and a `next` cursor field for pagination. | `token.symbol` | Token ticker | | `token_amount` | Token quantity in this transaction | | `cost_usd` | USD value of this transaction | -| `price` | Token price denominated in the quote token of the trading pair at time of transaction (e.g. SOL or USDC) | +| `price` | Token price denominated in the quote token of the trading pair at time of transaction | | `price_usd` | Token price in USD at time of transaction | | `timestamp` | Unix timestamp of the transaction | | `next` | Pagination cursor — pass to `--cursor` to fetch the next page |