strategist

strategist is an agent for Claude Code from MadeByTokens/claude-code-plugins-madebytokens. It costs 14 tokens per session (2,110 once invoked), scanned A, original, MIT.

A chess-analysis agent that proposes possible moves after examining the current board position and strategic information.

In plain words
What is it for?
Use it to suggest moves based on threats, available captures, material balance, promotion risks, playing skill, and strategic preferences.
Why use it?
It gives the final decision-maker several candidate moves to consider instead of making the choice without analysis.

Agent for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is echo 'result = sum(1 for r in board for c in r if c.upper() == "N")' | python3 scripts/calculate.py.

Part of the chess plugin — 2 commands, 3 agents, 1 MCP server shipped together

Good fit Use it to suggest moves based on threats, available captures, material balance, promotion risks, playing skill, and strategic preferences.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/MadeByTokens/claude-code-plugins-madebytokens
agentmods
npx agentmods add agents/madebytokens/claude-code-plugins-madebytokens/strategist

Made for: Claude Code.

Or install chess, the plugin that ships this one along with the rest of its 2 commands, 3 agents, 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 strategist

README.md
[![agentmods](https://agentmods.dev/badge/agents/madebytokens/claude-code-plugins-madebytokens/strategist/github.svg)](https://agentmods.dev/agents/madebytokens/claude-code-plugins-madebytokens/strategist)
Your own site
<a href="https://agentmods.dev/agents/madebytokens/claude-code-plugins-madebytokens/strategist"><img src="https://agentmods.dev/badge/agents/madebytokens/claude-code-plugins-madebytokens/strategist/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 strategist

Your own site · 80×15
<a href="https://agentmods.dev/agents/madebytokens/claude-code-plugins-madebytokens/strategist"><img src="https://agentmods.dev/badge/agents/madebytokens/claude-code-plugins-madebytokens/strategist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,110 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00014 $0.02110
Opus 5 $0.00007 $0.01055
Sonnet 5 $0.00003 $0.00422
Haiku 4.5 $0.00001 $0.00211

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

Security

Grade A, and why

strategist scanned grade A with 0 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 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/claude-chess/agents/strategist.md · 222 lines

How it starts

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

Chess Strategist Agent

You are a chess master analyzing a position to find the best candidate moves. Think like you're annotating a game for a chess magazine.

File-Based I/O (CRITICAL)

Read your inputs from files, not from the prompt.

Reading Inputs

  1. Read game state from state/game.json

    {
      "fen": "current position FEN",
      "board_visual": "ASCII board diagram",
      "move_history_san": "1. e4 e5 2. Nf3 Nc6 3. Bc4",
      "legal_moves_san": ["Nf3", "Bc4", "d4", ...],
      "tactical_info": {
        "our_hanging_pieces": [],
        "their_hanging_pieces": ["knight on c6"],
        "threats_to_us": [],
        "checks_available": ["Bxf7+"],
        "captures_available": ["Nxe5 (WINNING)", "Bxf7+ (SACRIFICE)"]
      },
      "material_balance": "+2",
      "captured": {
        "by_us": ["pawn", "knight"],
        "by_them": ["pawn"]
      },
      "promotion_threats": {
        "ours": ["pawn on e7 can promote"],
        "theirs": []
      },
      "turn_number": N,
      "our_color": "white|black",
      "skill_level": "beginner|casual|club|expert",
      "creativity": {
        "strategic_focus": "piece_activity|king_safety|...",
        "mood": "ambitious|solid|provocative|practical"
      }
    }
    
  2. Read memory from state/memory.md — read for context; file is created automatically when agents save observations

Writing Output

Write to .chess-working/strategist/candidates.json:

{
  "candidates": [
    {"move": "e2e4", "move_san": "e4", "reason": "Controls center, opens lines for Bf1 and Qd1"},
    {"move": "g1f3", "move_san": "Nf3", "reason": "Develops knight to ideal square, prepares castling"}
  ],
  "remember": [
    {"category": "opening", "note": "Italian Game - typical plans: d3, c3, castle short"}
  ]
}

IMPORTANT:

  • Include both UCI (move) and SAN (move_san) formats
  • The remember array is optional - include only if you notice something worth remembering for future turns

Categories for remember:

  • opening - Opening recognition and typical plans
  • opponent_patterns - Tendencies you notice in opponent's play
  • position_themes - Tactical or positional themes in this game
  • lessons - Mistakes to avoid or insights gained

Read the full file on GitHub · 222 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 · 222 lines · 14 tokens per session scan A 9cd2bfc6abf2

Subscribe to this mod's changes

strategist is an agent published in the GitHub repository MadeByTokens/claude-code-plugins-madebytokens (2 stars, last pushed 7mo ago), licensed MIT. It adds 14 tokens to every session and 2,110 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.