smithery.ai

code-analyzer

This skill should be used when the user asks to "analyze code", "review code quality", "check code structure", "find code patterns", or mentions code analysis without making changes.

First seen Mar 11, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Allowed toolsRead, Grep, Glob

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,572 B
  • docs SUMMARY.md 203 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 22 installs

SKILL.md

Code Analyzer

Analyze code structure and patterns without making modifications.

Capabilities

  • Analyze code organization and architecture
  • Find patterns and anti-patterns
  • Check naming conventions
  • Identify potential issues
  • Review documentation quality

Workflow

Step 1: Discover Files

Use Glob to find relevant source files:

# Find all TypeScript files
*.ts, **/*.ts

# Find all Python files
*.py, **/*.py

Step 2: Analyze Structure

Use Read to examine file contents and understand:

  • Module organization
  • Class hierarchies
  • Function signatures
  • Import patterns

Step 3: Search Patterns

Use Grep to find specific patterns:

  • Error handling patterns
  • Logging practices
  • API usage
  • Configuration access

Step 4: Report Findings

Provide analysis covering:

  • Code organization
  • Naming conventions
  • Potential issues
  • Improvement suggestions

Analysis Checklist

  • Code structure and organization
  • Naming conventions followed
  • Comment quality
  • Potential bugs or issues
  • Performance considerations
  • Security concerns

Additional Resources

Reference Files

For detailed analysis patterns:

  • references/patterns.md - Common code patterns to identify
  • references/anti-patterns.md - Issues to flag