analyze-dependencies
Analyzes your project's dependencies and checks architecture health.
A command that analyzes the same target in parallel with multiple roles and generates an integrated report.
> /plugin marketplace add wasabeef/claude-code-cookbookHow it fires
How this command gets triggered: by you, by Claude, or both.
/multi-roleContext preview
What this command does when you run it.
A command that analyzes the same target in parallel with multiple roles and generates an integrated report.
A command that analyzes the same target in parallel with multiple roles and generates an integrated report.
/multi-role <role1>,<role2> [--agent|-a] [analysis_target] /multi-role <role1>,<role2>,<role3> [--agent|-a] [analysis_target]
**Important**:
# Dual analysis of security and performance (normal) /multi-role security,performance "Evaluate this API endpoint" # Parallel analysis of large-scale system (sub-agents) /multi-role security,performance --agent "Comprehensively analyze system security and performance" # Integrated analysis of frontend, mobile, and performance /multi-role frontend,mobile,performance "Consider optimization proposals for this screen" # Multifaceted evaluation of architecture design (sub-agents) /multi-role architect,security,performance --agent "Evaluate microservices design"
Each role independently analyzes the same target
Structure and integrate results
Generate final recommendations
Multi-role Analysis: Security + Performance ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Analysis Target: API endpoint /api/users Security Analysis Results: Authentication: JWT verification properly implemented Authorization: Role-based access control incomplete Encryption: API keys logged in plain text Evaluation Score: 65/100 Importance: High (due to sensitive data access) Performance Analysis Results: Response Time: Average 180ms (within target of 200ms) Database Queries: N+1 problem detected Caching: Redis cache not implemented Evaluation Score: 70/100 Importance: Medium (currently within acceptable range) Interrelated Analysis: Synergistic Opportunities: - Consider encryption when implementing Redis cache - Improve logging for both security and performance gains Trade-off Points: - Authorization check strengthening ↔ Impact on response time - Log encryption ↔ Reduced debugging efficiency Integrated Priorities: Critical: Fix API key plain text output High: Resolve N+1 queries Medium: Implement Redis cache + encryption Low: Refine authorization control Implementation Roadmap: Week 1: Implement API key masking Week 2: Database query optimization Weeks 3-4: Cache layer design and implementation Month 2: Progressive strengthening of authorization control
Multi-role Analysis: Frontend + Mobile + Performance ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Analysis Target: User Profile Screen Frontend Analysis Results: Usability: Intuitive layout Accessibility: 85% WCAG 2.1 compliance Responsive: Issues with tablet display Mobile Analysis Results: Touch Targets: 44pt+ ensured One-handed Operation: Important buttons placed at top Offline Support: Not implemented Performance Analysis Results: Initial Display: LCP 2.1s (good) Image Optimization: WebP not supported Lazy Loading: Not implemented Integrated Recommendations: 1. Mobile optimization (one-handed operation + offline support) 2. Image optimization (WebP + lazy loading) 3. Tablet UI improvements Priority: Mobile > Performance > Frontend Implementation Period: 3-4 weeks
/multi-role security,architect "Authentication system design" /multi-role security,frontend "Login screen security" /multi-role security,mobile "Mobile app data protection"
/multi-role performance,architect "Scalability design" /multi-role performance,frontend "Web page speed optimization" /multi-role performance,mobile "App performance optimization"
/multi-role frontend,mobile "Cross-platform UI" /multi-role frontend,performance "Balance between UX and performance" /multi-role mobile,performance "Mobile UX optimization"
/multi-role architect,security,performance "Overall system evaluation" /multi-role frontend,mobile,performance "Comprehensive user experience evaluation" /multi-role security,performance,mobile "Comprehensive mobile app diagnosis"
# Combine with file analysis cat src/components/UserProfile.tsx /multi-role frontend,mobile "Evaluate this component from multiple perspectives" # Evaluate design documents cat architecture-design.md /multi-role architect,security,performance "Evaluate this design across multiple specialties" # Error analysis cat performance-issues.log /multi-role performance,analyzer "Analyze performance issues from mu
A collection of commands, roles, and automation scripts for Claude Code. Automate your workflow without unnecessary confirmations, allowing you to focus on what matters.
Repo: wasabeef/claude-code-cookbook
Analyzes your project's dependencies and checks architecture health.
Analyzes application performance from a user experience perspective and quantifies experience improvements from optimizations. Calculates UX scores based on…
Verifies if a statement is true by checking your project's code and documentation.
A comprehensive collection of best practices for evaluating and improving the quality of prompts for AI Agents. It systematizes knowledge gained from actual…
Generates commit messages from staged changes (git diff --staged). This command only creates messages and copies them to your clipboard—it doesn't run any git…