Clean Code Standard
This skill is the authoritative clean code standard for this repository's shared skills. It defines stable rule IDs (CC-*), how to apply them in reviews, and how to extend them safely via language overlays and explicit exceptions.
Modern Best Practices: Prefer small, reviewable changes and durable change context. Use BCP 14 normative language consistently (RFC 2119 + RFC 8174). Treat security-by-design and secure defaults as baseline (OWASP Top Ten 2025, NIST SSDF). Prefer GitHub rulesets over branch-protection-only governance. Build observable systems with OpenTelemetry. For current tool choices, consult data/sources.json and prefer official docs first.
Judgment over dogma: This standard's CC-* rules are durable (coupling/cohesion, naming, small interfaces, explicit errors). Numeric folklore — hard function-length caps, "comments are a smell," DRY applied absolutely — is not. Robert C. Martin's Clean Code (2nd ed., 2025) and John Ousterhout's A Philosophy of Software Design disagree in a published, public debate on function size and commenting (see references/code-quality-operational-playbook.md § 14); apply the rule ID's intent, not a book's specific numeric prescription, and know when not to refactor (§ 14.3 of the same reference).
Quick Reference
| Task |
Tool/Framework |
Command |
When to Use |
| Cite a standard |
CC-* rule ID |
N/A |
PR review comments, design discussions, postmortems |
| Categorize feedback |
CC-NAM, CC-ERR, CC-SEC, etc. |
N/A |
Keep feedback consistent without "style wars" |
| Add stack nuance |
Language overlay |
N/A |
When the base rule is too generic for a language/framework |
| Allow an exception |
Waiver record |
N/A |
When a rule must be violated with explicit risk |
| Reuse shared checklists |
assets/checklists/ |
N/A |
When you need product-agnostic review/release checklists |
| Reuse utility patterns |
references/*-utilities.md |
N/A |
When extracting shared auth/logging/errors/resilience/testing utilities |
When to Use This Skill
- Defining or enforcing clean code rules across teams and languages.
- Reviewing code: cite
CC-* IDs and avoid restating standards in reviews.
- Building automation: map linters/CI gates to
CC-* IDs.
- Resolving recurring review debates: align on rule IDs, scope, and exceptions.
When NOT to Use This Skill
Workflow
- Decide whether the request is about a base rule, an overlay, or an exception.
- Route security, review-process, or refactoring mechanics to the adjacent skill if that is the real problem.
- Anchor the guidance in existing
CC-* rules before proposing new wording or automation.
- Apply the relevant standard, overlay, or waiver pattern with explicit scope and rationale.
- Cross-check against the navigation references before adding or revising durable standards.
Rule Application Checklist
When citing or enforcing CC-* rules in a review:
ASCII Flow
Clean-code request
-> Identify behavior that must stay unchanged
-> Find duplication, unclear boundaries, or unsafe complexity
-> Refactor in the smallest coherent slice
-> Preserve public contracts and naming consistency
-> Add or adjust tests for changed control flow
-> Run focused verification and report residual risk
Decision Tree: Base Rule vs Overlay vs Exception
Feedback needed: [What kind of guidance is this?]
├─ Universal, cross-language rule? → Add/modify `CC-*` in `references/clean-code-standard.md`
│
├─ Language/framework-specific nuance? → Add overlay entry referencing existing `CC-*`
│
└─ One-off constraint or temporary tradeoff?
├─ Timeboxed? → Add waiver with expiry + tracking issue
└─ Permanent? → Propose a new rule or revise scope/exception criteria
Optional: AI/Automation
- Map automation findings to
CC-* IDs (linters, SAST, dependency scanning) so humans can review impact, not tooling noise.
- Keep AI-assisted suggestions advisory; human reviewers approve/deny with rule citations (https://conventionalcomments.org/).
- Prefer GitHub rulesets, SARIF-capable scanners, and repository-native code scanning for durable enforcement/reporting.
Reviewing AI-Generated Code
AI-generated code requires the same CC-* standards plus additional vigilance for these patterns:
| Pattern |
CC-* Mapping |
Detection |
| Hallucinated imports |
CC-DEP-* |
npm info / pip index / type-check fails |
| Stale or deprecated APIs |
CC-DEP-* |
Compiler warnings, changelog checks |
| Missing error paths |
CC-ERR-* |
No catch/finally, no null guards, no timeout |
| Premature abstraction |
CC-COMPLEXITY-* |
Wrappers with single call site, unused generics |
| Confident wrong comments |
CC-NAMING-* |
Docstrings that don't match implementation |
| Security anti-patterns |
CC-SEC-* |
String concatenation in queries, hardcoded tokens |
For detailed hallucination detection steps, see references/code-quality-operational-playbook.md § 11.3.
Navigation
Resources
- references/clean-code-standard.md
- references/code-quality-operational-playbook.md — Legacy operational playbook (RULE-01–RULE-13)
- references/clean-code-operational-checklist.md
- references/clean-coder-operational-checklist.md
- references/code-complete-operational-checklist.md
- references/pragmatic-programmer-operational-checklist.md
- references/practice-of-programming-operational-checklist.md
- references/working-effectively-with-legacy-code-operational-checklist.md
- references/art-of-clean-code-operational-checklist.md
- references/refactoring-operational-checklist.md
- references/design-patterns-operational-checklist.md
- references/functional-programming-patterns.md — Result/Either types, pipe/compose, immutability, pure functions, railway-oriented programming, CC-* rule mapping
- references/code-complexity-metrics.md — Cyclomatic/cognitive complexity, Halstead metrics, nesting depth, tooling (ESLint, Biome, Oxlint, SonarQube, Ruff), refactoring triggers
- data/sources.json — Current external references for review, security-by-design, observability, and modern tooling (official docs first)
- CONVENTIONS.md — Skill structure and validation conventions
- SKILL-TEMPLATE.md — Copy-paste starter for new skills
- sources-schema.json — JSON schema for
data/sources.json
- skill-dependencies.json — Related-skills dependency graph
Templates
- assets/checklists/backend-api-review-checklist.md
- assets/checklists/secure-code-review-checklist.md
- assets/checklists/frontend-performance-a11y-checklist.md
- assets/checklists/mobile-release-checklist.md
- assets/checklists/ux-design-review-checklist.md
- assets/checklists/ux-research-plan-template.md
Utility Patterns
- references/utility-patterns.md — When and how to extract a utility instead of duplicating code (the decision guide above the concrete utilities below)
- references/auth-utilities.md
- references/error-handling.md
- references/config-validation.md
- references/resilience-utilities.md
- references/logging-utilities.md
- references/observability-utilities.md
- references/testing-utilities.md
- references/llm-utilities.md
Related Skills
Freshness Protocol
IMPORTANT: When users ask recommendation questions about clean code standards, linters, formatters, static analysis, or code quality tools, you MUST verify current guidance with web search and official docs before answering. If web search is unavailable, say so and answer using data/sources.json, clearly flagging that the recommendation may be stale.
Trigger Conditions
- "What's the best linter for [language]?"
- "What should I use for [code quality/static analysis]?"
- "What's the latest in clean code practices?"
- "Current best practices for [code standards/formatting]?"
- "Is [ESLint/Prettier/Biome] still relevant?"
- "[Biome] vs [ESLint] vs [other]?"
- "Best static analysis tool for [language]?"
- "Should we switch from [legacy tool] to [new tool]?"
- "What should we use in CI for code scanning or code quality gates?"
Required Verification Workflow
- Check official docs first for the named tool(s): current docs, release notes/changelog, migration guidance, and supported workflows.
- Check the official standard/spec when relevant: RFCs, OWASP, NIST, OpenTelemetry, GitHub Docs.
- Use web search for cross-tool comparisons or current adoption trends only after confirming the primary-source facts.
- Prefer at most one neutral secondary comparison source when the user explicitly wants market positioning or tradeoff analysis.
What to Report
After verifying, provide:
- Current default choice: What you would adopt now for the user’s stack and why
- Current landscape: Which tools are current, maintained, and commonly paired together
- Migration risk: Flat config changes, rule-coverage gaps, formatter/linter consolidation, CI/reporting implications
- Deprecated/declining: Tools or approaches losing relevance for this use case
- Recommendation: Based on fresh official data, not static memory
Example Topics (verify with fresh search)
- JavaScript/TypeScript linters (ESLint, Biome, oxlint)
- Formatters (Prettier, dprint, Biome)
- Python quality (Ruff,
ty, mypy, pylint)
- Go linting (golangci-lint, staticcheck)
- Rust analysis (clippy, cargo-deny)
- Code quality metrics and reporting tools
- Code scanning and security automation (CodeQL, Semgrep, SARIF workflows)
- GitHub enforcement controls (rulesets, CODEOWNERS, protected branches)
Known Traps
- Treating “clean code” as style preference only and ignoring correctness, observability, security, and change safety.
- Enforcing blanket abstraction rules that increase indirection and reduce runtime clarity in the name of cleanliness.
- Mixing language-specific formatter and linter opinions into universal guidance without preserving the stable CC rule intent.
- Letting tool defaults silently redefine the team standard when the explicit repository rule IDs say otherwise.
- Auditing code solely from static style output and missing failure-mode, data-boundary, and operability risks.
Common Anti-Patterns
- Replacing concrete, understandable code with layered abstractions just to satisfy a cleanliness aesthetic.
- Treating short functions, DRY, or naming rules as absolute even when they harm cohesion, locality, or domain clarity.
- Using “clean code” to block pragmatic duplication that preserves boundaries or avoids premature frameworks.
- Turning rule IDs into checklist theater with no explanation of why the rule matters for maintainability or safety.
- Applying one language ecosystem’s conventions wholesale to another without adaptation for tooling, runtime, and team workflow.
Fact-Checking
- Known bugs, regressions, framework/compiler/runtime footguns, and version-specific crash or workaround guidance must be verified against current primary web sources before being treated as current fact.
- Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
- Prefer primary sources; report source links and dates for volatile information, and distinguish facts from inference.
- If web access is unavailable, state the limitation and mark guidance as unverified.
Learnings Loop
Before applying this skill on a non-trivial task, read learnings.consolidated.md in this directory (and learnings.md if present).
After applying it, if you encountered a pattern worth remembering, a mistake worth preventing, or a domain fact that surprised you, append one dated bullet to learnings.md via agents-skills-feedback-loop/scripts/append_learning.py. Do not modify SKILL.md itself.
1---2name: software-clean-code-standard3description: Defines clean-code standards and CC-* rules. Use when reviewing code, setting team standards, citing lint findings, or measuring erosion, complexity mass, and verbosity.4---5
6# Clean Code Standard
7
8This skill is the authoritative clean code standard for this repository's shared skills. It defines stable rule IDs (`CC-*`), how to apply them in reviews, and how to extend them safely via language overlays and explicit exceptions.
9
10**Modern Best Practices**: Prefer small, reviewable changes and durable change context. Use BCP 14 normative language consistently (RFC 2119 + RFC 8174). Treat security-by-design and secure defaults as baseline (OWASP Top Ten 2025, NIST SSDF). Prefer GitHub rulesets over branch-protection-only governance. Build observable systems with OpenTelemetry. For current tool choices, consult `data/sources.json` and prefer official docs first.
11
12**Judgment over dogma**: This standard's `CC-*` rules are durable (coupling/cohesion, naming, small interfaces, explicit errors). Numeric folklore — hard function-length caps, "comments are a smell," DRY applied absolutely — is not. Robert C. Martin's *Clean Code* (2nd ed., 2025) and John Ousterhout's *A Philosophy of Software Design* disagree in a published, public debate on function size and commenting (see [references/code-quality-operational-playbook.md § 14](references/code-quality-operational-playbook.md#14-judgment-over-dogma)); apply the rule ID's intent, not a book's specific numeric prescription, and know when *not* to refactor (§ 14.3 of the same reference).
13
14---
15
16## Quick Reference
17
18| Task | Tool/Framework | Command | When to Use |
19|------|-----|---------|-------------|
20| Cite a standard | `CC-*` rule ID | N/A | PR review comments, design discussions, postmortems |
21| Categorize feedback | `CC-NAM`, `CC-ERR`, `CC-SEC`, etc. | N/A | Keep feedback consistent without "style wars" |
22| Add stack nuance | Language overlay | N/A | When the base rule is too generic for a language/framework |
23| Allow an exception | Waiver record | N/A | When a rule must be violated with explicit risk |
24| Reuse shared checklists | `assets/checklists/` | N/A | When you need product-agnostic review/release checklists |
25| Reuse utility patterns | `references/*-utilities.md` | N/A | When extracting shared auth/logging/errors/resilience/testing utilities |
26
27## When to Use This Skill
28
29- Defining or enforcing clean code rules across teams and languages.
30- Reviewing code: cite `CC-*` IDs and avoid restating standards in reviews.
31- Building automation: map linters/CI gates to `CC-*` IDs.
32- Resolving recurring review debates: align on rule IDs, scope, and exceptions.
33
34## When NOT to Use This Skill
35
36- **Deep security audits** → [software-security-appsec](../software-security-appsec/SKILL.md) for OWASP/SAST deep dives beyond `CC-SEC-*` baseline.
37- **Review workflow mechanics** → [software-code-review](../software-code-review/SKILL.md) for PR workflow, reviewer assignment, and feedback patterns.
38- **Refactoring execution** → [qa-refactoring](../qa-refactoring/SKILL.md) for step-by-step refactoring patterns and quality gates.
39- **Architecture decisions** → [software-architecture-design](../software-architecture-design/SKILL.md) for system-level tradeoffs beyond code-level rules.
40
41## Workflow
42
431. Decide whether the request is about a base rule, an overlay, or an exception.
442. Route security, review-process, or refactoring mechanics to the adjacent skill if that is the real problem.
453. Anchor the guidance in existing `CC-*` rules before proposing new wording or automation.
464. Apply the relevant standard, overlay, or waiver pattern with explicit scope and rationale.
475. Cross-check against the navigation references before adding or revising durable standards.
48
49## Rule Application Checklist
50
51When citing or enforcing `CC-*` rules in a review:
52
53- [ ] Rule ID cited explicitly (not paraphrased) — e.g. `CC-SEC-001`, `CC-ERR-003`
54- [ ] Scope stated: file, module, service, or whole repo
55- [ ] Language overlay applied if the repo is language-specific and the base rule is ambiguous
56- [ ] Blocking vs advisory: correctness/security findings block merge; style findings are advisory
57- [ ] Waiver path documented if the rule genuinely cannot be satisfied without architectural change
58
59## ASCII Flow
60
61```text
62Clean-code request
63 -> Identify behavior that must stay unchanged
64 -> Find duplication, unclear boundaries, or unsafe complexity
65 -> Refactor in the smallest coherent slice
66 -> Preserve public contracts and naming consistency
67 -> Add or adjust tests for changed control flow
68 -> Run focused verification and report residual risk
69```
70
71## Decision Tree: Base Rule vs Overlay vs Exception
72
73```text
74Feedback needed: [What kind of guidance is this?]
75 ├─ Universal, cross-language rule? → Add/modify `CC-*` in `references/clean-code-standard.md`
76 │
77 ├─ Language/framework-specific nuance? → Add overlay entry referencing existing `CC-*`
78 │
79 └─ One-off constraint or temporary tradeoff?
80 ├─ Timeboxed? → Add waiver with expiry + tracking issue
81 └─ Permanent? → Propose a new rule or revise scope/exception criteria
82```
83
84---
85
86## Optional: AI/Automation
87
88- Map automation findings to `CC-*` IDs (linters, SAST, dependency scanning) so humans can review impact, not tooling noise.
89- Keep AI-assisted suggestions advisory; human reviewers approve/deny with rule citations (https://conventionalcomments.org/).
90- Prefer GitHub rulesets, SARIF-capable scanners, and repository-native code scanning for durable enforcement/reporting.
91
92### Reviewing AI-Generated Code
93
94AI-generated code requires the same CC-* standards plus additional vigilance for these patterns:
95
96| Pattern | CC-* Mapping | Detection |
97|---------|-------------|-----------|
98| Hallucinated imports | CC-DEP-* | `npm info` / `pip index` / type-check fails |
99| Stale or deprecated APIs | CC-DEP-* | Compiler warnings, changelog checks |
100| Missing error paths | CC-ERR-* | No catch/finally, no null guards, no timeout |
101| Premature abstraction | CC-COMPLEXITY-* | Wrappers with single call site, unused generics |
102| Confident wrong comments | CC-NAMING-* | Docstrings that don't match implementation |
103| Security anti-patterns | CC-SEC-* | String concatenation in queries, hardcoded tokens |
104
105For detailed hallucination detection steps, see [references/code-quality-operational-playbook.md § 11.3](references/code-quality-operational-playbook.md#113-hallucination-detection-checklist).
106
107---
108
109## Navigation
110
111**Resources**
112- [references/clean-code-standard.md](references/clean-code-standard.md)
113- [references/code-quality-operational-playbook.md](references/code-quality-operational-playbook.md) — Legacy operational playbook (RULE-01–RULE-13)
114- [references/clean-code-operational-checklist.md](references/clean-code-operational-checklist.md)
115- [references/clean-coder-operational-checklist.md](references/clean-coder-operational-checklist.md)
116- [references/code-complete-operational-checklist.md](references/code-complete-operational-checklist.md)
117- [references/pragmatic-programmer-operational-checklist.md](references/pragmatic-programmer-operational-checklist.md)
118- [references/practice-of-programming-operational-checklist.md](references/practice-of-programming-operational-checklist.md)
119- [references/working-effectively-with-legacy-code-operational-checklist.md](references/working-effectively-with-legacy-code-operational-checklist.md)
120- [references/art-of-clean-code-operational-checklist.md](references/art-of-clean-code-operational-checklist.md)
121- [references/refactoring-operational-checklist.md](references/refactoring-operational-checklist.md)
122- [references/design-patterns-operational-checklist.md](references/design-patterns-operational-checklist.md)
123- [references/functional-programming-patterns.md](references/functional-programming-patterns.md) — Result/Either types, pipe/compose, immutability, pure functions, railway-oriented programming, CC-* rule mapping
124- [references/code-complexity-metrics.md](references/code-complexity-metrics.md) — Cyclomatic/cognitive complexity, Halstead metrics, nesting depth, tooling (ESLint, Biome, Oxlint, SonarQube, Ruff), refactoring triggers
125- [data/sources.json](data/sources.json) — Current external references for review, security-by-design, observability, and modern tooling (official docs first)
126- [CONVENTIONS.md](CONVENTIONS.md) — Skill structure and validation conventions
127- [SKILL-TEMPLATE.md](SKILL-TEMPLATE.md) — Copy-paste starter for new skills
128- [sources-schema.json](sources-schema.json) — JSON schema for `data/sources.json`
129- [skill-dependencies.json](skill-dependencies.json) — Related-skills dependency graph
130
131**Templates**
132- [assets/checklists/backend-api-review-checklist.md](assets/checklists/backend-api-review-checklist.md)
133- [assets/checklists/secure-code-review-checklist.md](assets/checklists/secure-code-review-checklist.md)
134- [assets/checklists/frontend-performance-a11y-checklist.md](assets/checklists/frontend-performance-a11y-checklist.md)
135- [assets/checklists/mobile-release-checklist.md](assets/checklists/mobile-release-checklist.md)
136- [assets/checklists/ux-design-review-checklist.md](assets/checklists/ux-design-review-checklist.md)
137- [assets/checklists/ux-research-plan-template.md](assets/checklists/ux-research-plan-template.md)
138
139**Utility Patterns**
140
141- [references/utility-patterns.md](references/utility-patterns.md) — When and how to extract a utility instead of duplicating code (the decision guide above the concrete utilities below)
142- [references/auth-utilities.md](references/auth-utilities.md)
143- [references/error-handling.md](references/error-handling.md)
144- [references/config-validation.md](references/config-validation.md)
145- [references/resilience-utilities.md](references/resilience-utilities.md)
146- [references/logging-utilities.md](references/logging-utilities.md)
147- [references/observability-utilities.md](references/observability-utilities.md)
148- [references/testing-utilities.md](references/testing-utilities.md)
149- [references/llm-utilities.md](references/llm-utilities.md)
150
151**Related Skills**
152- [../software-code-review/SKILL.md](../software-code-review/SKILL.md) — Review workflow and judgment; cite `CC-*` IDs
153- [../software-security-appsec/SKILL.md](../software-security-appsec/SKILL.md) — Security deep dives beyond baseline `CC-SEC-*`
154- [../qa-refactoring/SKILL.md](../qa-refactoring/SKILL.md) — Refactoring execution patterns and quality gates
155- [../software-architecture-design/SKILL.md](../software-architecture-design/SKILL.md) — System-level tradeoffs and boundaries
156
157---
158
159## Freshness Protocol
160
161**IMPORTANT**: When users ask recommendation questions about clean code standards, linters, formatters, static analysis, or code quality tools, you MUST verify current guidance with web search and official docs before answering. If web search is unavailable, say so and answer using `data/sources.json`, clearly flagging that the recommendation may be stale.
162
163### Trigger Conditions
164
165- "What's the best linter for [language]?"
166- "What should I use for [code quality/static analysis]?"
167- "What's the latest in clean code practices?"
168- "Current best practices for [code standards/formatting]?"
169- "Is [ESLint/Prettier/Biome] still relevant?"
170- "[Biome] vs [ESLint] vs [other]?"
171- "Best static analysis tool for [language]?"
172- "Should we switch from [legacy tool] to [new tool]?"
173- "What should we use in CI for code scanning or code quality gates?"
174
175### Required Verification Workflow
176
1771. Check official docs first for the named tool(s): current docs, release notes/changelog, migration guidance, and supported workflows.
1782. Check the official standard/spec when relevant: RFCs, OWASP, NIST, OpenTelemetry, GitHub Docs.
1793. Use web search for cross-tool comparisons or current adoption trends only after confirming the primary-source facts.
1804. Prefer at most one neutral secondary comparison source when the user explicitly wants market positioning or tradeoff analysis.
181
182### What to Report
183
184After verifying, provide:
185
186- **Current default choice**: What you would adopt now for the user’s stack and why
187- **Current landscape**: Which tools are current, maintained, and commonly paired together
188- **Migration risk**: Flat config changes, rule-coverage gaps, formatter/linter consolidation, CI/reporting implications
189- **Deprecated/declining**: Tools or approaches losing relevance for this use case
190- **Recommendation**: Based on fresh official data, not static memory
191
192### Example Topics (verify with fresh search)
193
194- JavaScript/TypeScript linters (ESLint, Biome, oxlint)
195- Formatters (Prettier, dprint, Biome)
196- Python quality (Ruff, `ty`, mypy, pylint)
197- Go linting (golangci-lint, staticcheck)
198- Rust analysis (clippy, cargo-deny)
199- Code quality metrics and reporting tools
200- Code scanning and security automation (CodeQL, Semgrep, SARIF workflows)
201- GitHub enforcement controls (rulesets, CODEOWNERS, protected branches)
202
203## Known Traps
204
205- Treating “clean code” as style preference only and ignoring correctness, observability, security, and change safety.
206- Enforcing blanket abstraction rules that increase indirection and reduce runtime clarity in the name of cleanliness.
207- Mixing language-specific formatter and linter opinions into universal guidance without preserving the stable CC rule intent.
208- Letting tool defaults silently redefine the team standard when the explicit repository rule IDs say otherwise.
209- Auditing code solely from static style output and missing failure-mode, data-boundary, and operability risks.
210
211## Common Anti-Patterns
212
213- Replacing concrete, understandable code with layered abstractions just to satisfy a cleanliness aesthetic.
214- Treating short functions, DRY, or naming rules as absolute even when they harm cohesion, locality, or domain clarity.
215- Using “clean code” to block pragmatic duplication that preserves boundaries or avoids premature frameworks.
216- Turning rule IDs into checklist theater with no explanation of why the rule matters for maintainability or safety.
217- Applying one language ecosystem’s conventions wholesale to another without adaptation for tooling, runtime, and team workflow.
218
219## Fact-Checking
220
221- Known bugs, regressions, framework/compiler/runtime footguns, and version-specific crash or workaround guidance must be verified against current primary web sources before being treated as current fact.
222- Use web search/web fetch to verify current external facts, versions, pricing, deadlines, regulations, or platform behavior before final answers.
223- Prefer primary sources; report source links and dates for volatile information, and distinguish facts from inference.
224- If web access is unavailable, state the limitation and mark guidance as unverified.
225
226## Learnings Loop
227
228Before applying this skill on a non-trivial task, read `learnings.consolidated.md` in this directory (and `learnings.md` if present).
229
230After applying it, if you encountered a pattern worth remembering, a mistake worth preventing, or a domain fact that surprised you, append one dated bullet to `learnings.md` via `agents-skills-feedback-loop/scripts/append_learning.py`. Do not modify `SKILL.md` itself.