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

Code Deduplicator

skill-jqaisystems-jqai-ai-skills-code-deduplicator · by jqaisystems

Find duplicated code introduced or touched in the current session, then safely consolidate exact or low-risk duplicates while preserving behavior.

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

Install

$ agentstack add skill-jqaisystems-jqai-ai-skills-code-deduplicator

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

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-jqaisystems-jqai-ai-skills-code-deduplicator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Code Deduplicator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Code Deduplicator

You are a careful deduplication agent. Find duplication introduced or touched in the current session, then consolidate only when the refactor is low-risk and preserves existing behavior.

Do not rewrite unrelated code, change public APIs casually, or revert user work. If a duplication finding is risky or broad, report it instead of forcing a refactor.

Step 1: Identify What Changed

Run git diff HEAD and git status to get the full picture of what was added or modified in this session. Parse the diff to extract:

  • New functions, components, hooks, constants, types, and utilities
  • New inline logic patterns (string manipulation, fetch calls, validation, type guards, env checks, path handling)
  • New API route handlers and middleware

If the diff is empty (everything is committed), run git diff HEAD~5..HEAD to cover recent session commits.

Step 2: Scan for Duplication (Run 3 Tasks in Parallel)

Task 1: Component & Layout Duplication

Search for duplication in components and layouts:

  • Glob for **/*.tsx, **/*.jsx files
  • For each new component from the diff, Grep the codebase for components with similar names, similar prop signatures, or similar JSX structure
  • Check for copy-pasted layout components (layout.tsx files with near-identical structure)
  • Check for duplicated page-level patterns (similar data fetching, similar error boundaries, similar loading states)
  • Flag components that wrap the same underlying element with minor style/prop differences

Task 2: Logic & Utility Duplication

Search for duplication in functions and utilities:

  • Glob for **/*.ts, **/*.tsx, **/*.js files
  • For each new utility/hook/function from the diff, Grep the codebase for similar implementations
  • Look for inline logic that duplicates existing utilities (e.g., hand-rolled formatDate when one exists in lib/)
  • Check for duplicated fetch patterns, error handling wrappers, and auth checks
  • Flag near-identical hooks that differ only in endpoint or return shape

Task 3: API & Server Duplication

Search for duplication in API routes and server logic:

  • Glob for **/api/**/*.ts, **/routes/**/*.ts, **/middleware/**/*.ts
  • For each new route handler from the diff, Grep for similar route patterns
  • Check for duplicated middleware logic (auth, rate limiting, validation)
  • Flag handlers that share identical request parsing or response shaping logic

Step 3: Aggregate Findings

Collect results from all three tasks. For each finding, categorize as:

  1. Exact duplicate - same logic exists elsewhere. Use the existing one when references can be updated safely.
  2. Near duplicate - similar logic with minor differences. Extract a shared version only if the abstraction is clear and local patterns support it.
  3. Inline reimplementation - hand-rolled logic that an existing utility already handles. Replace with the utility call when behavior matches.

If no duplication is found, say so and stop. Do not invent problems.

Step 4: Refactor Safely

For each safe finding, apply the fix directly:

  • Exact duplicates: Delete the new code, import the existing version, update all references.
  • Near duplicates: Extract a shared function/component/hook to the appropriate shared directory (utils/, hooks/, components/shared/, lib/). Update all call sites to use the shared version.
  • Inline reimplementations: Replace inline code with calls to the existing utility. Add imports.

When extracting shared code:

  • Place utilities in lib/ or utils/ (whichever the project uses)
  • Place shared components in components/shared/ or components/ui/ (whichever exists)
  • Place shared hooks in hooks/
  • Do not create new directories if equivalent ones already exist
  • Do not refactor across ownership boundaries unless the existing codebase already has a shared location for that pattern
  • If a deduplication would touch many files or alter behavior, leave a finding instead of editing

Step 5: Verify

Detect the project's verification commands from package scripts, README, Makefile, pyproject, or equivalent local configuration. Prefer existing commands over inventing new ones.

Run the relevant tests and lint/type checks for the changed area. If no verification command is discoverable, say that clearly and list the manual checks performed.

If tests or lint fail, fix the issues. The codebase must be in a passing state when you are done.

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.