원클릭으로
code-critic
Automated code review and quality checks. Use when you need to review changes, find TODOs, or identify complex files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automated code review and quality checks. Use when you need to review changes, find TODOs, or identify complex files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Advanced git operations including committing, pushing, and branch management. Use this when you need to persist changes to the remote repository.
Build and maintain Excalidraw architecture diagrams. Use this when the user asks to "draw", "diagram", or "visualize" an architecture or process.
Hunt for weird, hacky, or funny code snippets and add them to the Hall of Weirdness (MUSEUM.md).
Automated documentation generation and auditing. Use when extracting comments, generating READMEs, or finding undocumented code.
Tools for automated refactoring and codebase cleanup. Use when renaming things, moving files, or consolidating logic.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | code-critic |
| description | Automated code review and quality checks. Use when you need to review changes, find TODOs, or identify complex files. |
This skill helps maintain code quality by identifying potential issues, technical debt, and complexity.
scripts/review_diff.sh <base_branch> to get a clean diff of changes between the current branch and the base branch (e.g., main).scripts/find_todos.sh to locate TODO, FIXME, and XXX markers in the codebase.scripts/check_complexity.sh <max_lines> to find files that might be getting too large and are candidates for refactoring.review_diff.sh to see what has changed.find_todos.sh to see if any new technical debt was introduced.check_complexity.sh to ensure no files have grown beyond manageable limits.