with one click
architecture
Run a quick architecture review via architect-reviewer agent
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run a quick architecture review via architect-reviewer agent
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
Generate comprehensive tests via test-generator agent
| name | architecture |
| description | Run a quick architecture review via architect-reviewer agent |
Invokes the architect-reviewer agent for design pattern and architecture review.
Determine review scope:
Launch architect-reviewer agent via Task tool:
Task({
subagent_type: "architect-reviewer",
prompt: "Review the architecture of [target]. Evaluate:
- Design patterns and SOLID principles
- Scalability and performance implications
- Technical debt and maintainability
- Integration patterns
- Trade-offs and alternatives
Provide recommendations with rationale."
})
| Area | What to Evaluate |
|---|---|
| Design Patterns | SOLID principles, appropriate abstractions |
| Scalability | Performance implications, bottlenecks |
| Technical Debt | Maintainability, complexity |
| Integration | Module boundaries, coupling |
| Trade-offs | Alternatives considered, decision rationale |
User: "Review the architecture for real-time collaboration"
Launch agent:
Task({
subagent_type: "architect-reviewer",
prompt: "Review proposed architecture for real-time collaboration:
Proposed approach:
- Extend existing Loro CRDT sync
- Add presence indicators via P2P
- Cursor position sharing
Evaluate:
- Scalability with multiple peers
- Integration with existing sync protocol
- Performance implications
- Alternative approaches (WebRTC, etc.)"
})
User: "Review the sync module architecture"
Launch agent:
Task({
subagent_type: "architect-reviewer",
prompt: "Review the architecture of src/lib/sync/:
Current structure:
- P2P discovery via mDNS
- TCP connections for sync
- Loro CRDT for conflict resolution
Evaluate:
- Module organization and boundaries
- Error handling patterns
- Scalability concerns
- Potential improvements"
})