Agent Codex
A skill is a directory containing, at minimum, a SKILL.md file.
Agent Codex
A skill is a directory containing, at minimum, a SKILL.md file.
Command
Scan codebase for structural health issues and generate an audit report.
Command
Apply function-level code design principles — pure functions, single responsibility, guard clauses, side-effect management.
Command
Enforce clean folder organization and file placement.
Command
Execute a folder architecture migration from an audit report.
Skill Claude CodeCodex
Scan any codebase (language-agnostic) and flag structural health issues including folder bloat, oversized files, deep nesting, naming inconsistencies, orphaned files, doc sprawl, and empty directories. Generates a markdown report with ASCII tree diagrams for folder structure issues and Mermaid graphs for file-level…
Skill Claude CodeCodex
Use when writing or reviewing functions that are deeply nested, do too many things, have unclear side effects, or are hard to follow linearly. Also when an agent produces code with high cognitive load — nested if-else pyramids, functions mixing validation+business logic+IO, mutable state leaks, or control flow that…
Skill Claude CodeCodex
Define and enforce best-practice folder architecture whenever creating or modifying files. Use whenever the AI adds or edits code to prevent structural clutter, directory bloat, misplaced files, naming inconsistencies, and deep nesting.
Skill Claude CodeCodex
Execute a large-scale folder architecture refactor based on an audit report or user-defined architecture. Moves files into correct locations, splits oversized folders, refactors imports, updates barrel files, and verifies builds after each phase. Use after audit-codebase has generated its structural report, or when a…