simple

simple is a skill for Claude Code, Codex from Kevin-Liu-01/Agent-Machines. It costs 0 tokens per session (1,493 once invoked), scanned A, original, MIT.

A five-part structure for explaining a technical problem: the cause, evidence, proposed fix, how the fix works, and how to test it.

In plain words
What is it for?
Use it for root-cause explanations, debugging write-ups, and fix proposals. It is also triggered by requests to explain why something is wrong or how to test a fix.
Why use it?
It helps turn a vague explanation into a reproducible diagnosis. The evidence and test steps make it easier to check whether the proposed cause is correct.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for root-cause explanations, debugging write-ups, and fix proposals. It is also triggered by requests to explain why something is wrong or how to test a fix.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevin-liu-01/agent-machines/simple-diagnosis-template
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 Kevin-Liu-01/Agent-Machines --skill simple-diagnosis-template
Clone the repo
git clone --depth 1 https://github.com/Kevin-Liu-01/Agent-Machines

Made for: Claude Code, Codex.

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 simple

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/simple-diagnosis-template/github.svg)](https://agentmods.dev/skills/kevin-liu-01/agent-machines/simple-diagnosis-template)
Your own site
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/simple-diagnosis-template"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/simple-diagnosis-template/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 simple

Your own site · 80×15
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/simple-diagnosis-template"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/simple-diagnosis-template.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,493 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

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 →

  • medium Excessive Agency · line 16
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00000 $0.01493
Opus 5 $0.00000 $0.00746
Sonnet 5 $0.00000 $0.00299
Haiku 4.5 $0.00000 $0.00149

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

Security

Grade A, and why

simple 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • simple — 100% identical, 0 lines differ
knowledge/skills/simple-diagnosis-template/SKILL.md · 90 lines

How it starts

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

Simple

A single reasoning template. Every answer has the same five parts in the same order. No headers. No bullets. No preamble. The shape itself teaches whoever reads it to think in cause and effect.

Contract

Respond in exactly five sentences or short paragraphs, in this order:

  1. X is the problem. State the root cause in one sentence. Name the actual thing, not a symptom. If the cause is "the code is slow", you have not finished diagnosing.
  2. We know this because Y. Cite the evidence. Measurements, strace output, log lines, code paths, invariants, benchmarks. Numbers beat adjectives. If you cannot cite evidence, you are guessing and should stop.
  3. I propose we use Z to fix this. Name the fix. One concrete intervention, not a list of options. Be specific enough that a reader could act on it without asking a follow-up.
  4. This is because Z does {mechanism} that helps this problem. Explain how the fix acts on the cause. The reader should be able to predict the fix's behavior from first principles, not take your word for it.
  5. We can test and reproduce this by {methodology}. Give the experiment. A command, a benchmark, a pjdfstest run, a targeted reproducer. The experiment must be able to falsify the proposal, not just confirm it.

End with a single line: Give it a try.

Rules

  • One cause per answer. If there are two causes, write two /simple answers.
  • No hedging. "This might be the problem" means you don't know. Go measure.
  • No options menu. Picking between alternatives is a separate kind of answer. /simple proposes one fix.
  • Mechanism before methodology. If you can't explain how the fix works, your test plan is cargo-culted.
  • Falsifiable test. The methodology must be capable of showing the proposal is wrong, not just showing some improvement.
  • Evidence is load-bearing. Never skip part 2. If you don't have numbers or a code pointer, go get them before writing the answer.

When to use

  • A user asks "why is X slow" / "why does Y fail" / "what's causing Z".
  • You have just completed a diagnostic investigation and need to report it.
  • The user says "explain the problem" or "propose a fix".
  • The user invokes /simple.

Read the full file on GitHub · 90 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 · 90 lines · 0 tokens per session scan A 87f174e607e1

Subscribe to this mod's changes

simple is a skill published in the GitHub repository Kevin-Liu-01/Agent-Machines (29 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,493 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-09-03.

Related

Other skills, from other repositories

opik-explain

Root-cause a specific Opik trace, or a pattern across traces, and return a grounded explanation. Uses the hosted Opik MCP when it is connected, and falls back to SDK scripting otherwise. Returns the root cause, the evidence spans as clickable Opik UI links, and one suggested next step. Use for "why did this trace…

comet-ml/opik-mcp · 113 tokens

hermes-plugin-development

Use when: creating, debugging, or integrating Hermes Agent plugins, including Python backend plugins (tools, hooks, routers, middleware) and JavaScript Hermes Desktop runtime plugins.

AtlasOmnia/donna-starter · 31 tokens

problem-management

Manage ServiceNow problems — create from linked incidents, proactive pattern detection, RCA with 5-Whys, knownerror workarounds (KEDB), KEDB search by CI/category/keywords, and permanent-fix linkage to changes.

serac-labs/serac · 53 tokens

node-inspect-debugger

Debug Node.js with node inspect, inspector attach, breakpoints, Chrome DevTools Protocol, heap snapshots, and CPU profiles.

EKKOLearnAI/hermes-studio · 31 tokens

holix-cron

Schedule recurring agent tasks via Holix built-in gateway cron (not crontab or custom scripts).

javded-itres/Holix · 25 tokens

blazemeter-troubleshooting

Comprehensive troubleshooting guide for BlazeMeter, covering API Monitoring, Performance Testing, general issues, integrations, and security. Use when troubleshooting for (1) API Monitoring issues (Radar Agent auth, SSL certificates, debug tests), (2) Performance Testing issues (high response time, 500 errors, partial…

Blazemeter/bzm-mcp · 131 tokens