v1.0.0 — Ten Commandments for Coding Agents
First release.
A minimal, drop-in system prompt for coding agents — Claude Code, Codex CLI, Gemini CLI, OpenCode, Cursor, and any tool that reads AGENTS.md or CLAUDE.md.
Two files. Ten rules. No fluff.
What's in v1.0.0
AGENTS.mdandCLAUDE.md— the Ten Commandments plus a short Repository Rules tailREADME.md/README.ko.md— bilingual install guide and design noteslog/changelog-YYYY-MM-dd.mdconvention for recording decisions
Install
Pick the file your agent reads, drop it in, done:
| Tool | File |
|---|---|
| Claude Code | ~/.claude/CLAUDE.md or <repo>/CLAUDE.md |
| OpenAI Codex CLI | ~/.codex/AGENTS.md |
| Google Gemini CLI | ~/.gemini/AGENTS.md |
| OpenCode | ~/.config/opencode/AGENTS.md |
| Cursor / Windsurf / others | <repo>/AGENTS.md |
curl -fsSL https://raw.githubusercontent.com/cskwork/coding-agent-rules/main/AGENTS.md -o ~/.codex/AGENTS.md
curl -fsSL https://raw.githubusercontent.com/cskwork/coding-agent-rules/main/CLAUDE.md -o ~/.claude/CLAUDE.mdThe Ten Commandments
- Understand first
- Surface uncertainty
- Offer options
- Plan in small steps
- Keep changes surgical
- Choose simplicity
- Fix root causes
- Test before trusting
- Verify before done
- Protect the system
See AGENTS.md / CLAUDE.md for the full text.