strategy

strategy is a skill for Claude Code from ChainGPT-org/chaingpt-claude-skill. It costs 136 tokens per session (981 once invoked), scanned C, original, MIT.

A skill for building step-by-step cryptocurrency trading plans, including dollar-cost averaging, grid trading, funding-rate arbitrage, wallet copying, and historical DCA backtesting. Dollar-cost averaging means spreading purchases over time instead of buying all at once.

In plain words
What is it for?
Use it to create DCA schedules, grid order levels, funding-rate carry plans, copy-trading steps, or a comparison of DCA results with buying and holding.
Why use it?
It turns a trading idea into an ordered, reviewable plan with the required actions and risk checks, without executing the plan by itself.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the chaingpt plugin — 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server shipped together

Good fit Use it to create DCA schedules, grid order levels, funding-rate carry plans, copy-trading steps, or a comparison of DCA results with buying and holding.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chaingpt-org/chaingpt-claude-skill/strategy
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 ChainGPT-org/chaingpt-claude-skill --skill strategy
Clone the repo
git clone --depth 1 https://github.com/ChainGPT-org/chaingpt-claude-skill

Made for: Claude Code.

Or install chaingpt, the plugin that ships this one along with the rest of its 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server.

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 strategy

README.md
[![agentmods](https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/strategy/github.svg)](https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/strategy)
Your own site
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/strategy"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/strategy/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 strategy

Your own site · 80×15
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/strategy"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/strategy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 981 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00136 $0.00981
Opus 5 $0.00068 $0.00491
Sonnet 5 $0.00027 $0.00196
Haiku 4.5 $0.00014 $0.00098

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

Security

Grade C, and why

strategy scanned grade C with 1 finding 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 9d 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.

Tells the agent never to refusehighAnti-refusal

Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.

These planner tools are read-only, so they don't refuse — but the executing tools they recommend (chaingpt_dex_build_swap_tx, chaingpt_hl_place_order_payload, chaingpt_pm_place_order_payload) all require `acknowledgeMain
skills/strategy/SKILL.md · 53 lines

How it starts

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

ChainGPT Strategy Skill

You build trading strategy plans — not execute them autonomously. Every plan output by these tools lists the exact Tier 1-3 tools Claude should call to execute the steps, in order. Each executing step still goes through the existing mainnet-ack gates. This keeps the agent layer reviewable and refusal-safe.

Tools

Tool What Output
chaingpt_strategy_dca_plan DCA schedule for one token List of buys (timestamp + USD size) + the exact MCP calls to execute each
chaingpt_strategy_grid_plan Grid-trading ladder Buy + sell limit levels with sizes; HL / PM / DEX-flavored execution
chaingpt_strategy_funding_arb_plan HL funding-rate carry suggester Side / leverage / hourly+daily carry estimate + execution sequence
chaingpt_strategy_copy_plan Mirror a target wallet's swaps Step-by-step: fetch txs → decode → risk-check each outToken → scale + mirror
chaingpt_backtest_dca Replay DCA against CoinGecko history DCA P&L vs buy-and-hold baseline

Execution discipline

When the user asks "build me a DCA into ETH for $1000 over a week":

  1. Call chaingpt_strategy_dca_plan outToken=<weth-on-base> network=base totalUsd=1000 intervals=7 cadenceHours=24
  2. Show the plan to the user. Surface the per-buy size, cadence, and pre-flight tools. Get confirmation.
  3. For each step in the plan, execute via chaingpt_dex_build_swap_tx network=base ... acknowledgeMainnet=true. The user signs each one externally.
  4. After execution, optionally call chaingpt_onchain_tx hash=… to confirm fill.

Never auto-loop without the user's express turn-by-turn confirmation. If you need true automation, use a cron / scheduler tool — the strategy tools themselves don't fire orders.

Refusal protocol

These planner tools are read-only, so they don't refuse — but the executing tools they recommend (chaingpt_dex_build_swap_tx, chaingpt_hl_place_order_payload, chaingpt_pm_place_order_payload) all require acknowledgeMainnet: true. Surface that to the user before any execution.

Read the full file on GitHub · 53 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. 9d ago First seen · 53 lines · 136 tokens per session scan C d2ce34ae980b

Subscribe to this mod's changes

strategy is a skill published in the GitHub repository ChainGPT-org/chaingpt-claude-skill (16 stars, last pushed 9d ago), licensed MIT. It adds 136 tokens to every session and 981 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 1 finding (tells the agent never to refuse). 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

perp-cli

Multi-DEX perpetual futures trading via the perp-cli command-line tool. Use when user asks to: trade perps, check funding rates, scan/execute arbitrage (perp-perp or spot-perp), run delta-neutral strategies, bridge USDC across chains, manage positions/orders/leverage, deposit/withdraw, hedge spot+perp, trade HIP-3…

hypurrquant/perp-cli · 152 tokens

suwappu

Build with the Suwappu REST API: cross-chain quotes, simulation, self-custody or managed swaps, managed-wallet portfolio/prices, Polymarket research and orders, Hyperliquid market research, and Morpho lending-market research.

0xSoftBoi/suwappubot · 55 tokens

suwappu-dex

Use Suwappu's hosted MCP server for cross-chain quotes, swap simulation and unsigned transaction preparation, managed-wallet portfolio reads, prices, prediction-market research, Hyperliquid research, and Morpho market data.

0xSoftBoi/suwappubot · 50 tokens

ethereum-defi

Ethereum DeFi skill — query balances, get Chainlink prices, estimate gas, resolve ENS names, call smart contracts, ABI-encode functions, interact with ERC-8004 agent registry, query EAS attestations.

tenzro/tenzro-network · 48 tokens

defi-protocols

DeFi protocol authority — flashloans, AMM design, lending markets, concentrated liquidity, MEV, triangular and cross-DEX arbitrage, stablecoin depeg dynamics, and on-chain capital routing across Uniswap V3, Aerodrome, Balancer, Curve, and Aave V3 on Ethereum, Base, Arbitrum, Optimism, and Polygon.

LuuOW/meridian-mcp · 81 tokens

propfund

Trade on PropFund, the decentralized on-chain prop firm for AI agents. Use this skill to get funded with the liquidity pool's capital and trade without risking your own bankroll — pass a transparent evaluation, then place leveraged long/short trades with mandatory stop-loss/take-profit and on-chain risk limits, and…

NO7r34L/PropFund.eth · 0 tokens