mcpbeat Sign in

Code Pattern Extractor Agent Skill

Analyze codebases to identify reusable code patterns, duplications, and implementation patterns for future development. Use when refactoring code, identifying technical debt, finding opportunities for abstraction, or documenting common patterns in a directory or module. Outputs pattern catalogs, refactoring suggestions, and reusable template code.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
141
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill code-pattern-extractor

The instruction itself

13 sections, as written by the author

Code Pattern Extractor

Overview

Systematically analyze code in directories or modules to identify recurring patterns, code duplication, and implementation patterns that can be abstracted into reusable components, utilities, or design patterns.

Workflow

1. Define Analysis Scope

Identify the code to analyze:

  • Directory/module: Analyze all files in a specific directory
  • File set: Analyze a specific set of related files
  • Component: Analyze files related to a specific feature or component

Use Glob to find relevant files:

**/*.js, **/*.py, **/*.go, etc.

2. Scan for Code Duplication

Identify repeated code blocks that appear multiple times:

Look for:

  • Similar function implementations with minor variations
  • Repeated code blocks (>5 lines) across files
  • Copy-pasted code with slight modifications
  • Similar class structures or method patterns

Analysis criteria:

  • Similarity threshold: >70% code similarity
  • Minimum size: 5+ lines of code
  • Frequency: Appears 3+ times

3. Identify Implementation Patterns

Find recurring implementation approaches:

Common patterns:

  • API call patterns: Similar fetch/request handling
  • Error handling: Repeated try-catch or error checking
  • Data validation: Similar input validation logic
  • Data transformation: Repeated mapping/filtering operations
  • State management: Similar state update patterns
  • Configuration: Repeated configuration setup

Example patterns to detect:

// Pattern: API call with error handling
async function fetchX() {
  try {
    const response = await fetch(url);
    if (!response.ok) throw new Error();
    return await response.json();
  } catch (error) {
    console.error(error);
    return null;
  }
}

4. Categorize Patterns

Group identified patterns by type and impact:

Categories:

  • High-value: Appears frequently (5+ times), significant code size
  • Medium-value: Appears moderately (3-4 times), moderate complexity
  • Low-value: Appears rarely (2 times), simple code

Pattern types:

  • Utility functions (data processing, formatting, validation)
  • API/network patterns (requests, responses, error handling)
  • UI patterns (component structures, event handling)
  • Business logic patterns (calculations, rules, workflows)

5. Generate Pattern Catalog

Document each identified pattern:

Pattern entry format:

## Pattern: [Descriptive Name]

**Type**: [Utility/API/UI/Business Logic]
**Frequency**: [Number of occurrences]
**Impact**: [High/Medium/Low]

**Description**: [What the pattern does]

**Current implementations**:
- `file1.js:45-60` - [Brief context]
- `file2.js:120-135` - [Brief context]
- `file3.js:89-104` - [Brief context]

**Common variations**:
- [Variation 1 description]
- [Variation 2 description]

6. Generate Refactoring Suggestions

For each high-value pattern, provide refactoring recommendations:

Suggestion format:

### Refactoring: Extract [Pattern Name]

**Current state**: Pattern appears in [N] locations with [X]% code duplication

**Proposed solution**: Extract into [utility function/class/hook/module]

**Benefits**:
- Reduce code duplication by ~[N] lines
- Centralize logic for easier maintenance
- Improve testability

**Implementation approach**:
1. Create new file: `utils/[pattern-name].js`
2. Extract common logic with parameters for variations
3. Replace [N] occurrences with function calls
4. Add unit tests

**Estimated effort**: [Small/Medium/Large]

7. Generate Template Code

Create reusable template implementations for high-value patterns:

Template format:

/**
 * [Pattern description]
 *
 * @param {type} param1 - [Description]
 * @param {type} param2 - [Description]
 * @returns {type} [Description]
 */
function patternTemplate(param1, param2) {
  // Extracted common logic
  // Parameterized variations
  // Return standardized result
}

Include:

  • Function signature with parameters for variations
  • Documentation comments
  • Error handling
  • Type annotations (if applicable)
  • Usage examples

Output Structure

Organize findings into a comprehensive report:

# Code Pattern Analysis: [Directory/Module Name]

## Summary
- Files analyzed: [N]
- Patterns identified: [N]
- High-value patterns: [N]
- Estimated duplication: [N] lines

## Pattern Catalog
[List of all identified patterns with details]

## Refactoring Suggestions
[Prioritized list of refactoring opportunities]

## Template Code
[Reusable implementations for high-value patterns]

## Next Steps
[Recommended actions prioritized by impact]

Pattern Detection Heuristics

Code duplication detection:

  • Compare function bodies for structural similarity
  • Ignore variable names and minor formatting differences
  • Focus on logic flow and operations

Implementation pattern detection:

  • Look for similar function signatures
  • Identify repeated import patterns
  • Find similar control flow structures (if-else, loops, try-catch)
  • Detect repeated library usage patterns

Abstraction opportunities:

  • Multiple functions with similar purpose but different parameters
  • Repeated setup/teardown code
  • Similar data transformations
  • Parallel class hierarchies

Tips

  • Start with high-frequency patterns for maximum impact
  • Consider language-specific idioms when suggesting abstractions
  • Balance DRY principle with code clarity (don't over-abstract)
  • Include migration path in refactoring suggestions
  • Prioritize patterns that improve maintainability, not just reduce lines
  • Consider existing project architecture when suggesting abstractions
  • Document trade-offs (flexibility vs. simplicity)
  • For large codebases, analyze one module at a time

Other skills for the same job

different authors, same section of the catalogue
Git Commit
by github
vendor ×3

Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions "/commit". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping

799 tokens
Github Code Review
by ComeOnOliver
×3

Comprehensive GitHub code review with AI-powered swarm coordination

13k tokens
Commit Work
by softaworks
×2

Create high-quality git commits: review/stage intended changes, split into logical commits, and write clear commit messages (including Conventional Commits). Use when the user asks to commit, craft a commit message, stage changes, or split work into multiple commits.

2k tokens
Verification & Quality Assurance
by Microck
×2

Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.

4k tokens
Gh CLI
by christophacham
×2

GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.

10k tokens
Github
by Dicklesworthstone
×2

GitHub CLI - manage repositories, issues, pull requests, actions, releases, and more from the command line.

1k tokens
Codebase Cleanup Refactor Clean
by ComeOnOliver
×2

You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its quality, maintainability, and performance.

9k tokens
Codebase Cleanup Tech Debt
by ComeOnOliver
×2

You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti

6k tokens

How to use it

Copy the folder

Take arabelatso/code-pattern-extractor from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.