agentsclimarketplace

Clean code

Skill flurdy/agent-skills/skills/clean-code

Shared AI agent skills

Install
npx -y skills add flurdy/agent-skills --skill clean-code

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Format, lint, and fix all warnings across the entire codebase — including test files and pre-existing issues.

SKILL.md

1.4 KB, as published. Nobody here has run it

Clean Code

Format, lint, and fix all warnings across the entire codebase — including test files and pre-existing issues.

Usage

/clean-code

Instructions

1. Run the project's clean-code target

Each project defines a make clean-code Makefile target with the appropriate tooling for its language/stack.

make clean-code

2. Fix remaining issues

If make clean-code fails or reports warnings/errors that couldn't be auto-fixed, investigate and fix them manually. Do NOT leave any warnings unresolved.

3. Verify clean state

Re-run the target to confirm it passes cleanly:

make clean-code

It must exit with zero warnings and zero errors.

Rules

  • Do not skip or suppress warnings (e.g. eslint-disable, #[allow(...)], @SuppressWarnings) unless there is a genuine false positive with a clear justification
  • Do not change the project's formatter or linter configuration
  • If a fix changes behavior (not just style), flag it to the user before applying
  • Test files are in scope — do not skip them
  • Pre-existing issues must be fixed, not just new code

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.