myaidev-method 0.3.3 → 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.
- package/bin/cli.js +8 -120
- package/package.json +1 -1
- package/skills/content-writer/agents/editor-agent.md +138 -0
- package/skills/content-writer/agents/planner-agent.md +121 -0
- package/skills/content-writer/agents/research-agent.md +83 -0
- package/skills/content-writer/agents/seo-agent.md +139 -0
- package/skills/content-writer/agents/visual-planner-agent.md +110 -0
- package/skills/content-writer/agents/writer-agent.md +85 -0
- package/skills/myaidev-analyze/agents/dependency-mapper-agent.md +236 -0
- package/skills/myaidev-analyze/agents/pattern-detector-agent.md +240 -0
- package/skills/myaidev-analyze/agents/structure-scanner-agent.md +171 -0
- package/skills/myaidev-analyze/agents/tech-profiler-agent.md +291 -0
- package/skills/myaidev-architect/agents/compliance-checker-agent.md +287 -0
- package/skills/myaidev-architect/agents/requirements-analyst-agent.md +194 -0
- package/skills/myaidev-architect/agents/system-designer-agent.md +315 -0
- package/skills/myaidev-coder/agents/implementer-agent.md +185 -0
- package/skills/myaidev-coder/agents/integration-agent.md +168 -0
- package/skills/myaidev-coder/agents/pattern-scanner-agent.md +161 -0
- package/skills/myaidev-coder/agents/self-reviewer-agent.md +168 -0
- package/skills/myaidev-debug/agents/fix-agent-debug.md +317 -0
- package/skills/myaidev-debug/agents/hypothesis-agent.md +226 -0
- package/skills/myaidev-debug/agents/investigator-agent.md +250 -0
- package/skills/myaidev-debug/agents/symptom-collector-agent.md +231 -0
- package/skills/myaidev-documenter/agents/code-reader-agent.md +172 -0
- package/skills/myaidev-documenter/agents/doc-validator-agent.md +174 -0
- package/skills/myaidev-documenter/agents/doc-writer-agent.md +379 -0
- package/skills/myaidev-migrate/agents/migration-planner-agent.md +237 -0
- package/skills/myaidev-migrate/agents/migration-writer-agent.md +248 -0
- package/skills/myaidev-migrate/agents/schema-analyzer-agent.md +190 -0
- package/skills/myaidev-performance/agents/benchmark-agent.md +281 -0
- package/skills/myaidev-performance/agents/optimizer-agent.md +277 -0
- package/skills/myaidev-performance/agents/profiler-agent.md +252 -0
- package/skills/myaidev-refactor/agents/refactor-executor-agent.md +221 -0
- package/skills/myaidev-refactor/agents/refactor-planner-agent.md +213 -0
- package/skills/myaidev-refactor/agents/regression-guard-agent.md +242 -0
- package/skills/myaidev-refactor/agents/smell-detector-agent.md +233 -0
- package/skills/myaidev-reviewer/agents/auto-fixer-agent.md +238 -0
- package/skills/myaidev-reviewer/agents/code-analyst-agent.md +220 -0
- package/skills/myaidev-reviewer/agents/security-scanner-agent.md +262 -0
- package/skills/myaidev-tester/agents/coverage-analyst-agent.md +163 -0
- package/skills/myaidev-tester/agents/tdd-driver-agent.md +242 -0
- package/skills/myaidev-tester/agents/test-runner-agent.md +176 -0
- package/skills/myaidev-tester/agents/test-strategist-agent.md +154 -0
- package/skills/myaidev-tester/agents/test-writer-agent.md +242 -0
- package/skills/myaidev-workflow/agents/analyzer-agent.md +317 -0
- package/skills/myaidev-workflow/agents/coordinator-agent.md +253 -0
- package/skills/skill-builder/SKILL.md +417 -0
- package/src/cli/commands/addon.js +86 -123
- package/src/lib/update-manager.js +120 -61
- package/src/templates/claude/CLAUDE.md +124 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
# Claude Code Configuration
|
|
2
|
+
|
|
3
|
+
This project uses the MyAIDev Method — a skills-based AI development framework.
|
|
4
|
+
|
|
5
|
+
## Skills (`.claude/skills/`)
|
|
6
|
+
|
|
7
|
+
Skills are the primary delivery mechanism. Each skill is a self-contained orchestrator with its own subagents.
|
|
8
|
+
|
|
9
|
+
### Development (MyAIDev SPARC Workflow)
|
|
10
|
+
|
|
11
|
+
**Recommended entry point**: `/myaidev-workflow` orchestrates the full pipeline.
|
|
12
|
+
|
|
13
|
+
#### Core SPARC Pipeline
|
|
14
|
+
- `myaidev-workflow` - Multi-agent SPARC orchestrator with feedback loops, project profiles, TDD mode
|
|
15
|
+
- `myaidev-architect` - System architecture design with requirements analysis and compliance checking
|
|
16
|
+
- `myaidev-coder` - Pattern-aware code implementation with convention detection and self-review
|
|
17
|
+
- `myaidev-tester` - Test generation with TDD support (London/Chicago styles) and coverage analysis
|
|
18
|
+
- `myaidev-reviewer` - Code review with auto-fix capability, security scanning, and quality gates
|
|
19
|
+
- `myaidev-documenter` - Documentation generation with code analysis, writing, and validation
|
|
20
|
+
|
|
21
|
+
#### Standalone Development Tools
|
|
22
|
+
- `myaidev-analyze` - Deep codebase analysis: patterns, conventions, tech stack, dependencies, risks
|
|
23
|
+
- `myaidev-debug` - Systematic debugging with hypothesis testing and root cause analysis
|
|
24
|
+
- `myaidev-refactor` - Code smell detection, safe refactoring planning, and regression guarding
|
|
25
|
+
- `myaidev-performance` - Performance profiling, optimization, and before/after benchmarking
|
|
26
|
+
- `myaidev-migrate` - Framework upgrades, schema migrations, dependency swaps, pattern transitions
|
|
27
|
+
|
|
28
|
+
### Content Creation
|
|
29
|
+
- `content-writer` - Multi-agent pipeline (research, plan, write, SEO, edit, visuals)
|
|
30
|
+
- `content-rules-setup` - Interactive brand voice configuration
|
|
31
|
+
- `content-verifier` - Content uniqueness and quality verification
|
|
32
|
+
- `content-coordinator` - Batch content verification and publishing
|
|
33
|
+
- `content-enrichment` - Enrich articles with real-time data and visuals
|
|
34
|
+
|
|
35
|
+
### Publishing
|
|
36
|
+
- `wordpress-publisher` - WordPress REST API publishing
|
|
37
|
+
- `payloadcms-publisher` - PayloadCMS with Lexical format
|
|
38
|
+
- `docusaurus-publisher` - Docusaurus with sidebar config
|
|
39
|
+
- `mintlify-publisher` - Mintlify with navigation updates
|
|
40
|
+
- `astro-publisher` - Astro content collections
|
|
41
|
+
|
|
42
|
+
### Visual & Media
|
|
43
|
+
- `visual-generator` - AI image/video generation (Gemini, DALL-E, FLUX, Veo)
|
|
44
|
+
|
|
45
|
+
### Deployment & Infrastructure
|
|
46
|
+
- `deployer` - Multi-environment deployment (dev/staging/prod)
|
|
47
|
+
- `coolify-deployer` - Coolify PaaS deployment
|
|
48
|
+
- `openstack-manager` - OpenStack VM management
|
|
49
|
+
|
|
50
|
+
### Git & CI/CD
|
|
51
|
+
- `git-workflow` - PRs, releases, hotfixes, branch sync
|
|
52
|
+
|
|
53
|
+
### Security
|
|
54
|
+
- `security-tester` - Penetration testing (PTES methodology)
|
|
55
|
+
- `security-auditor` - Compliance auditing (PCI-DSS, GDPR, SOC 2)
|
|
56
|
+
|
|
57
|
+
### Skill Development
|
|
58
|
+
- `skill-builder` - Guided skill creation with concept discovery, iterative refinement, testing, and marketplace submission
|
|
59
|
+
- `skill-contributor` - Quick skill scaffolding and marketplace submission
|
|
60
|
+
|
|
61
|
+
### Configuration
|
|
62
|
+
- `configure` - Interactive environment setup wizard
|
|
63
|
+
|
|
64
|
+
## Content Customization
|
|
65
|
+
|
|
66
|
+
- **content-rules.md** - Brand voice and writing guidelines
|
|
67
|
+
- Run the `content-rules-setup` skill to generate this interactively
|
|
68
|
+
|
|
69
|
+
## Platform Configuration
|
|
70
|
+
|
|
71
|
+
Run the `configure` skill to set up credentials, or manually edit `.env`:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# WordPress
|
|
75
|
+
WORDPRESS_URL=https://your-site.com
|
|
76
|
+
WORDPRESS_USERNAME=your-username
|
|
77
|
+
WORDPRESS_APP_PASSWORD=your-app-password
|
|
78
|
+
|
|
79
|
+
# PayloadCMS
|
|
80
|
+
PAYLOADCMS_URL=https://cms.your-site.com
|
|
81
|
+
PAYLOADCMS_EMAIL=your-email
|
|
82
|
+
PAYLOADCMS_PASSWORD=your-password
|
|
83
|
+
|
|
84
|
+
# Visual APIs
|
|
85
|
+
GOOGLE_API_KEY=your-key
|
|
86
|
+
OPENAI_API_KEY=your-key
|
|
87
|
+
|
|
88
|
+
# Coolify
|
|
89
|
+
COOLIFY_URL=https://coolify.your-server.com
|
|
90
|
+
COOLIFY_API_KEY=your-key
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Scripts and Utilities
|
|
94
|
+
|
|
95
|
+
The `.myaidev-method/` directory contains helper scripts that skills can invoke:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
node .myaidev-method/scripts/payloadcms-publish.js "article.md"
|
|
99
|
+
node .myaidev-method/scripts/wordpress-health-check.js
|
|
100
|
+
node .myaidev-method/scripts/coolify-deploy-app.js --name myapp
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Project Structure
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
.claude/
|
|
107
|
+
├── skills/ # All skill definitions (SKILL.md + agents/)
|
|
108
|
+
├── mcp/ # MCP server configurations
|
|
109
|
+
└── CLAUDE.md # This file
|
|
110
|
+
.myaidev-method/
|
|
111
|
+
├── scripts/ # Publishing and deployment scripts
|
|
112
|
+
├── lib/ # Utility libraries
|
|
113
|
+
└── package.json # Script dependencies
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Updating
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
npx myaidev-method@latest update --claude # Interactive update
|
|
120
|
+
npx myaidev-method@latest update --claude --force # Force overwrite
|
|
121
|
+
npx myaidev-method@latest update --claude --dry-run # Preview changes
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
See `USER_GUIDE.md` for detailed instructions.
|