Structured cross-review protocol between specialized agents. Ensures scope alignment, priority calibration, and domain-aware feedback. Use when one agent reviews another's work, during handoffs, or when validating cross-cutting concerns.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill agent-cross-review
Protocol for structured collaboration between specialized agents.
> Review in domain, defer on scope.
Each agent excels in their specialty. Cross-review catches blind spots without overstepping boundaries.
Before reviewing, identify:
## Cross-Review Context
| Item | Value |
|------|-------|
| Reviewer | {agent-name} |
| Author | {agent-name} |
| Artifact | {file or output} |
| Review Type | Technical / Structural / Integration |
| Reviewer Type | Review Focus | Defer On |
|---------------|--------------|----------|
| Feature Agent | Structure, naming, coverage | Pytest patterns, DRY |
| Expert Agent | Code quality, patterns | Project conventions |
| Architecture | Boundaries, dependencies | Implementation details |
Use priority tiers:
### Cross-Review: {artifact}
**CRITICAL** (blocks merge)
- [Issue affecting correctness or security]
**MAJOR** (should fix)
- [Issue affecting maintainability]
**MINOR** (nice to have)
- [Improvement suggestion]
**DEFER** (out of scope for this review)
- [Valid concern but not reviewer's domain]
Focus Areas:
Defer To expert-python:
Template:
## CLI Feature Review
### Structure
- [ ] Test files in correct location
- [ ] Naming follows test_{feature}_cmd.py
- [ ] Coverage priorities align with CLI usage
### Concerns for expert-python
- [List items needing pytest expertise]
Focus Areas:
Defer To feature-interface-cli:
Template:
## Python Quality Review
### Code Quality
- [ ] Type hints present on public functions
- [ ] No mutable default arguments
- [ ] Error handling is specific
### Test Quality
- [ ] Fixtures use appropriate scope
- [ ] No duplicate fixture definitions
- [ ] AAA pattern followed
### Concerns for feature-interface-cli
- [List items needing project context]
## Handoff: {feature} implementation
### Completed
- [What's done]
### Needs Review
- [Specific areas needing expert input]
### Context
- [Domain-specific decisions made and why]
### Questions
1. [Specific question for expert]
## Technical Recommendations: {area}
### Recommendations
1. [Recommendation with rationale]
### Priority Assessment
- **Now**: [Must address before merge]
- **Soon**: [Address in follow-up]
- **Later**: [Nice to have]
### Scope Consideration
- [Note if recommendation needs project context validation]
When agents disagree:
| Concern Type | Primary Authority |
|--------------|-------------------|
| Project conventions | Feature agent |
| Language patterns | Expert agent |
| Test structure | Shared (use pytest-fixtures skill) |
| Architecture | Architecture skill/agent |
| Pitfall | Example | Solution |
|---------|---------|----------|
| Scope creep | Expert suggesting CLI changes | Defer with note |
| Missing context | Recommending unused pattern | Check project first |
| Priority mismatch | Low priority as critical | Use tier framework |
| Over-optimization | Refactor working code | Focus on current task |
## Cross-Review Summary
**Artifact**: {file/output}
**Verdict**: Approve / Needs Changes / Discuss
### In My Domain
- [Finding 1]
- [Finding 2]
### Deferred (not my domain)
- [Observation for other agent]
## Cross-Review: {artifact}
### Context
- Author: {agent}
- Reviewer: {agent}
- Type: {technical/structural}
### Findings
**CRITICAL**
- None / [issues]
**MAJOR**
- [issues]
**MINOR**
- [issues]
### Deferred Items
| Item | Recommended Reviewer | Reason |
|------|---------------------|--------|
| X | expert-python | pytest expertise |
| Y | feature-cli | project conventions |
### Verdict
[Approve / Needs Changes]
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Replace with description of the skill and when Claude should use it.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Take majiayu000/agent-cross-review from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.