agent-config-audit
Audit and sync AI agent configuration files (CLAUDE.md, CODEX.md, AGENTS.md, .cursorrules, hooks, settings) across workspaces. Use when agent configs drift, rules duplicate, files go stale, or after workspace restructuring.
What this skill does
# Agent Config Audit > Audit and maintain the full AI agent configuration stack across a workspace — CLAUDE.md, CODEX.md, AGENTS.md, .cursorrules, hooks, settings, and supporting `.agents/` docs. ## Contract Inputs: - Workspace root - Scope: full, dedup, stale, codex, cursor, settings, or fix - Optional list of repos/config files to include Outputs: - Audit report with critical/moderate/minor findings - Proposed fix plan - Applied changes only when fix mode is explicit Creates/Modifies: - Report mode: no file changes - Fix mode: agent config files, `.agents/` docs, and related settings External Side Effects: - None by default - Does not push, publish, or call external APIs Confirmation Required: - Before applying fix mode - Before overwriting existing agent configs - Before deleting or consolidating duplicated rules Delegates To: - `rules-capture` for single new preferences - `agent-folder-init` for missing `.agents/` structure - `session-documenter` when audit findings should be recorded ## When to Use - User mentions: "audit CLAUDE.md", "agent config", "rules out of date", "config drift", "sync docs" - After restructuring repos, adding/removing projects, or changing conventions - Periodic maintenance (monthly recommended) - When agents keep making the same mistake despite rules existing (symptom of stale or contradictory config) - After a major refactor where file paths, package names, or architecture changed ## When NOT to Use - If writing actual application code → use **bugfix**, **refactor-code**, or repo-specific skills - If capturing a single new rule from conversation → use **rules-capture** - If auditing code quality / CRITICAL-NEVER-DO violations → use **genfeed-codebase-audit** - If checking formatter/linter configs (biome, prettier, tsconfig) → use **genfeed-config-harmony** - If scaffolding `.agents/` from scratch → use **agent-folder-init** ## Inputs | Input | Required | Description | |-------|----------|-------------| | Workspace root | Yes | Path to the workspace containing repos (auto-detected from cwd) | | Scope | No | `full` (all checks) or specific: `dedup`, `stale`, `codex`, `cursor`, `settings` | | Fix mode | No | `report` (default, read-only) or `fix` (apply recommended changes) | ## Workflow ### Step 1: Inventory — Discover All Config Files Scan the workspace for every agent config file: ```bash # Find all agent config files across workspace (including sub-repos) glob "**/CLAUDE.md" glob "**/CODEX.md" glob "**/AGENTS.md" glob "**/.cursorrules" glob "**/.cursor/rules" glob "**/.claude/settings.json" glob "**/.claude/settings.local.json" glob "**/.claude/hooks.json" glob "**/.agents/memory/*.md" ``` Build an inventory table: ``` | Layer | Files Found | Total Lines | |-----------------|-------------|-------------| | CLAUDE.md | N | N | | CODEX.md | N | N | | AGENTS.md | N | N | | .cursorrules | N | N | | .claude/ config | N | N | | .agents/memory/ | N | N | ``` ### Step 2: Dedup Check — Find Duplicated Rules These rules commonly appear in multiple places. Search for each across ALL config files: **Rules to check:** - `any` types / `No any` — should be in CLAUDE.md + hooks only - `console.log` / logger — should be in CLAUDE.md only - Conventional commits — should be in CLAUDE.md only - AbortController — should be in CLAUDE_RULES.md / repo CLAUDE.md only - Session file naming — should be in hooks.json + one doc reference only - Import order — should be in CLAUDE_RULES.md only - Soft delete (`isDeleted`) — should be in CRITICAL-NEVER-DO.md only - Multi-tenancy (`organization: orgId`) — should be in CRITICAL-NEVER-DO.md only For each rule, count occurrences: ``` grep "No \`any\`\|NO \`any\`\|no any types" across all config files ``` **Healthy target**: Each rule appears in max 2 files (one "teach" doc + one runtime enforcement like hooks). **Flag**: Any rule appearing 3+ times across config files. ### Step 3: Staleness Check — Find Outdated Files Check for stale dates and paths: ```bash # Find files with old "Last Updated" dates (> 90 days old) grep -r "Last Updated:" across .cursorrules, .cursor/rules # Find hardcoded workspace paths that should be relative grep -r "/Users/" across .agents/ config files # Find references to directories that no longer exist # Compare referenced paths against actual directory listing ``` **Flag**: Any file with "Last Updated" > 90 days behind current date. **Flag**: Any hardcoded absolute path in config files. **Flag**: Any reference to a directory that doesn't exist. ### Step 4: CODEX.md Value Check For each CODEX.md, check if it has: - [ ] Codex-specific constraints (sandbox, no network, no interactive) - [ ] Repo-specific entry points (key files to read first) - [ ] NOT just "read CLAUDE.md" (that's a zero-value redirect stub) ```bash grep -l "Codex-Specific\|sandbox\|no network\|No network" across all CODEX.md files ``` **Flag**: Any CODEX.md without Codex-specific guidance. ### Step 5: AGENTS.md Consistency Check For each AGENTS.md: - [ ] Has repo-specific context (not just generic "docs in .agents/") - [ ] Links to correct `.agents/` paths that actually exist - [ ] Consistent structure across repos **Flag**: Any AGENTS.md that's a pure generic stub (< 20 lines with no repo-specific content). ### Step 6: Cursor Config Check For `.cursorrules` and `.cursor/rules`: - [ ] No emoji in headers (wastes tokens) - [ ] "Last Updated" within 90 days - [ ] Project paths reference actual directories - [ ] No duplicated session file rules (hooks.json handles this) ### Step 7: Settings Audit For `.claude/settings.json` and `.claude/settings.local.json`: - [ ] Denied skills have documented rationale (in SETTINGS-NOTES.md or equivalent) - [ ] Local bash overrides don't contradict documented standards without explanation - [ ] No stale tool references ### Step 8: Generate Report Output format: ```markdown # Agent Config Audit Report **Date:** YYYY-MM-DD **Workspace:** [path] **Files Scanned:** N ## Summary - Critical issues: N - Moderate issues: N - Minor issues: N - Total config lines: N (target: reduce by dedup) ## Critical: Rule Duplication | Rule | Occurrences | Files | Target | |------|-------------|-------|--------| | "No any types" | 6 | [list] | 2 | ## Critical: Stale Files | File | Last Updated | Days Stale | |------|-------------|------------| ## Moderate: Low-Value CODEX.md | File | Lines | Has Codex Constraints | Has Entry Points | |------|-------|----------------------|------------------| ## Moderate: Stub AGENTS.md | File | Lines | Has Repo Context | |------|-------|------------------| ## Minor: Emoji in Config | File | Emoji Count | |------|-------------| ## Recommendations 1. [Specific actionable fix] 2. [Specific actionable fix] ``` ### Step 9: Apply Fixes (if fix mode) If user requested `fix` mode, apply changes following these principles: - Each rule lives in ONE canonical location - Hooks enforce at runtime — docs teach, not repeat - Strip emoji from all config files - Update all "Last Updated" dates - Replace hardcoded paths with relative references - Expand zero-value CODEX.md stubs with Codex-specific constraints ## Reference Files - `references/canonical-ownership.md` — Which rule belongs in which file - `references/healthy-config-example.md` — Example of a well-structured config set ## Anti-Patterns | DON'T | DO | Why | |-------|-----|-----| | Repeat the same rule in CLAUDE.md, RULES.md, CRITICAL-NEVER-DO.md, and hooks | Put the rule in ONE canonical file; others reference it | Duplication wastes context tokens and creates drift when one copy gets updated but others don't | | Leave "Last Updated: 2025-10-07" in a file touched in 2026 | Update dates when modifying any config file | Stale dates signal neglect and erode trust in the config system | | Write CODEX.md tha
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.