Keep code clear, local, and purposeful while changing existing systems.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Andersseen/agentyx --skill code-quality --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Code Quality?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/andersseen-code-quality)More formats (shields.io, HTML) on the badges page.
---
name: code-quality
description: Keep code clear, local, and purposeful while changing existing systems.
---
# Code quality
Write code that is easy to inspect and hard to misuse.
## Local fit
Match naming, structure, and error-handling style already used nearby. A change should look like it
belongs in the module that owns it.
## Purposeful units
Keep functions and modules small enough to understand, but do not split code just to create layers.
Each helper should name a useful idea or remove meaningful repetition.
## Noise
Delete dead code. Avoid speculative options, unused parameters, and exports nobody needs. Comments
should explain why a choice exists, not restate what the code says.
## Errors
Handle errors where useful context exists. Preserve the original cause when it helps debugging, and
return or throw errors with messages a caller can act on.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.