myaidev-method 0.3.2 โ†’ 0.3.4

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 (80) hide show
  1. package/.claude-plugin/plugin.json +52 -48
  2. package/DEV_WORKFLOW_GUIDE.md +6 -6
  3. package/MCP_INTEGRATION.md +4 -4
  4. package/README.md +81 -64
  5. package/TECHNICAL_ARCHITECTURE.md +112 -18
  6. package/USER_GUIDE.md +57 -40
  7. package/bin/cli.js +49 -127
  8. package/dist/mcp/gutenberg-converter.js +667 -413
  9. package/dist/mcp/wordpress-server.js +1558 -1181
  10. package/extension.json +3 -3
  11. package/package.json +2 -1
  12. package/skills/content-writer/SKILL.md +130 -178
  13. package/skills/infographic/SKILL.md +191 -0
  14. package/skills/myaidev-analyze/SKILL.md +242 -0
  15. package/skills/myaidev-analyze/agents/dependency-mapper-agent.md +236 -0
  16. package/skills/myaidev-analyze/agents/pattern-detector-agent.md +240 -0
  17. package/skills/myaidev-analyze/agents/structure-scanner-agent.md +171 -0
  18. package/skills/myaidev-analyze/agents/tech-profiler-agent.md +291 -0
  19. package/skills/myaidev-architect/SKILL.md +389 -0
  20. package/skills/myaidev-architect/agents/compliance-checker-agent.md +287 -0
  21. package/skills/myaidev-architect/agents/requirements-analyst-agent.md +194 -0
  22. package/skills/myaidev-architect/agents/system-designer-agent.md +315 -0
  23. package/skills/myaidev-coder/SKILL.md +291 -0
  24. package/skills/myaidev-coder/agents/implementer-agent.md +185 -0
  25. package/skills/myaidev-coder/agents/integration-agent.md +168 -0
  26. package/skills/myaidev-coder/agents/pattern-scanner-agent.md +161 -0
  27. package/skills/myaidev-coder/agents/self-reviewer-agent.md +168 -0
  28. package/skills/myaidev-debug/SKILL.md +308 -0
  29. package/skills/myaidev-debug/agents/fix-agent-debug.md +317 -0
  30. package/skills/myaidev-debug/agents/hypothesis-agent.md +226 -0
  31. package/skills/myaidev-debug/agents/investigator-agent.md +250 -0
  32. package/skills/myaidev-debug/agents/symptom-collector-agent.md +231 -0
  33. package/skills/myaidev-documenter/SKILL.md +194 -0
  34. package/skills/myaidev-documenter/agents/code-reader-agent.md +172 -0
  35. package/skills/myaidev-documenter/agents/doc-validator-agent.md +174 -0
  36. package/skills/myaidev-documenter/agents/doc-writer-agent.md +379 -0
  37. package/skills/myaidev-migrate/SKILL.md +300 -0
  38. package/skills/myaidev-migrate/agents/migration-planner-agent.md +237 -0
  39. package/skills/myaidev-migrate/agents/migration-writer-agent.md +248 -0
  40. package/skills/myaidev-migrate/agents/schema-analyzer-agent.md +190 -0
  41. package/skills/myaidev-performance/SKILL.md +270 -0
  42. package/skills/myaidev-performance/agents/benchmark-agent.md +281 -0
  43. package/skills/myaidev-performance/agents/optimizer-agent.md +277 -0
  44. package/skills/myaidev-performance/agents/profiler-agent.md +252 -0
  45. package/skills/myaidev-refactor/SKILL.md +296 -0
  46. package/skills/myaidev-refactor/agents/refactor-executor-agent.md +221 -0
  47. package/skills/myaidev-refactor/agents/refactor-planner-agent.md +213 -0
  48. package/skills/myaidev-refactor/agents/regression-guard-agent.md +242 -0
  49. package/skills/myaidev-refactor/agents/smell-detector-agent.md +233 -0
  50. package/skills/myaidev-reviewer/SKILL.md +385 -0
  51. package/skills/myaidev-reviewer/agents/auto-fixer-agent.md +238 -0
  52. package/skills/myaidev-reviewer/agents/code-analyst-agent.md +220 -0
  53. package/skills/myaidev-reviewer/agents/security-scanner-agent.md +262 -0
  54. package/skills/myaidev-tester/SKILL.md +331 -0
  55. package/skills/myaidev-tester/agents/coverage-analyst-agent.md +163 -0
  56. package/skills/myaidev-tester/agents/tdd-driver-agent.md +242 -0
  57. package/skills/myaidev-tester/agents/test-runner-agent.md +176 -0
  58. package/skills/myaidev-tester/agents/test-strategist-agent.md +154 -0
  59. package/skills/myaidev-tester/agents/test-writer-agent.md +242 -0
  60. package/skills/myaidev-workflow/SKILL.md +567 -0
  61. package/skills/myaidev-workflow/agents/analyzer-agent.md +317 -0
  62. package/skills/myaidev-workflow/agents/coordinator-agent.md +253 -0
  63. package/skills/security-auditor/SKILL.md +1 -1
  64. package/skills/skill-builder/SKILL.md +417 -0
  65. package/src/cli/commands/addon.js +146 -135
  66. package/src/cli/commands/auth.js +9 -1
  67. package/src/config/workflows.js +11 -6
  68. package/src/lib/ascii-banner.js +3 -3
  69. package/src/lib/update-manager.js +120 -61
  70. package/src/mcp/gutenberg-converter.js +667 -413
  71. package/src/mcp/wordpress-server.js +1558 -1181
  72. package/src/statusline/statusline.sh +279 -0
  73. package/src/templates/claude/CLAUDE.md +124 -0
  74. package/skills/sparc-architect/SKILL.md +0 -127
  75. package/skills/sparc-coder/SKILL.md +0 -90
  76. package/skills/sparc-documenter/SKILL.md +0 -155
  77. package/skills/sparc-reviewer/SKILL.md +0 -138
  78. package/skills/sparc-tester/SKILL.md +0 -100
  79. package/skills/sparc-workflow/SKILL.md +0 -130
  80. /package/{marketplace.json โ†’ .claude-plugin/marketplace.json} +0 -0
@@ -1,50 +1,54 @@
1
1
  {
2
- "name": "myaidev-method",
3
- "version": "1.0.0",
4
- "description": "Comprehensive AI development framework with SPARC methodology, content creation, multi-platform publishing, visual generation, and security testing",
5
- "author": {
6
- "name": "Samuel Mukoti",
7
- "email": "samuelm@openmy.ai",
8
- "url": "https://github.com/myaione"
9
- },
10
- "homepage": "https://dev.myai1.ai/plugins/myaidev-method",
11
- "repository": "https://github.com/myaione/myaidev-method",
12
- "license": "MIT",
13
- "keywords": [
14
- "sparc",
15
- "content-creation",
16
- "wordpress",
17
- "visual-generation",
18
- "security-testing",
19
- "devops",
20
- "publishing",
21
- "ai-agents",
22
- "seo",
23
- "payloadcms",
24
- "coolify",
25
- "openstack"
26
- ],
27
- "skills": "./skills/",
28
- "hooks": "./hooks/hooks.json",
29
- "mcpServers": {
30
- "myaidev-wordpress": {
31
- "command": "node",
32
- "args": ["${CLAUDE_PLUGIN_ROOT}/src/mcp/wordpress-server.js"],
33
- "env": {
34
- "WORDPRESS_URL": "${WORDPRESS_URL}",
35
- "WORDPRESS_USERNAME": "${WORDPRESS_USERNAME}",
36
- "WORDPRESS_APP_PASSWORD": "${WORDPRESS_APP_PASSWORD}"
37
- }
38
- },
39
- "myaidev-openstack": {
40
- "command": "node",
41
- "args": ["${CLAUDE_PLUGIN_ROOT}/src/mcp/openstack-server.js"],
42
- "env": {
43
- "OS_AUTH_URL": "${OS_AUTH_URL}",
44
- "OS_USERNAME": "${OS_USERNAME}",
45
- "OS_PASSWORD": "${OS_PASSWORD}",
46
- "OS_PROJECT_NAME": "${OS_PROJECT_NAME}"
47
- }
48
- }
49
- }
2
+ "name": "myaidev-method",
3
+ "version": "1.0.0",
4
+ "description": "Comprehensive AI development framework with SPARC methodology, content creation, multi-platform publishing, visual generation, and security testing",
5
+ "author": {
6
+ "name": "Samuel Mukoti",
7
+ "email": "samuelm@openmy.ai",
8
+ "url": "https://github.com/myaione"
9
+ },
10
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-method",
11
+ "repository": "https://github.com/myaione/myaidev-method",
12
+ "license": "MIT",
13
+ "keywords": [
14
+ "sparc",
15
+ "content-creation",
16
+ "wordpress",
17
+ "visual-generation",
18
+ "security-testing",
19
+ "devops",
20
+ "publishing",
21
+ "ai-agents",
22
+ "seo",
23
+ "payloadcms",
24
+ "coolify",
25
+ "openstack"
26
+ ],
27
+ "skills": "./skills/",
28
+ "hooks": "./hooks/hooks.json",
29
+ "mcpServers": {
30
+ "myaidev-wordpress": {
31
+ "command": "node",
32
+ "args": [
33
+ "${CLAUDE_PLUGIN_ROOT}/src/mcp/wordpress-server.js"
34
+ ],
35
+ "env": {
36
+ "WORDPRESS_URL": "${WORDPRESS_URL}",
37
+ "WORDPRESS_USERNAME": "${WORDPRESS_USERNAME}",
38
+ "WORDPRESS_APP_PASSWORD": "${WORDPRESS_APP_PASSWORD}"
39
+ }
40
+ },
41
+ "myaidev-openstack": {
42
+ "command": "node",
43
+ "args": [
44
+ "${CLAUDE_PLUGIN_ROOT}/src/mcp/openstack-server.js"
45
+ ],
46
+ "env": {
47
+ "OS_AUTH_URL": "${OS_AUTH_URL}",
48
+ "OS_USERNAME": "${OS_USERNAME}",
49
+ "OS_PASSWORD": "${OS_PASSWORD}",
50
+ "OS_PROJECT_NAME": "${OS_PROJECT_NAME}"
51
+ }
52
+ }
53
+ }
50
54
  }
@@ -86,7 +86,7 @@ Design scalable system architecture, define API contracts, model data flows, and
86
86
  ### Command
87
87
  ```bash
88
88
  # Skill (Claude Code)
89
- /sparc-architect "Design authentication system with JWT"
89
+ /myaidev-architect "Design authentication system with JWT"
90
90
 
91
91
  # CLI command (npm)
92
92
  npm run dev:architect "Design real-time chat application"
@@ -200,7 +200,7 @@ Implement features based on architecture specifications using SOLID principles,
200
200
  ### Command
201
201
  ```bash
202
202
  # Skill
203
- /sparc-coder "Implement JWT authentication with refresh tokens"
203
+ /myaidev-coder "Implement JWT authentication with refresh tokens"
204
204
 
205
205
  # CLI command
206
206
  npm run dev:code "Implement user registration"
@@ -291,7 +291,7 @@ Create comprehensive test suites with unit tests, integration tests, and coverag
291
291
  ### Command
292
292
  ```bash
293
293
  # Skill
294
- /sparc-tester "Test authentication module"
294
+ /myaidev-tester "Test authentication module"
295
295
 
296
296
  # CLI command
297
297
  npm run dev:test "Test user registration"
@@ -373,7 +373,7 @@ Analyze code quality, security vulnerabilities, performance issues, and best pra
373
373
  ### Command
374
374
  ```bash
375
375
  # Skill
376
- /sparc-reviewer "Review authentication implementation"
376
+ /myaidev-reviewer "Review authentication implementation"
377
377
 
378
378
  # CLI command
379
379
  npm run dev:review "Review user service"
@@ -483,7 +483,7 @@ Generate comprehensive API documentation, user guides, architecture docs, and co
483
483
  ### Command
484
484
  ```bash
485
485
  # Skill
486
- /sparc-documenter "Document authentication API"
486
+ /myaidev-documenter "Document authentication API"
487
487
 
488
488
  # CLI command
489
489
  npm run dev:docs "Document user service API"
@@ -575,7 +575,7 @@ Execute the complete SPARC workflow with a single command:
575
575
 
576
576
  ```bash
577
577
  # Skill (in Claude Code)
578
- /sparc-workflow "Build user authentication system with JWT and refresh tokens"
578
+ /myaidev-workflow "Build user authentication system with JWT and refresh tokens"
579
579
 
580
580
  # CLI command
581
581
  npx myaidev-method sparc "Build user authentication system with JWT and refresh tokens"
@@ -180,7 +180,7 @@ Using SPARC Orchestrator + Chrome DevTools + WordPress MCP for end-to-end develo
180
180
 
181
181
  ```bash
182
182
  # 1. Orchestrate complete development workflow
183
- /sparc-workflow "Build blog with authentication"
183
+ /myaidev-workflow "Build blog with authentication"
184
184
 
185
185
  # 2. During testing phase, use Chrome DevTools for browser testing
186
186
  # The dev-tester agent will automatically use Chrome DevTools MCP if available
@@ -195,11 +195,11 @@ Chrome DevTools integration with SPARC testing phase:
195
195
 
196
196
  ```bash
197
197
  # 1. Run architecture and implementation phases
198
- /sparc-architect "Design blog system"
199
- /sparc-coder "Implement blog features"
198
+ /myaidev-architect "Design blog system"
199
+ /myaidev-coder "Implement blog features"
200
200
 
201
201
  # 2. Run testing with Chrome DevTools integration
202
- /sparc-tester "Test blog functionality" --integration
202
+ /myaidev-tester "Test blog functionality" --integration
203
203
 
204
204
  # The tester agent will:
205
205
  # - Run unit tests (Jest/Mocha)
package/README.md CHANGED
@@ -55,11 +55,11 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
55
55
  ### ๐Ÿ—๏ธ Development Framework (SPARC Methodology)
56
56
  - **Systematic Workflow**: 5-phase SPARC methodology (Specification โ†’ Pseudocode โ†’ Architecture โ†’ Refinement โ†’ Completion)
57
57
  - **Development Skills**: Complete suite of specialized skills for the full development lifecycle
58
- - ๐Ÿ—๏ธ **sparc-architect**: System design, API specifications, data modeling, technology selection
59
- - ๐Ÿ’ป **sparc-coder**: Feature implementation, refactoring, SOLID principles, Clean Code
60
- - ๐Ÿงช **sparc-tester**: Unit/integration testing, 80%+ coverage, quality gates
61
- - ๐Ÿ‘๏ธ **sparc-reviewer**: Code quality, security (OWASP Top 10), performance analysis
62
- - ๐Ÿ“š **sparc-documenter**: API docs, user guides, architecture documentation
58
+ - ๐Ÿ—๏ธ **myaidev-architect**: System design, API specifications, data modeling, technology selection
59
+ - ๐Ÿ’ป **myaidev-coder**: Feature implementation, refactoring, SOLID principles, Clean Code
60
+ - ๐Ÿงช **myaidev-tester**: Unit/integration testing, 80%+ coverage, quality gates
61
+ - ๐Ÿ‘๏ธ **myaidev-reviewer**: Code quality, security (OWASP Top 10), performance analysis
62
+ - ๐Ÿ“š **myaidev-documenter**: API docs, user guides, architecture documentation
63
63
  - **Spec-Kit Patterns**: Proven agentic development patterns inspired by GitHub Spec-Kit
64
64
  - **Quality Standards**: Built-in security, testing, code review, and documentation standards
65
65
  - **File-Based Workflow**: Sequential agent coordination with `.myaidev-method/sparc/` outputs
@@ -140,7 +140,7 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
140
140
  /plugin install myaidev-method@myaidev-marketplace
141
141
  ```
142
142
 
143
- Skills will be available as `/myaidev-method:content-writer`, `/myaidev-method:sparc-workflow`, etc.
143
+ Skills will be available as `/myaidev-method:content-writer`, `/myaidev-method:myaidev-workflow`, etc.
144
144
 
145
145
  #### Method 2: Local Plugin (Development)
146
146
 
@@ -173,7 +173,7 @@ Skills are discoverable capabilities defined in SKILL.md files:
173
173
  | Skill Pack | Skills Included | Description |
174
174
  |------------|-----------------|-------------|
175
175
  | **content** | content-writer, content-verifier, wordpress-publisher, visual-generator | Content creation and publishing |
176
- | **development** | sparc-architect, sparc-coder, sparc-tester, sparc-reviewer, sparc-documenter | SPARC methodology |
176
+ | **development** | myaidev-architect, myaidev-coder, myaidev-tester, myaidev-reviewer, myaidev-documenter | SPARC methodology |
177
177
  | **security** | security-tester, security-auditor | Security testing and auditing |
178
178
  | **infrastructure** | coolify-deployer, openstack-manager | Deployment and cloud management |
179
179
 
@@ -184,14 +184,14 @@ When installed as a plugin, skills are namespaced:
184
184
  | Skill | Invocation | Description |
185
185
  |-------|-----------|-------------|
186
186
  | content-writer | `/myaidev-method:content-writer` | Content creation pipeline |
187
- | sparc-workflow | `/myaidev-method:sparc-workflow` | Full SPARC development workflow |
187
+ | myaidev-workflow | `/myaidev-method:myaidev-workflow` | Full SPARC development workflow |
188
188
  | visual-generator | `/myaidev-method:visual-generator` | AI image/video generation |
189
189
  | wordpress-publisher | `/myaidev-method:wordpress-publisher` | WordPress publishing |
190
190
  | configure | `/myaidev-method:configure` | Configuration wizard |
191
191
  | security-tester | `/myaidev-method:security-tester` | Penetration testing |
192
192
  | security-auditor | `/myaidev-method:security-auditor` | Security auditing |
193
193
 
194
- When installed via NPX (copied to project), skills are invoked without namespace: `/content-writer`, `/sparc-workflow`, etc.
194
+ When installed via NPX (copied to project), skills are invoked without namespace: `/content-writer`, `/myaidev-workflow`, etc.
195
195
 
196
196
  ### Cross-Platform Support
197
197
 
@@ -414,7 +414,7 @@ The **MyAIDev Method** implements the **SPARC methodology** - a systematic 5-pha
414
414
  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
415
415
 
416
416
  Phase 1: ๐Ÿ—๏ธ ARCHITECTURE
417
- โ”œโ”€ Skill: sparc-architect
417
+ โ”œโ”€ Skill: myaidev-architect
418
418
  โ”œโ”€ Output: .myaidev-method/sparc/architecture.md
419
419
  โ”œโ”€ Deliverables:
420
420
  โ”‚ โ”œโ”€ System design with Mermaid diagrams
@@ -422,10 +422,10 @@ Phase 1: ๐Ÿ—๏ธ ARCHITECTURE
422
422
  โ”‚ โ”œโ”€ Data models and schemas
423
423
  โ”‚ โ”œโ”€ Technology stack recommendations
424
424
  โ”‚ โ””โ”€ Security and scalability planning
425
- โ””โ”€ Invoke: /sparc-architect "Design authentication system"
425
+ โ””โ”€ Invoke: /myaidev-architect "Design authentication system"
426
426
 
427
427
  Phase 2: ๐Ÿ’ป IMPLEMENTATION
428
- โ”œโ”€ Skill: sparc-coder
428
+ โ”œโ”€ Skill: myaidev-coder
429
429
  โ”œโ”€ Output: .myaidev-method/sparc/code-output/
430
430
  โ”œโ”€ Standards: SOLID, Clean Code, DRY/KISS/YAGNI
431
431
  โ”œโ”€ Features:
@@ -433,10 +433,10 @@ Phase 2: ๐Ÿ’ป IMPLEMENTATION
433
433
  โ”‚ โ”œโ”€ Security best practices (OWASP Top 10)
434
434
  โ”‚ โ”œโ”€ Error handling and input validation
435
435
  โ”‚ โ””โ”€ Inline documentation (JSDoc, etc.)
436
- โ””โ”€ Invoke: /sparc-coder "Implement JWT authentication"
436
+ โ””โ”€ Invoke: /myaidev-coder "Implement JWT authentication"
437
437
 
438
438
  Phase 3: ๐Ÿงช TESTING
439
- โ”œโ”€ Skill: sparc-tester
439
+ โ”œโ”€ Skill: myaidev-tester
440
440
  โ”œโ”€ Output: .myaidev-method/sparc/test-results/
441
441
  โ”œโ”€ Coverage: 80%+ critical paths, 60%+ overall
442
442
  โ”œโ”€ Deliverables:
@@ -444,10 +444,10 @@ Phase 3: ๐Ÿงช TESTING
444
444
  โ”‚ โ”œโ”€ Integration tests
445
445
  โ”‚ โ”œโ”€ Coverage reports
446
446
  โ”‚ โ””โ”€ Quality gate validation
447
- โ””โ”€ Invoke: /sparc-tester "Test authentication module"
447
+ โ””โ”€ Invoke: /myaidev-tester "Test authentication module"
448
448
 
449
449
  Phase 4: ๐Ÿ‘๏ธ REVIEW
450
- โ”œโ”€ Skill: sparc-reviewer
450
+ โ”œโ”€ Skill: myaidev-reviewer
451
451
  โ”œโ”€ Output: .myaidev-method/sparc/review-report.md
452
452
  โ”œโ”€ Analysis:
453
453
  โ”‚ โ”œโ”€ Code quality and complexity
@@ -455,17 +455,17 @@ Phase 4: ๐Ÿ‘๏ธ REVIEW
455
455
  โ”‚ โ”œโ”€ Performance optimization
456
456
  โ”‚ โ”œโ”€ Best practices compliance
457
457
  โ”‚ โ””โ”€ Technical debt assessment
458
- โ””โ”€ Invoke: /sparc-reviewer "Review authentication implementation"
458
+ โ””โ”€ Invoke: /myaidev-reviewer "Review authentication implementation"
459
459
 
460
460
  Phase 5: ๐Ÿ“š DOCUMENTATION
461
- โ”œโ”€ Skill: sparc-documenter
461
+ โ”œโ”€ Skill: myaidev-documenter
462
462
  โ”œโ”€ Output: .myaidev-method/sparc/documentation/
463
463
  โ”œโ”€ Deliverables:
464
464
  โ”‚ โ”œโ”€ API reference (OpenAPI/Swagger)
465
465
  โ”‚ โ”œโ”€ User guides and tutorials
466
466
  โ”‚ โ”œโ”€ Architecture documentation
467
467
  โ”‚ โ””โ”€ Code examples and snippets
468
- โ””โ”€ Invoke: /sparc-documenter "Document authentication API"
468
+ โ””โ”€ Invoke: /myaidev-documenter "Document authentication API"
469
469
  ```
470
470
 
471
471
  ### Complete Workflow Execution
@@ -473,11 +473,11 @@ Phase 5: ๐Ÿ“š DOCUMENTATION
473
473
  Run the entire SPARC workflow with a single command:
474
474
 
475
475
  ```bash
476
- # Invoke the sparc-workflow skill
477
- /sparc-workflow "Build user authentication system with JWT"
476
+ # Invoke the myaidev-workflow skill
477
+ /myaidev-workflow "Build user authentication system with JWT"
478
478
 
479
479
  # Or with plugin namespace
480
- /myaidev-method:sparc-workflow "Build user authentication system with JWT"
480
+ /myaidev-method:myaidev-workflow "Build user authentication system with JWT"
481
481
  ```
482
482
 
483
483
  ### Workflow Output Structure
@@ -529,11 +529,11 @@ You can also run individual phases:
529
529
 
530
530
  ```bash
531
531
  # Invoke individual SPARC phase skills
532
- /sparc-architect "Design real-time chat app"
533
- /sparc-coder "Implement WebSocket server"
534
- /sparc-tester "Test chat functionality"
535
- /sparc-reviewer "Review chat implementation"
536
- /sparc-documenter "Document chat API"
532
+ /myaidev-architect "Design real-time chat app"
533
+ /myaidev-coder "Implement WebSocket server"
534
+ /myaidev-tester "Test chat functionality"
535
+ /myaidev-reviewer "Review chat implementation"
536
+ /myaidev-documenter "Document chat API"
537
537
  ```
538
538
 
539
539
  ## ๐Ÿค– Development Skills
@@ -542,8 +542,8 @@ You can also run individual phases:
542
542
 
543
543
  The MyAIDev Method provides specialized skills for every phase of the development lifecycle:
544
544
 
545
- ### ๐Ÿ—๏ธ sparc-architect
546
- **Skill:** `skills/sparc-architect/SKILL.md`
545
+ ### ๐Ÿ—๏ธ myaidev-architect
546
+ **Skill:** `skills/myaidev-architect/SKILL.md`
547
547
  **Phase:** Architecture (SPARC Phase 1)
548
548
 
549
549
  System architect specializing in scalable design, API specifications, and technology selection.
@@ -558,8 +558,8 @@ System architect specializing in scalable design, API specifications, and techno
558
558
 
559
559
  **Output:** `.myaidev-method/sparc/architecture.md`
560
560
 
561
- ### ๐Ÿ’ป sparc-coder
562
- **Skill:** `skills/sparc-coder/SKILL.md`
561
+ ### ๐Ÿ’ป myaidev-coder
562
+ **Skill:** `skills/myaidev-coder/SKILL.md`
563
563
  **Phase:** Implementation (SPARC Phase 2)
564
564
 
565
565
  Production code implementer following SOLID principles and Clean Code practices.
@@ -580,8 +580,8 @@ Production code implementer following SOLID principles and Clean Code practices.
580
580
  - Security-first implementation
581
581
  - Comprehensive error handling
582
582
 
583
- ### ๐Ÿงช sparc-tester
584
- **Skill:** `skills/sparc-tester/SKILL.md`
583
+ ### ๐Ÿงช myaidev-tester
584
+ **Skill:** `skills/myaidev-tester/SKILL.md`
585
585
  **Phase:** Testing (SPARC Phase 3)
586
586
 
587
587
  Comprehensive testing specialist with TDD workflow support.
@@ -601,8 +601,8 @@ Comprehensive testing specialist with TDD workflow support.
601
601
  - 60%+ overall coverage
602
602
  - Pre-commit, pre-merge, pre-deployment gates
603
603
 
604
- ### ๐Ÿ‘๏ธ sparc-reviewer
605
- **Skill:** `skills/sparc-reviewer/SKILL.md`
604
+ ### ๐Ÿ‘๏ธ myaidev-reviewer
605
+ **Skill:** `skills/myaidev-reviewer/SKILL.md`
606
606
  **Phase:** Review (SPARC Phase 4)
607
607
 
608
608
  Code quality and security analyst with comprehensive review capabilities.
@@ -623,8 +623,8 @@ Code quality and security analyst with comprehensive review capabilities.
623
623
  - Performance: Algorithm complexity, resource management
624
624
  - Best practices: Framework standards, design patterns
625
625
 
626
- ### ๐Ÿ“š sparc-documenter
627
- **Skill:** `skills/sparc-documenter/SKILL.md`
626
+ ### ๐Ÿ“š myaidev-documenter
627
+ **Skill:** `skills/myaidev-documenter/SKILL.md`
628
628
  **Phase:** Documentation (SPARC Phase 5)
629
629
 
630
630
  Technical documentation specialist for APIs, user guides, and architecture docs.
@@ -1173,7 +1173,7 @@ When installed via **NPX**, skills are copied to your project:
1173
1173
  .claude/
1174
1174
  โ”œโ”€โ”€ skills/ # Skills (SKILL.md files)
1175
1175
  โ”‚ โ”œโ”€โ”€ content-writer/
1176
- โ”‚ โ”œโ”€โ”€ sparc-architect/
1176
+ โ”‚ โ”œโ”€โ”€ myaidev-architect/
1177
1177
  โ”‚ โ””โ”€โ”€ ...
1178
1178
  โ””โ”€โ”€ CLAUDE.md # Project configuration file
1179
1179
  ```
@@ -1384,31 +1384,15 @@ Specification of expected output format.
1384
1384
  3. **Version control**: Keep track of your customizations using git
1385
1385
  4. **Backup originals**: Keep copies of original skill files before modification
1386
1386
 
1387
- ## ๐Ÿ›’ Marketplace & Authentication
1387
+ ## ๐Ÿ›’ Marketplace & Skill Tiers
1388
1388
 
1389
- The CLI includes built-in marketplace commands for discovering, installing, and publishing skills.
1389
+ MyAIDev Method provides two tiers of skills โ€” open source community skills and premium cloud-hosted capabilities.
1390
1390
 
1391
- ### Authentication
1391
+ ### Tier 1: Open Source Community Skills
1392
1392
 
1393
- ```bash
1394
- # Login to the MyAIDev marketplace (opens browser for OAuth)
1395
- myaidev-method login
1396
-
1397
- # Check current authentication status
1398
- myaidev-method whoami
1399
-
1400
- # Log out
1401
- myaidev-method logout
1402
- ```
1403
-
1404
- ### Addon Marketplace Commands
1393
+ Free, community-contributed skills distributed via the [MyAIDev Marketplace](https://github.com/myaione/myaidev-marketplace). Every skill is stringently curated, tested, and vetted for malware and quality through automated CI checks and manual maintainer review before it reaches users.
1405
1394
 
1406
1395
  ```bash
1407
- # Install a skill from the marketplace
1408
- myaidev-method addon <skill-name>
1409
- myaidev-method addon <skill-name> --project # Install to project only
1410
- myaidev-method addon <skill-name> --global # Install globally
1411
-
1412
1396
  # Browse available skills
1413
1397
  myaidev-method addon list
1414
1398
  myaidev-method addon list --category security
@@ -1417,15 +1401,48 @@ myaidev-method addon list --sort downloads
1417
1401
  # Search for skills
1418
1402
  myaidev-method addon search "wordpress"
1419
1403
 
1404
+ # Install a skill from the marketplace
1405
+ myaidev-method addon install <skill-name>
1406
+ myaidev-method addon install <skill-name> --project # Install to project only
1407
+ myaidev-method addon install <skill-name> --global # Install globally
1408
+
1420
1409
  # Remove an installed skill
1421
1410
  myaidev-method addon remove <skill-name>
1422
-
1423
- # Publish your own skill (requires login)
1424
- myaidev-method addon publish
1425
1411
  ```
1426
1412
 
1427
1413
  Skills installed via the marketplace are placed in `.claude/skills/` (project) or `~/.claude/skills/` (global), making them immediately available to Claude Code.
1428
1414
 
1415
+ ### Tier 2: Premium Cloud-Hosted Skills
1416
+
1417
+ Advanced skills and tools provided by the MyAIDev platform via authenticated API calls. These are cloud-hosted, managed by the MyAIDev team, and offer premium capabilities beyond what open source skills provide.
1418
+
1419
+ Premium skills require authentication:
1420
+
1421
+ ```bash
1422
+ # Login to the MyAIDev platform (opens browser for OAuth)
1423
+ myaidev-method login
1424
+
1425
+ # Check current authentication status
1426
+ myaidev-method whoami
1427
+
1428
+ # Log out
1429
+ myaidev-method logout
1430
+ ```
1431
+
1432
+ Once authenticated, premium skills are accessed via the platform API at `dev.myai1.ai` using your auth token.
1433
+
1434
+ ### Tier Comparison
1435
+
1436
+ | | Open Source (Tier 1) | Premium Cloud (Tier 2) |
1437
+ |---|---|---|
1438
+ | **Cost** | Free | Subscription |
1439
+ | **Source** | Community contributed | MyAIDev team |
1440
+ | **Execution** | Local (your machine) | Cloud-hosted (server-side) |
1441
+ | **Security** | Vetted via PR review + CI | Internal QA |
1442
+ | **Offline** | Yes | No |
1443
+ | **Customizable** | Yes (edit SKILL.md) | No (managed service) |
1444
+ | **Updates** | Manual reinstall | Automatic via API |
1445
+
1429
1446
  ## ๐Ÿ“ Project Structure
1430
1447
 
1431
1448
  ### Plugin Structure (source repository)
@@ -1437,7 +1454,7 @@ myaidev-method/
1437
1454
  โ”œโ”€โ”€ skills/ # 24 discoverable skills
1438
1455
  โ”‚ โ”œโ”€โ”€ content-writer/
1439
1456
  โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md
1440
- โ”‚ โ”œโ”€โ”€ sparc-architect/
1457
+ โ”‚ โ”œโ”€โ”€ myaidev-architect/
1441
1458
  โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md
1442
1459
  โ”‚ โ”œโ”€โ”€ visual-generator/
1443
1460
  โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md
@@ -1461,7 +1478,7 @@ myaidev-method/
1461
1478
  โ”œโ”€โ”€ skills/ # Skills copied from plugin
1462
1479
  โ”‚ โ”œโ”€โ”€ content-writer/
1463
1480
  โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md
1464
- โ”‚ โ”œโ”€โ”€ sparc-architect/
1481
+ โ”‚ โ”œโ”€โ”€ myaidev-architect/
1465
1482
  โ”‚ โ”‚ โ””โ”€โ”€ SKILL.md
1466
1483
  โ”‚ โ””โ”€โ”€ ...
1467
1484
  โ””โ”€โ”€ CLAUDE.md # Project configuration
@@ -1695,7 +1712,7 @@ We welcome contributions to improve MyAIDev Method!
1695
1712
 
1696
1713
  ### Contributing Skills to the Marketplace
1697
1714
 
1698
- The easiest way to contribute is by creating and submitting new skills through our PR-based review system.
1715
+ The community is encouraged to contribute **Tier 1 open source skills** to the marketplace. All submissions are stringently curated โ€” automated CI validates structure, scans for malware and security issues, and maintainers manually review for quality before any skill reaches users.
1699
1716
 
1700
1717
  #### Quick Start: Using the Skill Contributor
1701
1718