myaidev-method 0.3.2 โ 0.3.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.
- package/.claude-plugin/plugin.json +52 -48
- package/DEV_WORKFLOW_GUIDE.md +6 -6
- package/MCP_INTEGRATION.md +4 -4
- package/README.md +81 -64
- package/TECHNICAL_ARCHITECTURE.md +112 -18
- package/USER_GUIDE.md +57 -40
- package/bin/cli.js +47 -13
- package/dist/mcp/gutenberg-converter.js +667 -413
- package/dist/mcp/wordpress-server.js +1558 -1181
- package/extension.json +3 -3
- package/package.json +2 -1
- package/skills/content-writer/SKILL.md +130 -178
- package/skills/infographic/SKILL.md +191 -0
- package/skills/myaidev-analyze/SKILL.md +242 -0
- package/skills/myaidev-architect/SKILL.md +389 -0
- package/skills/myaidev-coder/SKILL.md +291 -0
- package/skills/myaidev-debug/SKILL.md +308 -0
- package/skills/myaidev-documenter/SKILL.md +194 -0
- package/skills/myaidev-migrate/SKILL.md +300 -0
- package/skills/myaidev-performance/SKILL.md +270 -0
- package/skills/myaidev-refactor/SKILL.md +296 -0
- package/skills/myaidev-reviewer/SKILL.md +385 -0
- package/skills/myaidev-tester/SKILL.md +331 -0
- package/skills/myaidev-workflow/SKILL.md +567 -0
- package/skills/security-auditor/SKILL.md +1 -1
- package/src/cli/commands/addon.js +60 -12
- package/src/cli/commands/auth.js +9 -1
- package/src/config/workflows.js +11 -6
- package/src/lib/ascii-banner.js +3 -3
- package/src/mcp/gutenberg-converter.js +667 -413
- package/src/mcp/wordpress-server.js +1558 -1181
- package/src/statusline/statusline.sh +279 -0
- package/skills/content-writer/agents/editor-agent.md +0 -138
- package/skills/content-writer/agents/planner-agent.md +0 -121
- package/skills/content-writer/agents/research-agent.md +0 -83
- package/skills/content-writer/agents/seo-agent.md +0 -139
- package/skills/content-writer/agents/visual-planner-agent.md +0 -110
- package/skills/content-writer/agents/writer-agent.md +0 -85
- package/skills/sparc-architect/SKILL.md +0 -127
- package/skills/sparc-coder/SKILL.md +0 -90
- package/skills/sparc-documenter/SKILL.md +0 -155
- package/skills/sparc-reviewer/SKILL.md +0 -138
- package/skills/sparc-tester/SKILL.md +0 -100
- package/skills/sparc-workflow/SKILL.md +0 -130
- /package/{marketplace.json โ .claude-plugin/marketplace.json} +0 -0
|
@@ -1,50 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
}
|
package/DEV_WORKFLOW_GUIDE.md
CHANGED
|
@@ -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
|
-
/
|
|
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
|
-
/
|
|
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
|
-
/
|
|
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
|
-
/
|
|
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
|
-
/
|
|
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
|
-
/
|
|
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"
|
package/MCP_INTEGRATION.md
CHANGED
|
@@ -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
|
-
/
|
|
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
|
-
/
|
|
199
|
-
/
|
|
198
|
+
/myaidev-architect "Design blog system"
|
|
199
|
+
/myaidev-coder "Implement blog features"
|
|
200
200
|
|
|
201
201
|
# 2. Run testing with Chrome DevTools integration
|
|
202
|
-
/
|
|
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
|
-
- ๐๏ธ **
|
|
59
|
-
- ๐ป **
|
|
60
|
-
- ๐งช **
|
|
61
|
-
- ๐๏ธ **
|
|
62
|
-
- ๐ **
|
|
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:
|
|
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** |
|
|
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
|
-
|
|
|
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`, `/
|
|
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:
|
|
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: /
|
|
425
|
+
โโ Invoke: /myaidev-architect "Design authentication system"
|
|
426
426
|
|
|
427
427
|
Phase 2: ๐ป IMPLEMENTATION
|
|
428
|
-
โโ Skill:
|
|
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: /
|
|
436
|
+
โโ Invoke: /myaidev-coder "Implement JWT authentication"
|
|
437
437
|
|
|
438
438
|
Phase 3: ๐งช TESTING
|
|
439
|
-
โโ Skill:
|
|
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: /
|
|
447
|
+
โโ Invoke: /myaidev-tester "Test authentication module"
|
|
448
448
|
|
|
449
449
|
Phase 4: ๐๏ธ REVIEW
|
|
450
|
-
โโ Skill:
|
|
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: /
|
|
458
|
+
โโ Invoke: /myaidev-reviewer "Review authentication implementation"
|
|
459
459
|
|
|
460
460
|
Phase 5: ๐ DOCUMENTATION
|
|
461
|
-
โโ Skill:
|
|
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: /
|
|
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
|
|
477
|
-
/
|
|
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:
|
|
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
|
-
/
|
|
533
|
-
/
|
|
534
|
-
/
|
|
535
|
-
/
|
|
536
|
-
/
|
|
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
|
-
### ๐๏ธ
|
|
546
|
-
**Skill:** `skills/
|
|
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
|
-
### ๐ป
|
|
562
|
-
**Skill:** `skills/
|
|
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
|
-
### ๐งช
|
|
584
|
-
**Skill:** `skills/
|
|
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
|
-
### ๐๏ธ
|
|
605
|
-
**Skill:** `skills/
|
|
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
|
-
### ๐
|
|
627
|
-
**Skill:** `skills/
|
|
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
|
-
โ โโโ
|
|
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 &
|
|
1387
|
+
## ๐ Marketplace & Skill Tiers
|
|
1388
1388
|
|
|
1389
|
-
|
|
1389
|
+
MyAIDev Method provides two tiers of skills โ open source community skills and premium cloud-hosted capabilities.
|
|
1390
1390
|
|
|
1391
|
-
###
|
|
1391
|
+
### Tier 1: Open Source Community Skills
|
|
1392
1392
|
|
|
1393
|
-
|
|
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
|
-
โ โโโ
|
|
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
|
-
โ โโโ
|
|
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
|
|
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
|
|