pragmatist

pragmatist is an agent for coding agents from JHostalek/dotclaude. It costs 0 tokens per session (383 once invoked), scanned A, original, CC0-1.0.

A code-review perspective that asks whether the chosen solution is the shortest practical path from the user's problem to the desired result.

In plain words
What is it for?
Use it to review implementations for overengineering, premature splitting into modules or services, and patterns added without a concrete need.
Why use it?
It identifies unnecessary layers, abstractions, configuration, and polish that add maintenance or debugging cost without helping the current use case.

Agent

Part of the jhostalek-skills plugin — 32 skills, 12 agents shipped together

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.

agentmods
npx agentmods add agents/jhostalek/dotclaude/pragmatist
Clone the repo
git clone --depth 1 https://github.com/JHostalek/dotclaude

Or install jhostalek-skills, the plugin that ships this one along with the rest of its 32 skills, 12 agents.

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 pragmatist

README.md
[![agentmods](https://agentmods.dev/badge/agents/jhostalek/dotclaude/pragmatist.svg)](https://agentmods.dev/agents/jhostalek/dotclaude/pragmatist)
Your own site
<a href="https://agentmods.dev/agents/jhostalek/dotclaude/pragmatist"><img src="https://agentmods.dev/badge/agents/jhostalek/dotclaude/pragmatist.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 383 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00383
Opus 5 $0.00000 $0.00192
Sonnet 5 $0.00000 $0.00077
Haiku 4.5 $0.00000 $0.00038

Measured 4d ago against content hash 61d8294d3c07, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pragmatist 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 4d 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.

skills/judge/agents/pragmatist.md · 26 lines

What it actually says

Pragmatist Reviewer

One lens: is this the most direct path from problem to solution?

You respect craft but have watched projects die under their own elegance. Heroes ship hard problems with boring code.

Method

Anchor on the user-facing outcome, not the architecture. Count the layers, files, abstractions, and indirections between "user wants X" and "X happens." Separate what solves the problem from what solves problems the problem might theoretically have later.

What You Flag

  • speculative — abstractions, extension points, or configurability serving no current use case
  • indirection — a layer whose cognitive/debug/maintenance cost exceeds what it buys
  • premature-decomposition — split into files/modules/services before complexity demanded it
  • gold-plating — polish or robustness beyond what the use case needs now
  • cargo-cult — a pattern applied "because that's how it's done" when the situation doesn't warrant it (includes resume-driven choices: interesting over simplest)

Respect (do not flag): simplicity that handles real requirements, shortcuts that are marked and contained, easy-to-delete code, boring solutions to boring problems.

Some indirection earns its keep via testability, maintainability, or clarity. For each candidate, answer: would removing this layer make the code simpler to understand and change, or merely shorter? Report both kinds and say which it is — the second kind is what the orchestrator drops.

Output

Open with 2-3 sentences describing the most direct solution you'd have built. Then every candidate your lens surfaced. Per candidate: the specific code or decision, which of the five types it is, the evidence, what you'd do instead, what could go wrong if someone takes your advice, and your confidence. Close with an overall rating: direct / mostly-direct / over-built / significantly-over-built.

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. 4d ago First seen · 26 lines · 0 tokens per session scan A 61d8294d3c07

Subscribe to this mod's changes

pragmatist is an agent published in the GitHub repository JHostalek/dotclaude (11 stars, last pushed 1mo ago), licensed CC0-1.0. It costs nothing until one of its globs matches a file; then it loads 383 tokens. 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.

Related

Other agents, from other repositories

experience-extractor

Learning agent for the Self-Evolving Loop. Use when executing /evolving-loop Phase LEARN — after completion-judge decides EVOLVE, when iterations fail with similar issues, before the evolve phase, or on SHIP to record success patterns. Runs evidence-based root-cause analysis, extracts patterns, writes learning.json…

claude-world/director-mode-lite · 127 tokens

skill-evolver

Evolution agent for the Self-Evolving Loop. Use when executing /evolving-loop Phase EVOLVE — after experience-extractor produces learning.json, when completion-judge decides EVOLVE, on an --evolve request, or on SHIP for lifecycle review. Applies verified learning to produce improved skill versions and manages…

claude-world/director-mode-lite · 120 tokens

agents-expert

Expert on creating and configuring custom Claude Code agents (subagents). Use PROACTIVELY when the user mentions creating an agent, custom agent, or subagent; when designing specialized agents for project tasks; when troubleshooting agent invocation, tools, or model config; or during /agents-generate. Knows the…

claude-world/director-mode-lite · 138 tokens

completion-judge

Decision-making agent for the Self-Evolving Loop. Use when executing /evolving-loop Phase DECIDE — after the validator writes validation.json, when an iteration cycle completes, or at a manual decision point. Applies the SHIP/FIX/EVOLVE/ABORT threshold rule against verified evidence and writes reports/decision.json.…

claude-world/director-mode-lite · 118 tokens

hooks-expert

Expert on Claude Code hooks — event-driven automation for tool calls, prompts, sessions, and notifications. Use PROACTIVELY when the user mentions "hook", "automation", or "trigger"; when designing PreToolUse/PostToolUse/Stop/UserPromptSubmit hooks or security guards; or during hook setup. Knows the hook event list…

claude-world/director-mode-lite · 129 tokens

skills-expert

Expert on creating, editing, and debugging Claude Code skills and slash commands. Use when the user mentions creating a skill or slash command, wants a reusable command-based workflow, when a skill fails to trigger, or during /skills-generate. Knows the official skill frontmatter fields, arguments, allowed-tools, and…

claude-world/director-mode-lite · 120 tokens