Guard AI-generated code against systematic quality failures
A skill that guards generated code against 24 clean-code and AI-specific failure imperatives before it ships.
Why it matters
Prevent the 14 documented failure modes of LLM-generated code by enforcing Clean Code, SOLID, and DRY/KISS/YAGNI principles through automated guard passes, live enforcement during writing, and structured review checklists before code ships.
Outcomes
What it gets done
Run guard-pass checks on diffs to catch naming violations, oversized functions, and AI-specific smells before commit
Enforce live rules during code generation to prevent duplication, broad exception handlers, and contract violations
Execute structured review mode with prioritized findings from naming, SOLID, and complexity checklists
Block output arguments, boolean flags, and comment scaffolding that paraphrase code instead of explaining intent
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/ag-clean-code-guard | bash Overview
Clean Code Guard
A skill that guards generated code against 24 always-applied imperatives - clean-code fundamentals, SOLID, DRY/KISS/YAGNI, and AI-specific failure modes like hallucinated imports and fake success returns. Use it reactively after code is generated or refactored - it defers to the project's own linters and test runners, reserving itself for the judgment layer around code quality.
What it does
This skill reviews generated or changed code before it ships, applying a guard pass after the first implementation pass and re-running it after every later edit in the same session rather than reverting to unguarded output once the skill has loaded. It exists because LLM-generated code has measurable, systematic failure modes that generic "follow clean code" instructions miss: code duplication grew 8x in tracked codebases between 2021 and 2024 (GitClear), package hallucination averages 19.6% across 16 models (Spracklen et al., USENIX Security '25), LLMs commonly wrap risky operations in broad catch-all handlers that swallow errors (Karpathy), agents declare success despite failing tests by returning hardcoded fixture values (Fowler), and function size grew from 142 to 267 lines with cyclomatic complexity from 4.2 to 8.1 in AI-assisted commits (GitClear). Classic Clean Code/SOLID/DRY-KISS-YAGNI principles are still the foundation, but this skill adds the AI-specific layer most rule packs miss.
It runs in three modes: guard-pass (recommended, checking a diff or target files against its imperatives after code is written), live mode (applying the same imperatives while writing, then a self-check), and review mode (walking a structured checklist to produce findings without editing unless asked). Rule detail lives in seven reference files - naming/functions, comments/formatting, SOLID, DRY/KISS/YAGNI, a 14-item AI-failure-modes file flagged as the highest-leverage read for an AI agent, the review checklist, and a source bibliography.
Twenty-four always-applied imperatives, grouped. Functions and names: names must reveal intent (banning bare data/result/temp/helper/manager without a qualifier); functions stay at 20 lines or fewer, one abstraction level, one thing; four arguments is the hard ceiling, with a request object past that and no boolean flag arguments; and a function either returns a value or has a side effect, never both (command-query separation). Comments and structure: comments explain why, never what, and commented-out code gets deleted since version control exists; new code matches the file's existing style rather than introducing a second pattern. SOLID: one stakeholder group per module (SRP); new variants extend via registry/strategy/polymorphism rather than another branch in an existing function (OCP); no subclass override signals "unsupported" or weakens its parent's contract (LSP); and abstractions live in the consuming package, not next to the concrete class (DIP). DRY/KISS/YAGNI: delete duplicated knowledge, not duplicated-looking text; re-inline a wrong abstraction that's accumulated per-caller branches before re-abstracting (Sandi Metz); keep cyclomatic complexity at 10 or below and nesting at 5 or below; and never add a speculative parameter, flag, or interface with no present-day caller.
The AI-specific guardrails section covers: never swallowing errors in a broad catch-all (catch only what you can recover from, or let it propagate); guarding trust boundaries (external input, deserialized data) while trusting the contract inside them; verifying every import and external call actually exists in the installed version rather than generating from what an API "should" look like; never returning hardcoded success or mock fixtures from production code, and never weakening a test to make it pass; re-deriving from spec instead of copying and modifying a similar function, since off-by-one bugs enter through copy-from-similar; enumerating boundary cases (range, off-by-one, null/empty, unicode) before writing them; stripping dead code and unused exports before delivery; reading the target file, a neighbor, and any project rules file before writing in an unfamiliar repo; and never adding a new dependency for what a few lines of local code already cover.
Four items form a floor that never gets cut for simplicity even while stripping speculation or dead code: validation at every trust boundary, error handling that prevents data loss, security measures (authorization, escaping, parameterized queries, secrets), and behavior the user explicitly requested. Refactoring must preserve observable behavior exactly - a spotted bug gets flagged separately and asked about, never bundled into the same change. The self-check before delivery walks all 24 imperatives against the diff, checking function size/params/complexity, comment quality, error-handler specificity, whether new abstractions have a second concrete user today, and whether a refactor changed any observable behavior. After the pass it reports each actual fix made (never an invented quality score) and closes with a one-line summary like clean-code-guard: 3 fixed, 1 flagged for author.
When to use - and when NOT to
Use it reactively after an agent writes, edits, or refactors production code, or proactively in live mode before a risky edit. It requires no MCP server, network access, API key, or bundled executable - it's a portable instruction skill usable anywhere SKILL.md plus its reference files can be read. It stays silent for conceptual, CI, git-workflow, prose, data-analysis, and test-running tasks, does not run linters or static analysis itself, does not enforce formatter preferences, and does not replace tests - clean code passes tests, but clean code without tests is still a defect.
Inputs and outputs
Input is generated or changed production code (a diff or target files) plus the project's own conventions (CLAUDE.md/AGENTS.md, README conventions) which win on conflict. Output is either corrected code with a fix-count summary (guard-pass/live mode) or a structured findings report (review mode).
Integrations
It defers to the project's own linters, formatters, type checkers, and test runners for mechanical verification, reserving itself for the judgment layer around code quality, and pulls its rule detail from seven reference files covering naming, comments, SOLID, DRY/KISS/YAGNI, AI-specific failure modes, the review checklist, and a source bibliography.
Who it's for
Developers and agents shipping AI-generated or AI-assisted code who need the AI-specific failure modes (hallucinated imports, hardcoded success returns, copy-from-similar bugs) caught alongside classic clean-code violations, with refactors verified to preserve behavior exactly.
Source README
clean-code-guard
You are reviewing generated or changed code before it ships. Apply the rules below as a guard pass after the first implementation pass - and once this skill is active, keep applying it to every later code change in the same session, re-running the self-check before delivery after each edit rather than reverting to unguarded output because the skill loaded earlier. If the user explicitly invokes this skill before writing code, use the same rules while writing and still run the self-check before delivery.
When to Use
Use this skill when reviewing generated or changed code before it ships. Activate it reactively after an agent writes, edits, or refactors production code - especially after a first implementation pass. Re-run the guard pass before delivery after each edit.
Compatibility
This is a portable instruction skill. It requires no MCP server, network access,
API key, shell command, local executable, or bundled script. It can be used in
any runtime that supports SKILL.md plus directly linked references/
files; agents/openai.yaml is lightweight display metadata.
This skill does not replace project linters, formatters, type checkers, or test
runners. Use the project's own tools for mechanical verification; use this skill
for the judgement layer around code quality and review.
How to use this skill
This skill has three modes - pick based on the user's request.
Guard-pass mode (recommended): after code has been generated, edited, refactored, or fixed, check the diff or target files against the Always-applied imperatives below. Fix violations before presenting, committing, or merging the work.
Live mode (explicit): when the user invokes this skill before a risky code edit, apply the same imperatives while writing, then run the Self-check before delivery checklist. If you violate any rule, fix it before showing the user.
Review mode (triggered when the user asks you to review, audit, critique, or rate code): walk references/review-checklist.md against the target file(s) and produce a structured findings report. Do not edit code in review mode unless asked.
Across all three modes, the rule bodies live in references/. Read the relevant reference file when:
- You hit a rule you don't fully remember the reasoning for.
- The user pushes back on a rule and you need the source citation.
- You're in review mode and need the full checklist.
- The code under review touches a specific principle (e.g., subclassing → references/solid.md; deduplication → references/dry-kiss-yagni.md).
The reference files are:
- references/naming-and-functions.md - names, function size, parameters, command/query separation.
- references/comments-and-formatting.md - when to comment, when to delete, matching neighbor style.
- references/solid.md - SRP, OCP, LSP, ISP, DIP with the modern phrasings and detection smells.
- references/dry-kiss-yagni.md - knowledge vs code duplication, Sandi Metz's re-inline rule, McCabe complexity, Fowler's YAGNI cost categories.
- references/ai-failure-modes.md - the 14 systematic ways LLMs produce bad code. Read this one first if you are an AI agent reading this skill. It is the highest-leverage file in the skill.
- references/review-checklist.md - structured walk-through for review mode.
- references/sources.md - central bibliography for source URLs. Read it only when you need to verify or cite an external source.
Examples
- A coding agent implements an endpoint: use guard-pass mode on the diff before
the work is presented or committed. - User asks "review this PR" or "should I merge this?": use review mode and
report findings from references/review-checklist.md; do not edit unless
asked. - User asks "implement this endpoint using clean-code-guard": use live mode
while writing, then run the self-check before delivery. - User asks "refactor this function, same behavior": preserve observable
behavior exactly and treat any bug fix as a separate change.
Success criteria
This skill is working when code-writing tasks avoid the listed failure modes,
code-review tasks produce prioritized findings with concrete evidence, and
refactors preserve behavior unless the user explicitly asks for a behavior
change. It should stay silent for conceptual, CI, git workflow, prose, data
analysis, and test-running tasks covered by the frontmatter exclusions.
Why this skill exists
LLM-generated code has measurable, systematic failure modes that generic "follow clean code" instructions do not catch. Examples backed by published research:
- Code duplication grew 8x in tracked codebases between 2021 and 2024 (GitClear 2025 report).
- Package hallucination rate averages 19.6% across 16 models (Spracklen et al., USENIX Security '25).
- LLMs often wrap risky operations in broad catch-all handlers that swallow errors (Karpathy).
- AI agents "declare success despite failing tests" by returning hardcoded fixture values (Fowler, Patterns for Reducing Friction).
- Function size grew from 142 to 267 LoC, cyclomatic complexity from 4.2 to 8.1 in AI-assisted commits (GitClear).
The classic principles (Clean Code, SOLID, DRY/KISS/YAGNI) are still the foundation - but this skill adds the AI-specific layer most rule packs miss.
Always-applied imperatives
These are the rules to follow on every code change. They are imperative, not suggestions.
Functions and names
- Names reveal intent. Never use
data,data2,result,result_final,item,temp,value,obj,info,helper,manager,utils, orhandle_*/process_*/do_*without a qualifier. A name must answer why it exists and what it does. (Clean Code Ch. 2) - Functions stay small. Target ≤20 lines, one level of abstraction, one thing. If you can extract a function with a name that doesn't restate the body, the parent was doing more than one thing. (Clean Code Ch. 3)
- Four arguments is the hard ceiling. At five, stop and introduce a request/config object (record, struct, DTO, or equivalent). Never use boolean flag arguments - split into two functions instead.
- No output arguments. A function either returns a value (query) or has a side effect (command). Never both. Command names use verbs; query names use nouns or getter-style names. (CQS)
Comments and structure
- Comments explain why, never what. Delete any comment that paraphrases the line below it. Delete step-number scaffolding comments. Delete commented-out code - version control exists. (Clean Code Ch. 4)
- Match the file's existing style. Read the file you're editing and at least one neighbor before writing. Mirror the casing, import order, error handling, logging, and HTTP/DB client choices. Do not introduce a second pattern.
SOLID
- One actor per module. A class should be answerable to one stakeholder group (Accounting, Auth, Reporting). If two unrelated subsystems both reach into the same class, split it. (SRP, Uncle Bob 2014)
- Extension via new code, not edits. If adding a new variant requires another type-tag branch in an existing function, refactor to a registry, strategy, or polymorphic dispatch first. (OCP)
- No subclass refuses its parent's contract. Never override a method to signal "not implemented" or "unsupported operation." Never strengthen preconditions or weaken postconditions in an override. If you need to do that, the inheritance is wrong. (LSP)
- Abstractions live with the client, not the implementation. When you introduce an interface, protocol, or abstract contract, put it in the package that consumes it, not next to the concrete class. (DIP)
DRY, KISS, YAGNI
- Delete duplicated knowledge, not duplicated text. Two functions that look alike but encode different rules are not a DRY violation. One rule expressed in code + docs + schema is. (Pragmatic Programmer, "DRY")
- The wrong abstraction is worse than duplication. If an abstraction has accumulated branches for each caller's special case, re-inline it back into callers, then delete the dead branches before re-abstracting. (Sandi Metz, "The Wrong Abstraction")
- Complexity ceiling: cyclomatic ≤10, nesting depth ≤5. Refactor before exceeding. (McCabe 1976)
- No speculative anything. No optional parameter, config flag, env var, feature toggle, interface, factory, or base class without a present-day caller. If you find yourself adding
enable_*,use_*_v2, or*_mode, delete it and ship the concrete behavior. (Fowler, "Yagni")
AI-specific guardrails - the highest-leverage section
- Never swallow errors with broad catch-all handling. Catch only the specific error type you can recover from. If you cannot recover, let the error propagate. Returning null/none/empty success from a catch handler is forbidden unless the function contract documents that behavior. (Karpathy)
- Guard the boundary; trust the contract. At a trust boundary - external input, request/API payloads, deserialized or cross-process data, anything from an untrusted source - validate, even when the happy path looks fine. Inside the boundary, do not add null checks or runtime type checks for values whose declared type or caller contract already excludes that case. The test for a guard is not "could this theoretically be wrong" but "can untrusted data reach here." (arXiv 2409.19182)
- Verify every import and external call. Before calling a method on a library, confirm it exists in the version installed (read the package, check the lockfile, or import and inspect). Do not generate code based on what the API "should" look like. (USENIX Security '25)
- No hardcoded "success" returns or mock fixtures in production code. Never return
{"status": "ok", ...}or canned data from a function whose spec says it does real work. If you cannot implement, fail explicitly with the language's unimplemented or unsupported-operation mechanism and say so. Never disable, skip, or weaken a test to make it pass. (Fowler, Claude Code issue #6984) - Re-derive, do not copy from similar. When tempted to copy a function and modify it, stop. Re-derive from the spec. Off-by-one and wrong-null-semantic bugs almost always enter through copy-from-similar. (arXiv 2411.01414)
- Enumerate boundary cases before writing them. For any range, off-by-one, null/empty/one/many, even/odd, or unicode/byte boundary, write the case list in a comment first. Cover each case in code before moving on.
- Strip dead code before delivery. Run a linter or grep pass for unused imports, unused symbols, unreachable branches, and "just in case" exports. Remove them. A function that nothing calls today does not get to live for "someday."
- Read before write. Before writing in an unfamiliar repo, read the file you'll edit, one neighbor, and any project rules file (CLAUDE.md, AGENTS.md, README's "conventions" section). Use the project's existing helpers, error types, and logging.
- No new dependency for what a few lines cover. Before adding a package, check the standard library, the already-installed dependencies, and whether a few lines of local code do the job. A new dependency is permanent maintenance and supply-chain surface; add one only when it owns real complexity you should not re-implement (cryptography, parsing, time zones - illustrative, not exhaustive), never to save ten lines. See references/dry-kiss-yagni.md.
The floor - never cut these for simplicity
Rule 16 trusts the contract inside the boundary; the items below stay even while you strip speculation (14), defensive guards (16), and dead code (21). Removing one of these is a behavior change, not a cleanup - keep it, or flag it and ask.
- Validation and sanitization at every trust boundary - external input, request/API payloads, deserialized or cross-process data.
- Error handling that prevents data loss.
- Security measures - authorization, output escaping, parameterized queries, secret handling.
- Behavior the user explicitly requested. Idly mentioned ≠ requested, but do not drop what was asked for.
Refactoring discipline
- Preserve observable behavior when refactoring. When the user asks you to clean up, simplify, or refactor existing code, do not change the contract - same inputs produce the same outputs, same exceptions raised, same side effects, same ordering guarantees. If you spot a bug while refactoring, flag it separately and ask before changing it. Refactoring is defined as "a change made to the internal structure of software to make it easier to understand and cheaper to modify without changing its observable behavior" (Fowler, Refactoring). Bug fixes and refactors are two operations - never bundle them in a single change.
Self-check before delivery
Before you show the user the code you wrote or edited:
- Walk imperatives 1-24 against your diff. Fix every violation.
- For new functions, count: lines ≤ 20? params ≤ 4? complexity feels ≤ 10? names reveal intent?
- For new comments, ask: does this explain why? If it explains what, delete it.
- For new error handling: is the caught error type specific? Does the handler do something other than silently return?
- For new abstractions (interface, factory, base class, registry): is there a second concrete user today? If no, inline it.
- Did you read the file you edited and at least one neighbor? Did your style match?
- Is there any hardcoded "ok" return or fixture data? If yes, replace with real implementation or an explicit unimplemented/unsupported-operation failure.
- If this is a refactor: did you change observable behavior? If yes, you bundled a bug fix - split it out and ask the user.
If you cannot answer yes to every check, fix before shipping.
After the guard pass, surface it so the user can see it ran (guard-pass and live modes - review mode reports through its own findings format). List each fix as <file>[:<line>] — <what changed>, omitting the line number if it is unstable, then close with one line: clean-code-guard: <N> fixed, <M> flagged for author - or clean-code-guard: clean if nothing triggered. Report only changes you actually made; never estimate a quality score or percentage - no baseline exists, so such a number would be invented. This reports the pass; it does not block presenting or committing.
When the user pushes back on a rule
Refer them to the source name in the relevant references/ file and use references/sources.md only when the URL is needed. The rules are defensible - they come from primary sources (Uncle Bob, Fowler, Hunt & Thomas, McCabe, Metz) and from published 2024-2026 research on LLM code generation. If the user has a context-specific reason to override (e.g., a constructor genuinely needs 8 params for a config DTO), document the exception in a code comment that names the principle being overridden, the reason, and a revisit trigger - the condition under which it should be reconsidered. An exception comment with no revisit trigger is itself a finding on the next pass: a tradeoff with no exit is just deferred debt.
Troubleshooting
- If the task is conceptual rather than code-producing, do not apply this skill;
answer the concept directly. - If review mode starts producing style-only feedback, use
references/review-checklist.md and prioritize behavioral bugs, brittleness,
and maintainability risks. - If a rule conflicts with an explicit project convention, follow the project
convention and document the exception only when it would otherwise surprise a
future maintainer. - If the skill feels too broad, use the frontmatter exclusions first; do not add
runtime-specific rules to this general guard skill.
What this skill does not do
- Run linters or static analysis. Those are tool-level concerns; this skill is about what to write and what to look for.
- Enforce language-specific formatter or linter preferences. Defer to the project's style tooling.
- Replace tests. Clean code passes tests; tests do not pass without clean code, but clean code without tests is also a defect.
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.