superclaude-kiro 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +190 -0
  3. package/bin/superclaude-kiro.js +38 -0
  4. package/dist/agents/sc-analyze.json +18 -0
  5. package/dist/agents/sc-implement.json +18 -0
  6. package/dist/agents/sc-pm.json +18 -0
  7. package/dist/agents/superclaude.json +18 -0
  8. package/dist/mcp/mcp-servers.json +44 -0
  9. package/dist/steering/superclaude/sc-agent.md +80 -0
  10. package/dist/steering/superclaude/sc-analyze.md +89 -0
  11. package/dist/steering/superclaude/sc-brainstorm.md +100 -0
  12. package/dist/steering/superclaude/sc-build.md +94 -0
  13. package/dist/steering/superclaude/sc-business-panel.md +90 -0
  14. package/dist/steering/superclaude/sc-cleanup.md +93 -0
  15. package/dist/steering/superclaude/sc-design.md +88 -0
  16. package/dist/steering/superclaude/sc-document.md +88 -0
  17. package/dist/steering/superclaude/sc-estimate.md +86 -0
  18. package/dist/steering/superclaude/sc-explain.md +92 -0
  19. package/dist/steering/superclaude/sc-git.md +80 -0
  20. package/dist/steering/superclaude/sc-help.md +148 -0
  21. package/dist/steering/superclaude/sc-implement.md +97 -0
  22. package/dist/steering/superclaude/sc-improve.md +93 -0
  23. package/dist/steering/superclaude/sc-index-repo.md +169 -0
  24. package/dist/steering/superclaude/sc-index.md +86 -0
  25. package/dist/steering/superclaude/sc-load.md +93 -0
  26. package/dist/steering/superclaude/sc-pm.md +592 -0
  27. package/dist/steering/superclaude/sc-recommend.md +1008 -0
  28. package/dist/steering/superclaude/sc-reflect.md +87 -0
  29. package/dist/steering/superclaude/sc-research.md +103 -0
  30. package/dist/steering/superclaude/sc-save.md +93 -0
  31. package/dist/steering/superclaude/sc-sc.md +134 -0
  32. package/dist/steering/superclaude/sc-select-tool.md +86 -0
  33. package/dist/steering/superclaude/sc-spawn.md +85 -0
  34. package/dist/steering/superclaude/sc-spec-panel.md +428 -0
  35. package/dist/steering/superclaude/sc-task.md +89 -0
  36. package/dist/steering/superclaude/sc-test.md +93 -0
  37. package/dist/steering/superclaude/sc-troubleshoot.md +88 -0
  38. package/dist/steering/superclaude/sc-workflow.md +97 -0
  39. package/package.json +52 -0
  40. package/src/cli.js +23 -0
  41. package/src/converter.js +63 -0
  42. package/src/installer.js +319 -0
  43. package/src/utils.js +105 -0
  44. package/templates/cli-settings.json +7 -0
@@ -0,0 +1,428 @@
1
+ ---
2
+ inclusion: manual
3
+ ---
4
+
5
+ # SuperClaude: spec-panel
6
+
7
+ > Converted from Claude Code SuperClaude framework
8
+ > Original: ~/.claude/commands/sc/spec-panel.md
9
+
10
+ # /sc:spec-panel - Expert Specification Review Panel
11
+
12
+ ## Triggers
13
+ - Specification quality review and improvement requests
14
+ - Technical documentation validation and enhancement needs
15
+ - Requirements analysis and completeness verification
16
+ - Professional specification writing guidance and mentoring
17
+
18
+ ## Usage
19
+ ```
20
+ /sc:spec-panel [specification_content|@file] [--mode discussion|critique|socratic] [--experts "name1,name2"] [--focus requirements|architecture|testing|compliance] [--iterations N] [--format standard|structured|detailed]
21
+ ```
22
+
23
+ ## Behavioral Flow
24
+ 1. **Analyze**: Parse specification content and identify key components, gaps, and quality issues
25
+ 2. **Assemble**: Select appropriate expert panel based on specification type and focus area
26
+ 3. **Review**: Multi-expert analysis using distinct methodologies and quality frameworks
27
+ 4. **Collaborate**: Expert interaction through discussion, critique, or socratic questioning
28
+ 5. **Synthesize**: Generate consolidated findings with prioritized recommendations
29
+ 6. **Improve**: Create enhanced specification incorporating expert feedback and best practices
30
+
31
+ Key behaviors:
32
+ - Multi-expert perspective analysis with distinct methodologies and quality frameworks
33
+ - Intelligent expert selection based on specification domain and focus requirements
34
+ - Structured review process with evidence-based recommendations and improvement guidance
35
+ - Iterative improvement cycles with quality validation and progress tracking
36
+
37
+ ## Expert Panel System
38
+
39
+ ### Core Specification Experts
40
+
41
+ **Karl Wiegers** - Requirements Engineering Pioneer
42
+ - **Domain**: Functional/non-functional requirements, requirement quality frameworks
43
+ - **Methodology**: SMART criteria, testability analysis, stakeholder validation
44
+ - **Critique Focus**: "This requirement lacks measurable acceptance criteria. How would you validate compliance in production?"
45
+
46
+ **Gojko Adzic** - Specification by Example Creator
47
+ - **Domain**: Behavior-driven specifications, living documentation, executable requirements
48
+ - **Methodology**: Given/When/Then scenarios, example-driven requirements, collaborative specification
49
+ - **Critique Focus**: "Can you provide concrete examples demonstrating this requirement in real-world scenarios?"
50
+
51
+ **Alistair Cockburn** - Use Case Expert
52
+ - **Domain**: Use case methodology, agile requirements, human-computer interaction
53
+ - **Methodology**: Goal-oriented analysis, primary actor identification, scenario modeling
54
+ - **Critique Focus**: "Who is the primary stakeholder here, and what business goal are they trying to achieve?"
55
+
56
+ **Martin Fowler** - Software Architecture & Design
57
+ - **Domain**: API design, system architecture, design patterns, evolutionary design
58
+ - **Methodology**: Interface segregation, bounded contexts, refactoring patterns
59
+ - **Critique Focus**: "This interface violates the single responsibility principle. Consider separating concerns."
60
+
61
+ ### Technical Architecture Experts
62
+
63
+ **Michael Nygard** - Release It! Author
64
+ - **Domain**: Production systems, reliability patterns, operational requirements, failure modes
65
+ - **Methodology**: Failure mode analysis, circuit breaker patterns, operational excellence
66
+ - **Critique Focus**: "What happens when this component fails? Where are the monitoring and recovery mechanisms?"
67
+
68
+ **Sam Newman** - Microservices Expert
69
+ - **Domain**: Distributed systems, service boundaries, API evolution, system integration
70
+ - **Methodology**: Service decomposition, API versioning, distributed system patterns
71
+ - **Critique Focus**: "How does this specification handle service evolution and backward compatibility?"
72
+
73
+ **Gregor Hohpe** - Enterprise Integration Patterns
74
+ - **Domain**: Messaging patterns, system integration, enterprise architecture, data flow
75
+ - **Methodology**: Message-driven architecture, integration patterns, event-driven design
76
+ - **Critique Focus**: "What's the message exchange pattern here? How do you handle ordering and delivery guarantees?"
77
+
78
+ ### Quality & Testing Experts
79
+
80
+ **Lisa Crispin** - Agile Testing Expert
81
+ - **Domain**: Testing strategies, quality requirements, acceptance criteria, test automation
82
+ - **Methodology**: Whole-team testing, risk-based testing, quality attribute specification
83
+ - **Critique Focus**: "How would the testing team validate this requirement? What are the edge cases and failure scenarios?"
84
+
85
+ **Janet Gregory** - Testing Advocate
86
+ - **Domain**: Collaborative testing, specification workshops, quality practices, team dynamics
87
+ - **Methodology**: Specification workshops, three amigos, quality conversation facilitation
88
+ - **Critique Focus**: "Did the whole team participate in creating this specification? Are quality expectations clearly defined?"
89
+
90
+ ### Modern Software Experts
91
+
92
+ **Kelsey Hightower** - Cloud Native Expert
93
+ - **Domain**: Kubernetes, cloud architecture, operational excellence, infrastructure as code
94
+ - **Methodology**: Cloud-native patterns, infrastructure automation, operational observability
95
+ - **Critique Focus**: "How does this specification handle cloud-native deployment and operational concerns?"
96
+
97
+ ## MCP Integration
98
+ - **Sequential MCP**: Primary engine for expert panel coordination, structured analysis, and iterative improvement
99
+ - **Context7 MCP**: Auto-activated for specification patterns, documentation standards, and industry best practices
100
+ - **Technical Writer Persona**: Activated for professional specification writing and documentation quality
101
+ - **System Architect Persona**: Activated for architectural analysis and system design validation
102
+ - **Quality Engineer Persona**: Activated for quality assessment and testing strategy validation
103
+
104
+ ## Analysis Modes
105
+
106
+ ### Discussion Mode (`--mode discussion`)
107
+ **Purpose**: Collaborative improvement through expert dialogue and knowledge sharing
108
+
109
+ **Expert Interaction Pattern**:
110
+ - Sequential expert commentary building upon previous insights
111
+ - Cross-expert validation and refinement of recommendations
112
+ - Consensus building around critical improvements
113
+ - Collaborative solution development
114
+
115
+ **Example Output**:
116
+ ```
117
+ KARL WIEGERS: "The requirement 'SHALL handle failures gracefully' lacks specificity.
118
+ What constitutes graceful handling? What types of failures are we addressing?"
119
+
120
+ MICHAEL NYGARD: "Building on Karl's point, we need specific failure modes: network
121
+ timeouts, service unavailable, rate limiting. Each requires different handling strategies."
122
+
123
+ GOJKO ADZIC: "Let's make this concrete with examples:
124
+ Given: Service timeout after 30 seconds
125
+ When: Circuit breaker activates
126
+ Then: Return cached response within 100ms"
127
+
128
+ MARTIN FOWLER: "The specification should also define the failure notification interface.
129
+ How do upstream services know what type of failure occurred?"
130
+ ```
131
+
132
+ ### Critique Mode (`--mode critique`)
133
+ **Purpose**: Systematic review with specific improvement suggestions and priority rankings
134
+
135
+ **Analysis Structure**:
136
+ - Issue identification with severity classification
137
+ - Specific improvement recommendations with rationale
138
+ - Priority ranking based on impact and effort
139
+ - Quality metrics and validation criteria
140
+
141
+ **Example Output**:
142
+ ```
143
+ === REQUIREMENTS ANALYSIS ===
144
+
145
+ KARL WIEGERS - Requirements Quality Assessment:
146
+ ❌ CRITICAL: Requirement R-001 lacks measurable acceptance criteria
147
+ 📝 RECOMMENDATION: Replace "handle failures gracefully" with "open circuit breaker after 5 consecutive failures within 30 seconds"
148
+ 🎯 PRIORITY: High - Affects testability and validation
149
+ 📊 QUALITY IMPACT: +40% testability, +60% clarity
150
+
151
+ GOJKO ADZIC - Specification Testability:
152
+ ⚠️ MAJOR: No executable examples provided for complex behaviors
153
+ 📝 RECOMMENDATION: Add Given/When/Then scenarios for each requirement
154
+ 🎯 PRIORITY: Medium - Improves understanding and validation
155
+ 📊 QUALITY IMPACT: +50% comprehensibility, +35% validation coverage
156
+
157
+ === ARCHITECTURE ANALYSIS ===
158
+
159
+ MARTIN FOWLER - Interface Design:
160
+ ⚠️ MINOR: CircuitBreaker interface couples state management with execution logic
161
+ 📝 RECOMMENDATION: Separate CircuitBreakerState from CircuitBreakerExecutor
162
+ 🎯 PRIORITY: Low - Design improvement, not functional issue
163
+ 📊 QUALITY IMPACT: +20% maintainability, +15% testability
164
+ ```
165
+
166
+ ### Socratic Mode (`--mode socratic`)
167
+ **Purpose**: Learning-focused questioning to deepen understanding and improve thinking
168
+
169
+ **Question Categories**:
170
+ - Foundational understanding questions
171
+ - Stakeholder and purpose clarification
172
+ - Assumption identification and validation
173
+ - Alternative approach exploration
174
+
175
+ **Example Output**:
176
+ ```
177
+ ALISTAIR COCKBURN: "What is the fundamental problem this specification is trying to solve?"
178
+
179
+ KARL WIEGERS: "Who are the primary stakeholders affected by these requirements?"
180
+
181
+ MICHAEL NYGARD: "What assumptions are you making about the deployment environment and operational context?"
182
+
183
+ GOJKO ADZIC: "How would you explain these requirements to a non-technical business stakeholder?"
184
+
185
+ MARTIN FOWLER: "What would happen if we removed this requirement entirely? What breaks?"
186
+
187
+ LISA CRISPIN: "How would you validate that this specification is working correctly in production?"
188
+
189
+ KELSEY HIGHTOWER: "What operational and monitoring capabilities does this specification require?"
190
+ ```
191
+
192
+ ## Focus Areas
193
+
194
+ ### Requirements Focus (`--focus requirements`)
195
+ **Expert Panel**: Wiegers (lead), Adzic, Cockburn
196
+ **Analysis Areas**:
197
+ - Requirement clarity, completeness, and consistency
198
+ - Testability and measurability assessment
199
+ - Stakeholder needs alignment and validation
200
+ - Acceptance criteria quality and coverage
201
+ - Requirements traceability and verification
202
+
203
+ ### Architecture Focus (`--focus architecture`)
204
+ **Expert Panel**: Fowler (lead), Newman, Hohpe, Nygard
205
+ **Analysis Areas**:
206
+ - Interface design quality and consistency
207
+ - System boundary definitions and service decomposition
208
+ - Scalability and maintainability characteristics
209
+ - Design pattern appropriateness and implementation
210
+ - Integration and communication specifications
211
+
212
+ ### Testing Focus (`--focus testing`)
213
+ **Expert Panel**: Crispin (lead), Gregory, Adzic
214
+ **Analysis Areas**:
215
+ - Test strategy and coverage requirements
216
+ - Quality attribute specifications and validation
217
+ - Edge case identification and handling
218
+ - Acceptance criteria and definition of done
219
+ - Test automation and continuous validation
220
+
221
+ ### Compliance Focus (`--focus compliance`)
222
+ **Expert Panel**: Wiegers (lead), Nygard, Hightower
223
+ **Analysis Areas**:
224
+ - Regulatory requirement coverage and validation
225
+ - Security specifications and threat modeling
226
+ - Operational requirements and observability
227
+ - Audit trail and compliance verification
228
+ - Risk assessment and mitigation strategies
229
+
230
+ ## Tool Coordination
231
+ - **Read**: Specification content analysis and parsing
232
+ - **Sequential**: Expert panel coordination and iterative analysis
233
+ - **Context7**: Specification patterns and industry best practices
234
+ - **Grep**: Cross-reference validation and consistency checking
235
+ - **Write**: Improved specification generation and report creation
236
+ - **MultiEdit**: Collaborative specification enhancement and refinement
237
+
238
+ ## Iterative Improvement Process
239
+
240
+ ### Single Iteration (Default)
241
+ 1. **Initial Analysis**: Expert panel reviews specification
242
+ 2. **Issue Identification**: Systematic problem and gap identification
243
+ 3. **Improvement Recommendations**: Specific, actionable enhancement suggestions
244
+ 4. **Priority Ranking**: Critical path and impact-based prioritization
245
+
246
+ ### Multi-Iteration (`--iterations N`)
247
+ **Iteration 1**: Structural and fundamental issues
248
+ - Requirements clarity and completeness
249
+ - Architecture consistency and boundaries
250
+ - Major gaps and critical problems
251
+
252
+ **Iteration 2**: Detail refinement and enhancement
253
+ - Specific improvement implementation
254
+ - Edge case handling and error scenarios
255
+ - Quality attribute specifications
256
+
257
+ **Iteration 3**: Polish and optimization
258
+ - Documentation quality and clarity
259
+ - Example and scenario enhancement
260
+ - Final validation and consistency checks
261
+
262
+ ## Output Formats
263
+
264
+ ### Standard Format (`--format standard`)
265
+ ```yaml
266
+ specification_review:
267
+ original_spec: "authentication_service.spec.yml"
268
+ review_date: "2025-01-15"
269
+ expert_panel: ["wiegers", "adzic", "nygard", "fowler"]
270
+ focus_areas: ["requirements", "architecture", "testing"]
271
+
272
+ quality_assessment:
273
+ overall_score: 7.2/10
274
+ requirements_quality: 8.1/10
275
+ architecture_clarity: 6.8/10
276
+ testability_score: 7.5/10
277
+
278
+ critical_issues:
279
+ - category: "requirements"
280
+ severity: "high"
281
+ expert: "wiegers"
282
+ issue: "Authentication timeout not specified"
283
+ recommendation: "Define session timeout with configurable values"
284
+
285
+ - category: "architecture"
286
+ severity: "medium"
287
+ expert: "fowler"
288
+ issue: "Token refresh mechanism unclear"
289
+ recommendation: "Specify refresh token lifecycle and rotation policy"
290
+
291
+ expert_consensus:
292
+ - "Specification needs concrete failure handling definitions"
293
+ - "Missing operational monitoring and alerting requirements"
294
+ - "Authentication flow is well-defined but lacks error scenarios"
295
+
296
+ improvement_roadmap:
297
+ immediate: ["Define timeout specifications", "Add error handling scenarios"]
298
+ short_term: ["Specify monitoring requirements", "Add performance criteria"]
299
+ long_term: ["Comprehensive security review", "Integration testing strategy"]
300
+ ```
301
+
302
+ ### Structured Format (`--format structured`)
303
+ Token-efficient format using SuperClaude symbol system for concise communication.
304
+
305
+ ### Detailed Format (`--format detailed`)
306
+ Comprehensive analysis with full expert commentary, examples, and implementation guidance.
307
+
308
+ ## Examples
309
+
310
+ ### API Specification Review
311
+ ```
312
+ /sc:spec-panel @auth_api.spec.yml --mode critique --focus requirements,architecture
313
+ # Comprehensive API specification review
314
+ # Focus on requirements quality and architectural consistency
315
+ # Generate detailed improvement recommendations
316
+ ```
317
+
318
+ ### Requirements Workshop
319
+ ```
320
+ /sc:spec-panel "user story content" --mode discussion --experts "wiegers,adzic,cockburn"
321
+ # Collaborative requirements analysis and improvement
322
+ # Expert dialogue for requirement refinement
323
+ # Consensus building around acceptance criteria
324
+ ```
325
+
326
+ ### Architecture Validation
327
+ ```
328
+ /sc:spec-panel @microservice.spec.yml --mode socratic --focus architecture
329
+ # Learning-focused architectural review
330
+ # Deep questioning about design decisions
331
+ # Alternative approach exploration
332
+ ```
333
+
334
+ ### Iterative Improvement
335
+ ```
336
+ /sc:spec-panel @complex_system.spec.yml --iterations 3 --format detailed
337
+ # Multi-iteration improvement process
338
+ # Progressive refinement with expert guidance
339
+ # Comprehensive quality enhancement
340
+ ```
341
+
342
+ ### Compliance Review
343
+ ```
344
+ /sc:spec-panel @security_requirements.yml --focus compliance --experts "wiegers,nygard"
345
+ # Compliance and security specification review
346
+ # Regulatory requirement validation
347
+ # Risk assessment and mitigation planning
348
+ ```
349
+
350
+ ## Integration Patterns
351
+
352
+ ### Workflow Integration with /sc:code-to-spec
353
+ ```bash
354
+ # Generate initial specification from code
355
+ /sc:code-to-spec ./authentication_service --type api --format yaml
356
+
357
+ # Review and improve with expert panel
358
+ /sc:spec-panel @generated_auth_spec.yml --mode critique --focus requirements,testing
359
+
360
+ # Iterative refinement based on feedback
361
+ /sc:spec-panel @improved_auth_spec.yml --mode discussion --iterations 2
362
+ ```
363
+
364
+ ### Learning and Development Workflow
365
+ ```bash
366
+ # Start with socratic mode for learning
367
+ /sc:spec-panel @my_first_spec.yml --mode socratic --iterations 2
368
+
369
+ # Apply learnings with discussion mode
370
+ /sc:spec-panel @revised_spec.yml --mode discussion --focus requirements
371
+
372
+ # Final quality validation with critique mode
373
+ /sc:spec-panel @final_spec.yml --mode critique --format detailed
374
+ ```
375
+
376
+ ## Quality Assurance Features
377
+
378
+ ### Expert Validation
379
+ - Cross-expert consistency checking and validation
380
+ - Methodology alignment and best practice verification
381
+ - Quality metric calculation and progress tracking
382
+ - Recommendation prioritization and impact assessment
383
+
384
+ ### Specification Quality Metrics
385
+ - **Clarity Score**: Language precision and understandability (0-10)
386
+ - **Completeness Score**: Coverage of essential specification elements (0-10)
387
+ - **Testability Score**: Measurability and validation capability (0-10)
388
+ - **Consistency Score**: Internal coherence and contradiction detection (0-10)
389
+
390
+ ### Continuous Improvement
391
+ - Pattern recognition from successful improvements
392
+ - Expert recommendation effectiveness tracking
393
+ - Specification quality trend analysis
394
+ - Best practice pattern library development
395
+
396
+ ## Advanced Features
397
+
398
+ ### Custom Expert Panels
399
+ - Domain-specific expert selection and configuration
400
+ - Industry-specific methodology application
401
+ - Custom quality criteria and assessment frameworks
402
+ - Specialized review processes for unique requirements
403
+
404
+ ### Integration with Development Workflow
405
+ - CI/CD pipeline integration for specification validation
406
+ - Version control integration for specification evolution tracking
407
+ - IDE integration for inline specification quality feedback
408
+ - Automated quality gate enforcement and validation
409
+
410
+ ### Learning and Mentoring
411
+ - Progressive skill development tracking and guidance
412
+ - Specification writing pattern recognition and teaching
413
+ - Best practice library development and sharing
414
+ - Mentoring mode with educational focus and guidance
415
+
416
+ ## Boundaries
417
+
418
+ **Will:**
419
+ - Provide expert-level specification review and improvement guidance
420
+ - Generate specific, actionable recommendations with priority rankings
421
+ - Support multiple analysis modes for different use cases and learning objectives
422
+ - Integrate with specification generation tools for comprehensive workflow support
423
+
424
+ **Will Not:**
425
+ - Replace human judgment and domain expertise in critical decisions
426
+ - Modify specifications without explicit user consent and validation
427
+ - Generate specifications from scratch without existing content or context
428
+ - Provide legal or regulatory compliance guarantees beyond analysis guidance
@@ -0,0 +1,89 @@
1
+ ---
2
+ inclusion: manual
3
+ ---
4
+
5
+ # SuperClaude: task
6
+
7
+ > Converted from Claude Code SuperClaude framework
8
+ > Original: ~/.claude/commands/sc/task.md
9
+
10
+ # /sc:task - Enhanced Task Management
11
+
12
+ ## Triggers
13
+ - Complex tasks requiring multi-agent coordination and delegation
14
+ - Projects needing structured workflow management and cross-session persistence
15
+ - Operations requiring intelligent MCP server routing and domain expertise
16
+ - Tasks benefiting from systematic execution and progressive enhancement
17
+
18
+ ## Usage
19
+ ```
20
+ /sc:task [action] [target] [--strategy systematic|agile|enterprise] [--parallel] [--delegate]
21
+ ```
22
+
23
+ ## Behavioral Flow
24
+ 1. **Analyze**: Parse task requirements and determine optimal execution strategy
25
+ 2. **Delegate**: Route to appropriate MCP servers and activate relevant personas
26
+ 3. **Coordinate**: Execute tasks with intelligent workflow management and parallel processing
27
+ 4. **Validate**: Apply quality gates and comprehensive task completion verification
28
+ 5. **Optimize**: Analyze performance and provide enhancement recommendations
29
+
30
+ Key behaviors:
31
+ - Multi-persona coordination across architect, frontend, backend, security, devops domains
32
+ - Intelligent MCP server routing (Sequential, Context7, Magic, Playwright, Morphllm, Serena)
33
+ - Systematic execution with progressive task enhancement and cross-session persistence
34
+ - Advanced task delegation with hierarchical breakdown and dependency management
35
+
36
+ ## MCP Integration
37
+ - **Sequential MCP**: Complex multi-step task analysis and systematic execution planning
38
+ - **Context7 MCP**: Framework-specific patterns and implementation best practices
39
+ - **Magic MCP**: UI/UX task coordination and design system integration
40
+ - **Playwright MCP**: Testing workflow integration and validation automation
41
+ - **Morphllm MCP**: Large-scale task transformation and pattern-based optimization
42
+ - **Serena MCP**: Cross-session task persistence and project memory management
43
+
44
+ ## Tool Coordination
45
+ - **TodoWrite**: Hierarchical task breakdown and progress tracking across Epic → Story → Task levels
46
+ - **Task**: Advanced delegation for complex multi-agent coordination and sub-task management
47
+ - **Read/Write/Edit**: Task documentation and implementation coordination
48
+ - **sequentialthinking**: Structured reasoning for complex task dependency analysis
49
+
50
+ ## Key Patterns
51
+ - **Task Hierarchy**: Epic-level objectives → Story coordination → Task execution → Subtask granularity
52
+ - **Strategy Selection**: Systematic (comprehensive) → Agile (iterative) → Enterprise (governance)
53
+ - **Multi-Agent Coordination**: Persona activation → MCP routing → parallel execution → result integration
54
+ - **Cross-Session Management**: Task persistence → context continuity → progressive enhancement
55
+
56
+ ## Examples
57
+
58
+ ### Complex Feature Development
59
+ ```
60
+ /sc:task create "enterprise authentication system" --strategy systematic --parallel
61
+ # Comprehensive task breakdown with multi-domain coordination
62
+ # Activates architect, security, backend, frontend personas
63
+ ```
64
+
65
+ ### Agile Sprint Coordination
66
+ ```
67
+ /sc:task execute "feature backlog" --strategy agile --delegate
68
+ # Iterative task execution with intelligent delegation
69
+ # Cross-session persistence for sprint continuity
70
+ ```
71
+
72
+ ### Multi-Domain Integration
73
+ ```
74
+ /sc:task execute "microservices platform" --strategy enterprise --parallel
75
+ # Enterprise-scale coordination with compliance validation
76
+ # Parallel execution across multiple technical domains
77
+ ```
78
+
79
+ ## Boundaries
80
+
81
+ **Will:**
82
+ - Execute complex tasks with multi-agent coordination and intelligent delegation
83
+ - Provide hierarchical task breakdown with cross-session persistence
84
+ - Coordinate multiple MCP servers and personas for optimal task outcomes
85
+
86
+ **Will Not:**
87
+ - Execute simple tasks that don't require advanced orchestration
88
+ - Compromise quality standards for speed or convenience
89
+ - Operate without proper validation and quality gates
@@ -0,0 +1,93 @@
1
+ ---
2
+ inclusion: manual
3
+ ---
4
+
5
+ # SuperClaude: test
6
+
7
+ > Converted from Claude Code SuperClaude framework
8
+ > Original: ~/.claude/commands/sc/test.md
9
+
10
+ # /sc:test - Testing and Quality Assurance
11
+
12
+ ## Triggers
13
+ - Test execution requests for unit, integration, or e2e tests
14
+ - Coverage analysis and quality gate validation needs
15
+ - Continuous testing and watch mode scenarios
16
+ - Test failure analysis and debugging requirements
17
+
18
+ ## Usage
19
+ ```
20
+ /sc:test [target] [--type unit|integration|e2e|all] [--coverage] [--watch] [--fix]
21
+ ```
22
+
23
+ ## Behavioral Flow
24
+ 1. **Discover**: Categorize available tests using runner patterns and conventions
25
+ 2. **Configure**: Set up appropriate test environment and execution parameters
26
+ 3. **Execute**: Run tests with monitoring and real-time progress tracking
27
+ 4. **Analyze**: Generate coverage reports and failure diagnostics
28
+ 5. **Report**: Provide actionable recommendations and quality metrics
29
+
30
+ Key behaviors:
31
+ - Auto-detect test framework and configuration
32
+ - Generate comprehensive coverage reports with metrics
33
+ - Activate Playwright MCP for e2e browser testing
34
+ - Provide intelligent test failure analysis
35
+ - Support continuous watch mode for development
36
+
37
+ ## MCP Integration
38
+ - **Playwright MCP**: Auto-activated for `--type e2e` browser testing
39
+ - **QA Specialist Persona**: Activated for test analysis and quality assessment
40
+ - **Enhanced Capabilities**: Cross-browser testing, visual validation, performance metrics
41
+
42
+ ## Tool Coordination
43
+ - **Bash**: Test runner execution and environment management
44
+ - **Glob**: Test discovery and file pattern matching
45
+ - **Grep**: Result parsing and failure analysis
46
+ - **Write**: Coverage reports and test summaries
47
+
48
+ ## Key Patterns
49
+ - **Test Discovery**: Pattern-based categorization → appropriate runner selection
50
+ - **Coverage Analysis**: Execution metrics → comprehensive coverage reporting
51
+ - **E2E Testing**: Browser automation → cross-platform validation
52
+ - **Watch Mode**: File monitoring → continuous test execution
53
+
54
+ ## Examples
55
+
56
+ ### Basic Test Execution
57
+ ```
58
+ /sc:test
59
+ # Discovers and runs all tests with standard configuration
60
+ # Generates pass/fail summary and basic coverage
61
+ ```
62
+
63
+ ### Targeted Coverage Analysis
64
+ ```
65
+ /sc:test src/components --type unit --coverage
66
+ # Unit tests for specific directory with detailed coverage metrics
67
+ ```
68
+
69
+ ### Browser Testing
70
+ ```
71
+ /sc:test --type e2e
72
+ # Activates Playwright MCP for comprehensive browser testing
73
+ # Cross-browser compatibility and visual validation
74
+ ```
75
+
76
+ ### Development Watch Mode
77
+ ```
78
+ /sc:test --watch --fix
79
+ # Continuous testing with automatic simple failure fixes
80
+ # Real-time feedback during development
81
+ ```
82
+
83
+ ## Boundaries
84
+
85
+ **Will:**
86
+ - Execute existing test suites using project's configured test runner
87
+ - Generate coverage reports and quality metrics
88
+ - Provide intelligent test failure analysis with actionable recommendations
89
+
90
+ **Will Not:**
91
+ - Generate test cases or modify test framework configuration
92
+ - Execute tests requiring external services without proper setup
93
+ - Make destructive changes to test files without explicit permission