ワンクリックで
code-review
Evaluate code changes for correctness, security, maintainability, and alignment with team standards.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Evaluate code changes for correctness, security, maintainability, and alignment with team standards.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plan, reason, and verify across multiple levels using multi-step reasoning, tree-of-thought, and structured agent workflows.
Detect and repair security vulnerabilities or operational errors in the agent's own code and environment without manual intervention.
Generate and apply complete design systems from text descriptions or visual examples using AI and modern tooling.
Adapt user interfaces automatically based on device, viewport, user preferences, and contextual signals.
Build and query knowledge graphs automatically to capture relationships between entities, concepts, and project artifacts.
Run agent tasks in isolated, sandboxed environments to prevent malicious or untrusted code from affecting the host system.
| name | code-review |
| description | Evaluate code changes for correctness, security, maintainability, and alignment with team standards. |
Category: Core Engineering Priority: Critical
Evaluate code changes for correctness, security, maintainability, and alignment with team standards.
Prevent defects from reaching production and spread knowledge across the team.
Use this skill when:
Question: Why are we parsing this date string manually instead of
using the existing `DateParser` utility? The utility handles timezones
and leap years correctly, which this implementation does not.
Suggestion: Use `DateParser.parse()` and add a test for timezone handling.
This is wrong. Fix it.