claude/ai-resources-plugin/skills/config-audit/SKILL.md
This skill should be used when auditing or comparing Claude Code and Cursor IDE configurations to identify feature gaps, equivalencies, and migration opportunities. Useful when managing AI development tooling across both platforms or deciding how to structure AI workflows.
npx skillsauth add amhuppert/my-ai-resources config-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Audit and compare Claude Code and Cursor IDE configurations to understand feature coverage, identify gaps, and make informed decisions about AI development tooling.
This skill helps analyze the claude/ and cursor/ directories in projects to:
When to use: When managing AI configurations across Claude Code and Cursor, planning migrations, or deciding where to implement new workflows.
Run the audit command to generate a comprehensive report:
ai skill config-audit run
This scans the current project's claude/ and cursor/ directories and outputs a detailed report showing:
# Audit current project
ai skill config-audit run
# Audit specific project
ai skill config-audit run -p /path/to/project
# Get JSON output for programmatic processing
ai skill config-audit run --json
The audit report contains four main sections:
Lists all resources found in the claude/ directory:
.claude/commands/).claude/skills/).claude/agents/)Each resource shows:
Lists all resources found in the cursor/ directory:
.mdc format, categorized by type:
alwaysApply: true)@ruleNameEach rule shows:
Identifies resources that exist in one tool but not the other:
Resources are matched by name similarity, so a Claude Code skill named "typescript-standards" and a Cursor rule named "typescript-standards" are considered equivalents.
Actionable recommendations for creating equivalents:
Claude Code Capabilities:
Cursor Capabilities:
See @references/feature-comparison.md for comprehensive comparison
When setting up a new project or reviewing existing configuration:
ai skill config-audit runWhen migrating from Cursor to Claude Code (or vice versa):
ai skill config-audit run --jsonWhen adding new AI workflows:
Claude Code commands with allowed-tools cannot be directly replicated (Cursor commands don't execute code). Consider:
.cursor/rules/[name].mdc with appropriate frontmatter:
For critical always-loaded standards:
.claude/CLAUDE.md in appropriate section.claude/commands/[name].mdallowed-tools if code execution needed/command-name instead of @ruleNameThis skill provides the ai skill config-audit run command for deterministic configuration auditing.
Implementation: See typescript/lib/config-audit-operations.ts for scanning and comparison logic.
Command options:
-p, --project-root <path> - Project root directory (default: current directory)--json - Output as JSON instead of formatted textComprehensive comparison of Claude Code and Cursor features including:
Reference this when:
Many resources without equivalents suggests:
Actions:
Few resources without equivalents suggests:
Actions:
Patterns in gap types reveal opportunities:
Actions:
Audit Regularly:
Prioritize Thoughtfully:
Document Decisions:
Maintain Feature Comparison:
development
Debug a running web app via the web-debugger SDK: app logs, application state, runtime snapshots, React state, query cache.
development
Thoroughly understand a software development objective before implementation: research, identify ambiguities, ask clarifying questions. Use before starting implementation of a non-trivial or ambiguously specified feature, or when requirements leave open design decisions.
development
Locate the on-disk Claude Code transcript file (.jsonl under ~/.claude/projects/) for the current or a specified conversation.
development
Reflect on codebase navigation effectiveness at end of conversation. Surfaces dead ends, inefficiencies, missing context. Does not write files — pair with /kiro:steering-custom to persist.