myaidev-method 0.2.1 โ†’ 0.2.3

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 (30) hide show
  1. package/.claude/mcp/mcp-config.json +93 -10
  2. package/.claude/mcp/sparc-orchestrator-server.js +607 -0
  3. package/DEV_WORKFLOW_GUIDE.md +1353 -0
  4. package/MCP_INTEGRATION.md +373 -0
  5. package/README.md +378 -21
  6. package/TECHNICAL_ARCHITECTURE.md +1868 -0
  7. package/bin/cli.js +44 -3
  8. package/dist/mcp/mcp-config.json +93 -10
  9. package/dist/mcp/sparc-orchestrator-server.js +607 -0
  10. package/package.json +24 -4
  11. package/src/lib/dev-workflow/agent-types.js +163 -0
  12. package/src/lib/dev-workflow/sparc-workflow.js +302 -0
  13. package/src/lib/dev-workflow/task-manager.js +313 -0
  14. package/src/scripts/dev-architect.js +99 -0
  15. package/src/scripts/dev-code.js +106 -0
  16. package/src/scripts/dev-docs.js +122 -0
  17. package/src/scripts/dev-review.js +117 -0
  18. package/src/scripts/dev-test.js +115 -0
  19. package/src/scripts/sparc-workflow.js +186 -0
  20. package/src/templates/claude/agents/dev-architect.md +436 -0
  21. package/src/templates/claude/agents/dev-coder.md +749 -0
  22. package/src/templates/claude/agents/dev-documenter.md +939 -0
  23. package/src/templates/claude/agents/dev-reviewer.md +1152 -0
  24. package/src/templates/claude/agents/dev-tester.md +600 -0
  25. package/src/templates/claude/commands/myai-dev-architect.md +80 -0
  26. package/src/templates/claude/commands/myai-dev-code.md +93 -0
  27. package/src/templates/claude/commands/myai-dev-docs.md +94 -0
  28. package/src/templates/claude/commands/myai-dev-review.md +96 -0
  29. package/src/templates/claude/commands/myai-dev-test.md +95 -0
  30. package/src/templates/claude/commands/myai-sparc-workflow.md +196 -0
package/README.md CHANGED
@@ -1,22 +1,39 @@
1
1
  # MyAIDev Method
2
2
 
3
- > **๐Ÿš€ The easiest way to supercharge your AI CLI with professional agents and get real work done!**
3
+ > **๐Ÿš€ A comprehensive development framework for AI-assisted software development with systematic workflows and multi-platform publishing!**
4
4
 
5
- A comprehensive package for AI CLI tools (Claude Code, Gemini CLI, Codex CLI) that provides custom subagents and MCP integrations for enhanced development workflows. **Zero code required** - just run one command and start creating professional content!
5
+ The **MyAIDev Method** is a complete development framework for AI CLI tools (Claude Code, Gemini CLI, Codex CLI) featuring the **SPARC methodology** for systematic software development, inspired by [GitHub Spec-Kit](https://github.com/github/spec-kit) patterns for agentic software development.
6
6
 
7
- **โœจ What makes this special:**
7
+ **๐ŸŒŸ What makes this special:**
8
+
9
+ **Comprehensive Development Framework:**
10
+ - **SPARC Methodology**: 5-phase systematic development workflow (Specification โ†’ Pseudocode โ†’ Architecture โ†’ Refinement โ†’ Completion)
11
+ - **Development Agents**: Architect, Coder, Tester, Reviewer, Documenter - complete coverage from design to deployment
12
+ - **Quality-First**: Built-in security (OWASP Top 10), testing (80%+ coverage), and code review standards
13
+ - **Spec-Kit Inspired**: Proven patterns for agentic software development based on GitHub's Spec-Kit framework
14
+
15
+ **Multi-Platform Publishing & Deployment:**
16
+ - **CMS Publishing**: WordPress, PayloadCMS with full content management
17
+ - **Static Site Generators**: Docusaurus, Mintlify, Astro with git-based workflows
18
+ - **Deployment**: Coolify self-hosted PaaS orchestration
19
+ - **Infrastructure**: RamNode.com optimized deployment patterns
20
+
21
+ **Professional Tooling:**
8
22
  - **Instant setup**: One `npx` command and you're ready
9
- - **Professional agents**: Content writer and WordPress admin out-of-the-box
10
- - **Claude Code native**: Follows official standards for maximum compatibility, with Gemini and OpenAI Codex CLI too.
11
- - **No dependencies**: Works standalone, leverages MCPs for WordPress, Notion, Google Workspace integration is optional
23
+ - **Claude Code native**: Follows official standards for maximum compatibility
24
+ - **Zero dependencies**: Core features work standalone, optional MCP integrations available
25
+ - **Production-ready**: SOLID principles, Clean Code, comprehensive testing built-in
12
26
 
13
27
  ## ๐Ÿ“‹ Table of Contents
14
28
 
15
29
  - [Features](#features)
16
30
  - [Installation](#installation)
17
31
  - [Quick Start](#quick-start)
18
- - [Available Agents](#available-agents)
32
+ - [SPARC Development Workflow](#sparc-development-workflow)
33
+ - [Development Agents](#development-agents)
34
+ - [Content & Publishing Agents](#content--publishing-agents)
19
35
  - [Slash Commands](#slash-commands)
36
+ - [MCP Server Integration](#mcp-server-integration)
20
37
  - [Configuration](#configuration)
21
38
  - [WordPress Integration](#wordpress-integration)
22
39
  - [SSH Integration](#ssh-integration)
@@ -30,16 +47,35 @@ A comprehensive package for AI CLI tools (Claude Code, Gemini CLI, Codex CLI) th
30
47
 
31
48
  ## โœจ Features
32
49
 
33
- - ๐Ÿค– **Custom Subagents**: Pre-configured AI agents in Markdown format with YAML frontmatter
34
- - ๐Ÿ“ **Content Writer Agent**: Professional content creation with SEO optimization
35
- - ๐Ÿ” **WordPress Admin Agent**: Site administration, security analysis, and performance optimization
36
- - ๐Ÿ“ค **Multi-Platform Publishing**: Publish to WordPress, PayloadCMS, Docusaurus, Mintlify, and Astro
37
- - ๐Ÿš€ **Coolify Deployment**: Self-hosted PaaS deployment and management
38
- - ๐Ÿ”Œ **MCP Integration**: WordPress, git-based workflows, and more
39
- - ๐Ÿ’ป **SSH Integration**: Server-level operations for advanced administration
40
- - ๐ŸŽฏ **Slash Commands**: Easy-to-use Markdown-based commands for Claude Code
41
- - ๐Ÿ”„ **Git-Based Publishing**: Automated git workflows for static sites
42
- - โœ… **Standards Compliant**: Follows Claude Code 2.0 agent patterns
50
+ ### ๐Ÿ—๏ธ Development Framework (SPARC Methodology)
51
+ - **Systematic Workflow**: 5-phase SPARC methodology (Specification โ†’ Pseudocode โ†’ Architecture โ†’ Refinement โ†’ Completion)
52
+ - **Development Agents**: Complete suite of specialized agents for the full development lifecycle
53
+ - ๐Ÿ—๏ธ **Architect**: System design, API specifications, data modeling, technology selection
54
+ - ๐Ÿ’ป **Coder**: Feature implementation, refactoring, SOLID principles, Clean Code
55
+ - ๐Ÿงช **Tester**: Unit/integration testing, 80%+ coverage, quality gates
56
+ - ๐Ÿ‘๏ธ **Reviewer**: Code quality, security (OWASP Top 10), performance analysis
57
+ - ๐Ÿ“š **Documenter**: API docs, user guides, architecture documentation
58
+ - **Spec-Kit Patterns**: Proven agentic development patterns inspired by GitHub Spec-Kit
59
+ - **Quality Standards**: Built-in security, testing, code review, and documentation standards
60
+ - **File-Based Workflow**: Sequential agent coordination with `.myaidev-method/sparc/` outputs
61
+
62
+ ### ๐Ÿ“ Content & Publishing
63
+ - **Content Writer Agent**: Professional SEO-optimized content creation
64
+ - **Multi-Platform Publishing**: WordPress, PayloadCMS, Docusaurus, Mintlify, Astro
65
+ - **Git-Based Workflows**: Automated publishing for static site generators
66
+ - **WordPress Admin Agent**: Security, performance, health monitoring, and administration
67
+
68
+ ### ๐Ÿš€ Deployment & Infrastructure
69
+ - **Coolify Integration**: Self-hosted PaaS deployment and orchestration
70
+ - **RamNode Optimized**: Deployment patterns optimized for RamNode.com infrastructure
71
+ - **SSH Integration**: Server-level operations for advanced administration
72
+ - **MCP Server Integration**: Optional advanced features with SPARC Orchestrator, Chrome DevTools, and WordPress MCP servers
73
+
74
+ ### ๐Ÿ› ๏ธ Development Tools
75
+ - **Slash Commands**: Easy-to-use Markdown-based commands for Claude Code
76
+ - **Custom Subagents**: Pre-configured AI agents following Claude Code 2.0 standards
77
+ - **Standards Compliant**: Full compatibility with Claude Code, Gemini CLI, Codex CLI
78
+ - **Zero Dependencies**: Core features work standalone, optional MCP integrations
43
79
 
44
80
  ## ๐Ÿš€ Installation
45
81
 
@@ -98,7 +134,269 @@ npx myaidev-method init
98
134
  /myai-wordpress-admin health-check
99
135
  ```
100
136
 
101
- ## ๐Ÿค– Available Agents
137
+ ## ๐Ÿ—๏ธ SPARC Development Workflow
138
+
139
+ The **MyAIDev Method** implements the **SPARC methodology** - a systematic 5-phase approach to software development inspired by [GitHub Spec-Kit](https://github.com/github/spec-kit) patterns for agentic software development.
140
+
141
+ ### What is SPARC?
142
+
143
+ **SPARC** stands for:
144
+ - **S**pecification - Define requirements and system boundaries
145
+ - **P**seudocode - Plan implementation approach
146
+ - **A**rchitecture - Design system structure, APIs, and data models
147
+ - **R**efinement - Implement, test, and review code quality
148
+ - **C**ompletion - Document and deliver production-ready software
149
+
150
+ ### The 5 Phases
151
+
152
+ ```
153
+ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
154
+ โ”‚ SPARC Workflow: Systematic Software Development โ”‚
155
+ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
156
+
157
+ Phase 1: ๐Ÿ—๏ธ ARCHITECTURE
158
+ โ”œโ”€ Agent: dev-architect
159
+ โ”œโ”€ Output: .myaidev-method/sparc/architecture.md
160
+ โ”œโ”€ Deliverables:
161
+ โ”‚ โ”œโ”€ System design with Mermaid diagrams
162
+ โ”‚ โ”œโ”€ API specifications (REST/GraphQL/gRPC)
163
+ โ”‚ โ”œโ”€ Data models and schemas
164
+ โ”‚ โ”œโ”€ Technology stack recommendations
165
+ โ”‚ โ””โ”€ Security and scalability planning
166
+ โ””โ”€ Command: /myai-dev-architect "Design authentication system"
167
+
168
+ Phase 2: ๐Ÿ’ป IMPLEMENTATION
169
+ โ”œโ”€ Agent: dev-coder
170
+ โ”œโ”€ Output: .myaidev-method/sparc/code-output/
171
+ โ”œโ”€ Standards: SOLID, Clean Code, DRY/KISS/YAGNI
172
+ โ”œโ”€ Features:
173
+ โ”‚ โ”œโ”€ Production-ready code implementation
174
+ โ”‚ โ”œโ”€ Security best practices (OWASP Top 10)
175
+ โ”‚ โ”œโ”€ Error handling and input validation
176
+ โ”‚ โ””โ”€ Inline documentation (JSDoc, etc.)
177
+ โ””โ”€ Command: /myai-dev-code "Implement JWT authentication"
178
+
179
+ Phase 3: ๐Ÿงช TESTING
180
+ โ”œโ”€ Agent: dev-tester
181
+ โ”œโ”€ Output: .myaidev-method/sparc/test-results/
182
+ โ”œโ”€ Coverage: 80%+ critical paths, 60%+ overall
183
+ โ”œโ”€ Deliverables:
184
+ โ”‚ โ”œโ”€ Unit test suites
185
+ โ”‚ โ”œโ”€ Integration tests
186
+ โ”‚ โ”œโ”€ Coverage reports
187
+ โ”‚ โ””โ”€ Quality gate validation
188
+ โ””โ”€ Command: /myai-dev-test "Test authentication module"
189
+
190
+ Phase 4: ๐Ÿ‘๏ธ REVIEW
191
+ โ”œโ”€ Agent: dev-reviewer
192
+ โ”œโ”€ Output: .myaidev-method/sparc/review-report.md
193
+ โ”œโ”€ Analysis:
194
+ โ”‚ โ”œโ”€ Code quality and complexity
195
+ โ”‚ โ”œโ”€ Security audit (OWASP Top 10)
196
+ โ”‚ โ”œโ”€ Performance optimization
197
+ โ”‚ โ”œโ”€ Best practices compliance
198
+ โ”‚ โ””โ”€ Technical debt assessment
199
+ โ””โ”€ Command: /myai-dev-review "Review authentication implementation"
200
+
201
+ Phase 5: ๐Ÿ“š DOCUMENTATION
202
+ โ”œโ”€ Agent: dev-documenter
203
+ โ”œโ”€ Output: .myaidev-method/sparc/documentation/
204
+ โ”œโ”€ Deliverables:
205
+ โ”‚ โ”œโ”€ API reference (OpenAPI/Swagger)
206
+ โ”‚ โ”œโ”€ User guides and tutorials
207
+ โ”‚ โ”œโ”€ Architecture documentation
208
+ โ”‚ โ””โ”€ Code examples and snippets
209
+ โ””โ”€ Command: /myai-dev-docs "Document authentication API"
210
+ ```
211
+
212
+ ### Complete Workflow Execution
213
+
214
+ Run the entire SPARC workflow with a single command:
215
+
216
+ ```bash
217
+ # Execute all 5 phases sequentially
218
+ npm run sparc "Build user authentication system with JWT"
219
+
220
+ # Or use the slash command
221
+ /myai-sparc-workflow "Create payment processing module"
222
+
223
+ # With technology preferences
224
+ npm run sparc "Build e-commerce checkout" --tech-stack "react,node,stripe,postgres"
225
+ ```
226
+
227
+ ### Workflow Output Structure
228
+
229
+ ```
230
+ .myaidev-method/
231
+ โ”œโ”€โ”€ sparc/
232
+ โ”‚ โ”œโ”€โ”€ architecture.md # Phase 1: System design
233
+ โ”‚ โ”œโ”€โ”€ code-output/ # Phase 2: Implementation
234
+ โ”‚ โ”‚ โ”œโ”€โ”€ src/
235
+ โ”‚ โ”‚ โ”œโ”€โ”€ tests/
236
+ โ”‚ โ”‚ โ””โ”€โ”€ ...
237
+ โ”‚ โ”œโ”€โ”€ test-results/ # Phase 3: Testing
238
+ โ”‚ โ”‚ โ”œโ”€โ”€ unit/
239
+ โ”‚ โ”‚ โ”œโ”€โ”€ integration/
240
+ โ”‚ โ”‚ โ””โ”€โ”€ coverage-report.md
241
+ โ”‚ โ”œโ”€โ”€ review-report.md # Phase 4: Code review
242
+ โ”‚ โ””โ”€โ”€ documentation/ # Phase 5: Documentation
243
+ โ”‚ โ”œโ”€โ”€ api/
244
+ โ”‚ โ”œโ”€โ”€ user-guide/
245
+ โ”‚ โ””โ”€โ”€ architecture/
246
+ โ”œโ”€โ”€ tasks/ # Task tracking
247
+ โ””โ”€โ”€ workflows/ # Workflow execution logs
248
+ ```
249
+
250
+ ### Quality Standards
251
+
252
+ Every SPARC workflow enforces:
253
+
254
+ - **Code Quality**: SOLID principles, Clean Code, maintainability metrics
255
+ - **Security**: OWASP Top 10 compliance, vulnerability scanning
256
+ - **Testing**: 80%+ critical path coverage, integration tests
257
+ - **Performance**: Algorithm complexity analysis, optimization recommendations
258
+ - **Documentation**: Complete API docs, user guides, architecture specs
259
+
260
+ ### GitHub Spec-Kit Inspiration
261
+
262
+ This framework is inspired by [GitHub's Spec-Kit](https://github.com/github/spec-kit) patterns for agentic software development:
263
+
264
+ - **Systematic Approach**: Structured phases with clear deliverables
265
+ - **Quality Gates**: Validation at each phase transition
266
+ - **Agent Specialization**: Dedicated agents with specific expertise
267
+ - **File-Based Coordination**: Agents communicate through well-defined outputs
268
+ - **Reproducible Workflows**: Consistent results across projects
269
+
270
+ ### Individual Phase Commands
271
+
272
+ You can also run individual phases:
273
+
274
+ ```bash
275
+ # CLI commands
276
+ npm run dev:architect "Design real-time chat app"
277
+ npm run dev:code "Implement WebSocket server"
278
+ npm run dev:test "Test chat functionality" --integration
279
+ npm run dev:review "Review chat implementation" --security
280
+ npm run dev:docs "Document chat API"
281
+
282
+ # Slash commands (in Claude Code)
283
+ /myai-dev-architect "Design microservices architecture"
284
+ /myai-dev-code "Implement user service" --test-driven
285
+ /myai-dev-test "Test user service" --coverage
286
+ /myai-dev-review "Security audit for user service"
287
+ /myai-dev-docs "Document user service API"
288
+ ```
289
+
290
+ ## ๐Ÿค– Development Agents
291
+
292
+ ### Complete Development Lifecycle Coverage
293
+
294
+ The MyAIDev Method provides specialized agents for every phase of the development lifecycle:
295
+
296
+ ### ๐Ÿ—๏ธ Architecture Agent
297
+ **File:** `.claude/agents/dev-architect.md`
298
+ **Phase:** Architecture (SPARC Phase 1)
299
+
300
+ System architect specializing in scalable design, API specifications, and technology selection.
301
+
302
+ **Capabilities:**
303
+ - High-level system architecture with Mermaid diagrams
304
+ - API contract definitions (REST, GraphQL, gRPC)
305
+ - Data modeling and schema design
306
+ - Technology stack recommendations
307
+ - Security architecture planning
308
+ - Scalability and performance planning
309
+
310
+ **Output:** `.myaidev-method/sparc/architecture.md`
311
+
312
+ ### ๐Ÿ’ป Implementation Agent (Coder)
313
+ **File:** `.claude/agents/dev-coder.md`
314
+ **Phase:** Implementation (SPARC Phase 2)
315
+
316
+ Production code implementer following SOLID principles and Clean Code practices.
317
+
318
+ **Capabilities:**
319
+ - Feature implementation from architecture specs
320
+ - Code refactoring and optimization
321
+ - SOLID principles application
322
+ - Security best practices (OWASP Top 10)
323
+ - Error handling and input validation
324
+ - Inline documentation (JSDoc, Sphinx, etc.)
325
+
326
+ **Output:** `.myaidev-method/sparc/code-output/`
327
+
328
+ **Quality Standards:**
329
+ - 80%+ test coverage target
330
+ - SOLID, DRY, KISS, YAGNI principles
331
+ - Security-first implementation
332
+ - Comprehensive error handling
333
+
334
+ ### ๐Ÿงช Testing Agent
335
+ **File:** `.claude/agents/dev-tester.md`
336
+ **Phase:** Testing (SPARC Phase 3)
337
+
338
+ Comprehensive testing specialist with TDD workflow support.
339
+
340
+ **Capabilities:**
341
+ - Unit test creation (AAA pattern)
342
+ - Integration test development
343
+ - Coverage analysis and reporting
344
+ - Quality gate validation
345
+ - Test-Driven Development (TDD) workflow
346
+ - Multiple framework support (Jest, Mocha, Pytest, etc.)
347
+
348
+ **Output:** `.myaidev-method/sparc/test-results/`
349
+
350
+ **Coverage Standards:**
351
+ - 80%+ for critical paths
352
+ - 60%+ overall coverage
353
+ - Pre-commit, pre-merge, pre-deployment gates
354
+
355
+ ### ๐Ÿ‘๏ธ Code Review Agent
356
+ **File:** `.claude/agents/dev-reviewer.md`
357
+ **Phase:** Review (SPARC Phase 4)
358
+
359
+ Code quality and security analyst with comprehensive review capabilities.
360
+
361
+ **Capabilities:**
362
+ - Code quality metrics and complexity analysis
363
+ - Security audit (OWASP Top 10 compliance)
364
+ - Performance review and optimization
365
+ - Best practices validation (SOLID, framework standards)
366
+ - Technical debt assessment with priority scoring
367
+ - Code smell and anti-pattern detection
368
+
369
+ **Output:** `.myaidev-method/sparc/review-report.md`
370
+
371
+ **Review Standards:**
372
+ - Code quality: Complexity, readability, maintainability
373
+ - Security: OWASP Top 10, vulnerability patterns
374
+ - Performance: Algorithm complexity, resource management
375
+ - Best practices: Framework standards, design patterns
376
+
377
+ ### ๐Ÿ“š Documentation Agent
378
+ **File:** `.claude/agents/dev-documenter.md`
379
+ **Phase:** Documentation (SPARC Phase 5)
380
+
381
+ Technical documentation specialist for APIs, user guides, and architecture docs.
382
+
383
+ **Capabilities:**
384
+ - API reference generation (OpenAPI/Swagger)
385
+ - User guide and tutorial creation
386
+ - Architecture documentation
387
+ - Code example generation and testing
388
+ - Multiple format support (Markdown, HTML, reStructuredText)
389
+ - Inline code documentation (JSDoc, Sphinx, etc.)
390
+
391
+ **Output:** `.myaidev-method/sparc/documentation/`
392
+
393
+ **Documentation Standards:**
394
+ - Clarity: Simple language, clear examples, visual aids
395
+ - Completeness: All public APIs documented
396
+ - Accuracy: Tested code examples, synchronized with code
397
+ - Accessibility: Multiple formats, searchable, well-organized
398
+
399
+ ## ๐Ÿ“ Content & Publishing Agents
102
400
 
103
401
  ### Content Writer Agent
104
402
  **File:** `.claude/agents/content-writer.md`
@@ -113,9 +411,7 @@ Professional content writer specializing in creating high-quality, engaging, and
113
411
  - Multiple tone and audience support
114
412
  - Keyword optimization
115
413
 
116
- ### Publishing Agents
117
-
118
- #### WordPress Admin Agent
414
+ ### WordPress Admin Agent
119
415
  **File:** `.claude/agents/wordpress-admin.md`
120
416
 
121
417
  WordPress administrator for comprehensive site management, security, performance, and health analysis.
@@ -305,6 +601,67 @@ Configure MyAI Method settings.
305
601
 
306
602
  For detailed publishing workflows and platform-specific guides, see **[PUBLISHING_GUIDE.md](PUBLISHING_GUIDE.md)**
307
603
 
604
+ ## ๐Ÿ”ง MCP Server Integration
605
+
606
+ MyAIDev Method includes three optional MCP (Model Context Protocol) servers for advanced orchestration, testing, and WordPress integration.
607
+
608
+ ### Available MCP Servers
609
+
610
+ **1. SPARC Orchestrator** - Workflow automation for the 5-phase SPARC methodology
611
+ - `sparc_orchestrate` - Orchestrate complete 5-phase workflows
612
+ - `sparc_status` - Get workflow execution status
613
+ - `sparc_phase_execute` - Execute single SPARC phases
614
+ - `sparc_workflow_history` - View workflow history
615
+ - `sparc_task_results` - Get detailed workflow results
616
+
617
+ **2. Chrome DevTools MCP** - Browser automation and testing ([chrome-devtools-mcp](https://github.com/ChromeDevTools/chrome-devtools-mcp))
618
+ - `cdp_connect` - Connect to Chrome DevTools Protocol
619
+ - `cdp_navigate` - Browser navigation
620
+ - `cdp_screenshot` - Visual testing with screenshots
621
+ - `cdp_evaluate` - Execute JavaScript in browser
622
+ - `cdp_network_monitor` - Monitor network requests
623
+ - `cdp_console_logs` - Capture console logs
624
+
625
+ **3. WordPress MCP** - Enhanced WordPress operations with session management
626
+ - Session management and memory persistence
627
+ - Health monitoring and site statistics
628
+ - Batch publishing operations
629
+ - Enhanced WordPress REST API integration
630
+
631
+ ### Setup MCP Servers
632
+
633
+ Add to Claude Code MCP settings:
634
+
635
+ ```bash
636
+ # SPARC Orchestrator
637
+ claude mcp add myaidev-sparc npx myaidev-sparc-orchestrator
638
+
639
+ # Chrome DevTools (requires separate installation)
640
+ npm install -g chrome-devtools-mcp
641
+ claude mcp add chrome-devtools npx chrome-devtools-mcp
642
+
643
+ # WordPress MCP
644
+ claude mcp add myaidev-wordpress npx myaidev-mcp-server
645
+ ```
646
+
647
+ ### Usage Example
648
+
649
+ ```javascript
650
+ // Orchestrate complete SPARC workflow
651
+ mcp__myaidev_sparc__sparc_orchestrate({
652
+ task: "Build user authentication system",
653
+ strategy: "sequential",
654
+ phases: ["architecture", "implementation", "testing", "review", "documentation"],
655
+ options: {
656
+ techStack: "nextjs,payloadcms,mongodb",
657
+ testFramework: "jest",
658
+ focusSecurity: true
659
+ }
660
+ })
661
+ ```
662
+
663
+ For detailed MCP setup and usage, see **[MCP_INTEGRATION.md](MCP_INTEGRATION.md)**
664
+
308
665
  ## โš™๏ธ Configuration
309
666
 
310
667
  After installation for Claude Code, the package creates a `.claude` directory following official standards: