development-skills: Instructions file for Claude Code

AGENTS.md

development-skills AGENTS.md is an instructions file for Claude Code, Codex, OpenCode from reidemeister94/development-skills. It costs 1,377 tokens per session, scanned B, original, MIT.

Repository instructions for a development-skills plugin, which provides development guidance, hooks, skills, and one staff-reviewer subagent for Claude Code and Codex CLI.

In plain words
What is it for?
They are for guiding the full development cycle from exploring and planning through implementation and review.
Why use it?
They set expectations for planning, keeping changes focused, questioning assumptions, and reviewing code during development.

Instructions file for Claude CodeCodexOpenCode

Written for Claude Code and Codex and OpenCode: Claude Code plugin machinery, but also reads ~/.codex or $CODEX_HOME. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

This is reidemeister94/development-skills's own configuration. It tells Claude Code, Codex and OpenCode how to work on development-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything development-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to reidemeister94/development-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/reidemeister94/development-skills/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/reidemeister94/development-skills

Made for: Claude Code, Codex, OpenCode.

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 development-skills AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/reidemeister94/development-skills/agents-md.svg)](https://agentmods.dev/instructions/reidemeister94/development-skills/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/reidemeister94/development-skills/agents-md"><img src="https://agentmods.dev/badge/instructions/reidemeister94/development-skills/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,377 This file is loaded in full into every session.
When invoked 1,377 The same file — it is already loaded in full.
Security scan B 1 finding. 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.1 $0.01377 $0.01377
Opus 5 $0.00688 $0.00688
Sonnet 5 $0.00275 $0.00275
Haiku 4.5 $0.00138 $0.00138

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

Security

Grade B, and why

development-skills AGENTS.md scanned grade B 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 6d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Hooks in `hooks/` run natively on Claude Code and on Codex 0.131+ (auto-loaded); Codex 0.128–0.130 needs `[features] plugin_hooks = true` in `~/.codex/config.toml`. Document the manual fallback whenever a hook is added
AGENTS.md · 34 lines

How it starts

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

Development skills

This repo IS the source of the development-skills plugin: a direct/full development loop plus skills, hooks, and a single staff-reviewer subagent, distributed to Claude Code and Codex CLI.

  1. Don't pander · be critical. Challenge assumptions, push back on bad ideas. No flattery openers. User confirmation validates the decision, not the analysis.
  2. Think before coding. State assumptions explicitly. Ask when unclear. Don't guess, don't hide confusion.
  3. Plan before implementing. Explore → plan → lock the HOW (edge cases · data shapes · error semantics · contract boundaries · test scope · rollback) → code.
  4. Simplicity by default. Minimum code that solves the problem. Three filters before adding anything: existing mechanism covers >50%? · can this be one fewer file / abstraction / config / dependency? · would removing it cause a real failure? A refactor must measurably improve one of: clear · descriptive · efficient · performant · reliable · robust · maintainable.
  5. Surgical changes. Every changed line traces to the request. No refactoring of adjacent code. No error handling for impossible scenarios. Clean up only your own mess.
  6. All signal, zero noise. No dead branches, no defensive try/catch on safe paths, no wrapper-for-nothing functions, no unused imports. No filler openers, no trailing summaries when the diff is the answer.
  7. Comments explain WHY, not WHAT. Non-obvious business logic, hidden constraints, workarounds — yes. Restating what the next line does — no.
  8. TDD: Red → Green → Refactor. No production code without a failing test first. One test = one cycle. Wrote production code before the test? Delete it. Untestable (UI-heavy / infrastructure / config-only) → closest automated check + documented WHY + manual evidence.
  9. No claim without fresh evidence. IDENTIFY → RUN → READ → VERIFY → CLAIM. "I'm confident" is not a step. Skipping any step = lying, not verifying.
  10. Root cause, not symptoms. Fix the underlying error, never suppress it. # type: ignore, swallowed exceptions, disabled tests, --no-verify are admissions the bug is winning.
  11. Document every discovery (anything you lacked at the start — non-obvious, domain·infrastructure·company·project-specific). WHY → docs/chronicles/, HOW → docs/plans/; a critical always-read fact → one line in the AGENTS.md list; a topic with depth → .agents/rules/<topic>.md (same convention), indexed from AGENTS.md. Fewest words. Pay investigation costs once.
  12. Slim docs · English · memory ≈ empty. AGENTS.md ≤ 70 lines: principles → use development-skills → single fewest-words list of the most critical, non-trivial domain·infra·company·project facts → index to .agents/rules/; no section headings. Each rules file: same convention, vertical per topic. English only across all artifacts. Teammates share only the repo — memory is per-machine and invisible to them: project facts live in AGENTS.md / .agents/rules/, never in memory; machine-specific facts → gitignored .claude/CLAUDE.md / ~/.codex/AGENTS.md; memory stays ≈ empty.
  13. Communicate to be understood. Explain in the simplest accurate language that preserves all important information — lead with the answer, name assumptions and trade-offs when they matter, simplify wording not substance. No obscure terms, no ambiguity.
  • The canonical development loop and its principles live in shared/development-loop.md; the writing contract in shared/writing.md. Skills reference them by path — never restate their content, in skills, AGENTS.md, README, or chronicles.
  • Versioning is automated via make bump-version-{minor,major,patch} (commitizen): cz bump atomically updates [tool.commitizen] version in pyproject.toml, VERSION, .claude-plugin/plugin.json, .codex-plugin/plugin.json, and .claude-plugin/marketplace.json, then creates the annotated git tag $version. Never bump version files manually.
  • Only one named subagent ships: staff-reviewer. Implementation and verification run in the main thread per shared/development-loop.md — do not introduce extra subagents without explicit design discussion.
  • Hooks in hooks/ run natively on Claude Code and on Codex 0.131+ (auto-loaded); Codex 0.128–0.130 needs [features] plugin_hooks = true in ~/.codex/config.toml. Document the manual fallback whenever a hook is added.
  • pyproject.toml exists for plugin-internal scripts (lint helpers) — the plugin is markdown-first and not distributed as a PyPI package.
  • Personal per-machine context: .claude/CLAUDE.md (Claude) or ~/.codex/AGENTS.md (Codex). Both must stay gitignored; never commit either.

Read the full file on GitHub · 34 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. 6d ago First seen · 34 lines · 1,377 tokens per session scan B 47285de9a00d

Subscribe to this mod's changes

development-skills AGENTS.md is an instructions file published in the GitHub repository reidemeister94/development-skills (11 stars, last pushed 1mo ago), licensed MIT. It adds 1,377 tokens to every session, about $0.0069 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens