analyze-dependencies
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Parallel analysis with multiple roles and integrated report. Trigger with "analyze from multiple perspectives", "multi-role analysis", "check both security and performance".
$ npx -y skills add wasabeef/claude-code-cookbook --skill multi-role --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/multi-roleContext preview
The summary Claude sees to decide when to auto-load this skill.
Parallel analysis with multiple roles and integrated report. Trigger with "analyze from multiple perspectives", "multi-role analysis", "check both security and performance".
description: 'Parallel analysis with multiple roles and integrated report. Trigger with "analyze from multiple perspectives", "multi-role analysis", "check both security and performance".' allowed-tools: - Read - Grep - Glob
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 docu
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
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Performance analysis based on Core Web Vitals with UX scoring. Trigger with "analyze performance", "improve speed", "check Core Web Vitals", "page speed",…
Verify information accuracy against codebase and documentation. Trigger with "is this correct?", "fact check", "verify this", "is this accurate?".
Evaluate and improve AI prompt quality. Trigger with "check this prompt", "evaluate prompt quality", "improve this prompt".
Generate commit messages from staged changes. Trigger with "suggest commit message", "generate commit message", "what should the commit say?", "write commit…