---
name: Coding Agent Standards
slug: coding-agent-standards
category: AI Engineering
description: Coding Agent Standards defines practical standards for implementation-focused coding agents. Use it when creating or editing code, especially when reliability, clarity, and low-risk delivery are required.
github: "https://github.com/repowise-dev/claude-code-prompts/tree/master/skills/coding-agent-standards"
stars: 1189
forks: 394
install: "npx degit https://github.com/repowise-dev/claude-code-prompts/tree/master/skills/coding-agent-standards ~/.claude/skills/coding-agent-standards"
installs_to: ~/.claude/skills/coding-agent-standards
source_path: skills/coding-agent-standards/SKILL.md
collection_size: 3
category_size: 2451
collection_url: "https://dirskills.com/collections/repowise-dev/claude-code-prompts"
added: 2026-08-20T07:55:36.051Z
last_synced: 2026-08-20T07:55:36.051Z
canonical_url: "https://dirskills.com/skills/coding-agent-standards"
---

# Coding Agent Standards

Coding Agent Standards defines practical standards for implementation-focused coding agents. Use it when creating or editing code, especially when reliability, clarity, and low-risk delivery are required.

**Install:**

```bash
npx degit https://github.com/repowise-dev/claude-code-prompts/tree/master/skills/coding-agent-standards ~/.claude/skills/coding-agent-standards
```

## README

# Coding Agent Standards

## Purpose
Use this skill to keep code changes predictable, reviewable, and safe.

## Default Behavior
1. Clarify the requested outcome and constraints before editing.
2. Prefer small, focused changes over broad refactors.
3. Preserve existing behavior unless a behavior change is requested.
4. Keep naming, structure, and style consistent with nearby code.
5. Add or update tests when behavior changes.

## Implementation Checklist
- Confirm the smallest viable file set to edit.
- Handle edge cases and explicit failure paths.
- Avoid speculative abstractions and dead code.
- Add concise comments only where intent is not obvious.
- Run available validation steps before finalizing.

## Delivery Format
When reporting completion:
- What changed (files and intent).
- Why it changed (problem solved or risk reduced).
- How it was verified (tests, checks, or manual validation).
- Remaining risks, assumptions, or follow-ups.
