coding-practices

Installation
SKILL.md

Coding Practices

Practices specific to writing and editing code. Use alongside agentic-standards, which provides the general behavioral baseline for all interactions.

Quick reference

Domain Key rules Reference
Coding behavior Scope discipline, simplest approach first, read before write, verify before done, incremental development coding-behavior.md
Tools Prefer dedicated tools over shell equivalents. Parallelize independent calls. Match-based edits. tool-preferences.md

Core principles

  1. Try the simplest approach first. Complexity is a cost. Justify it.
  2. Read before write. Never edit code you haven't seen this session.
  3. Verify with evidence. Run the test. Read the output. Report what happened.
  4. One change at a time. Make a logical change, validate, then continue.
  5. No scope creep. Do what was asked. Do not add features, refactors, or improvements beyond the request.

Load the reference files above for detailed guidance.

Verification helpers

Pair with Superpowers verification-before-completion for the “no completion claims without fresh evidence” rule. This repo keeps optional automation and a report shape that works without that plugin:

  • run-checks.sh — Auto-detects test runner, linter, type checker, and build for common stacks; prints a structured PASS/FAIL report (./run-checks.sh, --tests-only, --lint-only).
  • Verification report template — Evidence-style checklist and adversarial probe ideas for manual or scripted runs.

Deep references

For system-level design patterns, load when building or reviewing agent tool infrastructure:

  • Tool design checklist — Fail-closed tool contract, safety declarations, progressive tool discovery, and the 9-step tool execution pipeline.
Related skills

More from beltonk/claude-code-agent-skills

Installs
4
First Seen
Apr 8, 2026