Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

council-codereview

verified

Use for code review and quality feedback from both Codex and Gemini. Triggers on "council review code", "council code review", "have council review this", "get council feedback on code".

View on GitHub

Marketplace

kanlanc-marketplace

kanlanc/Claude-Code-Kanlanc-Marketplace

Plugin

ai-council

Repository

kanlanc/Claude-Code-Kanlanc-Marketplace

ai-council/skills/council-codereview/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/kanlanc/Claude-Code-Kanlanc-Marketplace/blob/main/ai-council/skills/council-codereview/SKILL.md -a claude-code --skill council-codereview

Installation paths:

Claude
.claude/skills/council-codereview/
Powered by add-skill CLI

Instructions

# Council Code Review Skill

Comprehensive code review with both Codex (GPT-5.2) and Gemini for quality, security, and best practices.

## When to Use

- Before committing or creating PRs
- Reviewing new code implementations
- Checking for security vulnerabilities
- Getting quality feedback
- When user asks for code review from the council

## Reasoning Level

**high** (default for code review)

## Execution

1. Identify the code to review:
   - Specific files mentioned by user
   - Staged git changes (`git diff --staged`)
   - Recent modifications

2. Gather the code content and context

3. Formulate a review prompt:
   ```
   Review this code for quality, security, and best practices:

   File: <filename>
   ```
   <code>
   ```

   Please analyze:
   1. Potential bugs or logic errors
   2. Security vulnerabilities
   3. Performance issues
   4. Code style and readability
   5. Suggestions for improvement
   ```

4. Run **BOTH** commands in parallel:

   **Codex:**
   ```bash
   codex exec --sandbox read-only -c model_reasoning_effort="high" "<prompt>"
   ```

   **Gemini:**
   ```bash
   gemini -s -y -o json "<prompt>"
   ```

5. Synthesize review findings

## Response Format

```markdown
## AI Council Code Review

### Codex (GPT-5.2) Review:
**Issues Found:**
- [Severity: High/Medium/Low] [Issue description]

**Security Concerns:**
- [Any security issues]

**Suggestions:**
- [Improvement suggestions]

---

### Gemini Review:
**Issues Found:**
- [Severity: High/Medium/Low] [Issue description]

**Security Concerns:**
- [Any security issues]

**Suggestions:**
- [Improvement suggestions]

---

### Council Synthesis:
**Critical Issues (Both Agree):**
- [Issues identified by both - highest priority]

**Additional Concerns:**
- [Issues only one model caught]

**Agreed Best Practices:**
- [Suggestions both models recommend]

**Final Verdict:** [LGTM / Needs Changes / Blocking Issues]

---
*Session IDs: Codex=[id], Gemini=[id]*
```

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1858 chars