AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Clean Code Js

skill-wnz99-claude-skills-clean-code-js · by wnz99

Improve JavaScript or TypeScript readability and maintainability when the task explicitly involves refactoring, code quality, naming, function design, error handling, or reducing accidental complexity. Use this skill for JS/TS cleanup reviews or targeted refactors. Do not use it to override repo-local conventions, force large rewrites, or apply generic "Clean Code" rules when the task is mainly a…

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-wnz99-claude-skills-clean-code-js

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-wnz99-claude-skills-clean-code-js)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
26d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Clean Code Js? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Clean Code for JavaScript and TypeScript

Inspired by Clean Code by Robert C. Martin (Robert Cecil Martin), adapted for AI-agent use in modern JS/TS codebases.

Use this skill to make JS/TS code easier to read, safer to change, and more consistent with the surrounding codebase.

This is an agent workflow, not a license to rewrite code until it looks "textbook clean."

Canonical source and updates

This skill is maintained in wnz99/llm-dev-skills. When asked to update, reinstall, download, or replace this skill with a newer version, inspect that upstream directory first and use the newest compatible version. Preserve intentional installation-specific adaptations and report any divergence instead of silently overwriting it.

Use This Skill When

  • The user asks for cleaner JS/TS code, refactoring, readability, or quality improvements
  • A review task needs maintainability findings, not just correctness findings
  • A change would benefit from better naming, clearer function boundaries, or cleaner error contracts
  • Existing JS/TS code has avoidable complexity that can be reduced with a small, local refactor

Do Not Use This Skill When

  • The user only wants a bug fixed and the clean-code rewrite would expand scope
  • The repo already has strong local patterns and the only reason to change them is generic doctrine
  • The code is intentionally optimized, framework-constrained, or generated
  • The cleanup would require speculative architectural changes not asked for by the user

Operating Rules

  1. Read local conventions first.

Check the repo's lint, format, test, framework, and file-organization rules before applying generic advice.

  1. Prefer the smallest useful refactor.

Improve the specific problem you can name. Do not refactor "just in case."

  1. Preserve behavior.

Clarity improvements do not justify subtle contract changes unless the user asked for them.

  1. Optimize for the call site.

The best API is the one that makes the caller obviously correct.

  1. Follow existing project style over this skill.

This skill is a fallback and a refinement layer, not the primary authority.

Workflow

1. Identify the actual smell

Name the concrete issue before editing:

  • unclear naming
  • mixed abstraction levels
  • hidden mutation or hidden I/O
  • function doing too many unrelated things
  • weak or inconsistent error contract
  • deep nesting / hard-to-scan control flow
  • module boundary leaking implementation details

If you cannot name the smell precisely, do not start a cleanup rewrite.

2. Check the local pattern first

Before changing shape, inspect nearby files for:

  • function style and file layout
  • error handling style: throw, return union/result-like objects, or framework-specific responses
  • TS strictness and type patterns
  • preferred React / Node / library patterns already in use

3. Choose the least invasive fix

Good fixes:

  • rename for clarity
  • extract one helper with a real name
  • flatten control flow with an early return
  • replace repeated literals with a named constant
  • separate validation from execution
  • tighten types at the boundary

Avoid:

  • extracting trivial one-line wrappers
  • replacing simple conditionals with class hierarchies
  • introducing abstractions only to satisfy a style slogan
  • rewriting sync/async boundaries without a strong reason

4. Verify the contract

After refactoring, verify:

  • types still communicate intent
  • errors still surface through the expected path
  • tests or typechecks still pass
  • the call site got simpler, not just the callee

JS/TS Heuristics

Naming

  • Prefer names that reveal the domain meaning, not the implementation detail
  • Drop redundant suffixes like Data, Info, Manager, Helper unless they add real meaning
  • Use booleans that read like questions: isReady, hasAccess, shouldRetry
  • Keep terminology consistent across adjacent files

Functions

  • A function should have one reason to change
  • Prefer 0-2 direct parameters; when several values travel together, use an object parameter
  • Do not introduce an options object just to satisfy an arbitrary parameter count if positional args are already clear
  • Extract only when the new function name explains something useful

Types

  • In TypeScript, prefer stronger types over explanatory comments
  • Use discriminated unions for branching states when the code already operates on variants
  • Narrow external data early; keep the rest of the code on trusted shapes
  • Prefer readonly and immutable updates when the surrounding codebase already leans that way

Error Handling

  • Do not apply "exceptions everywhere" blindly
  • Follow the existing boundary style:

if the project throws, throw typed/structured errors cleanly; if it returns result objects or framework responses, keep that contract consistent

  • Wrap third-party errors at system boundaries when that improves diagnostics or shields callers from vendor-specific details
  • Avoid returning null / undefined for error states when the codebase already distinguishes "not found" from "failed"

Control Flow

  • Prefer guard clauses to deep nesting when they make the happy path more obvious
  • Break apart validation, transformation, and side effects when they are currently tangled
  • Keep async orchestration readable: fetch, validate, transform, persist, notify

Comments

  • Comments should explain why, constraints, or non-obvious tradeoffs
  • Do not add comments that restate obvious code
  • In public libraries, document exported APIs that are not self-evident

Review Checklist

  • Can a reader understand the main behavior without reading every line?
  • Are names consistent with nearby modules?
  • Is the error contract explicit?
  • Does each extracted helper earn its existence?
  • Did the refactor reduce branching or merely redistribute it?
  • Did the change preserve framework and repo-local patterns?

References

Read [references/patterns.md](references/patterns.md) when you need concrete refactoring patterns for JS/TS cleanup.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.