myaidev-method 0.2.11 → 0.2.15

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/CLAUDE.md +46 -0
  2. package/.claude/agents/content-production-coordinator.md +111 -0
  3. package/.claude/agents/proprietary-content-verifier.md +96 -0
  4. package/.claude/agents/visual-content-generator.md +520 -0
  5. package/.claude/commands/myai-coordinate-content.md +136 -0
  6. package/.claude/settings.local.json +3 -2
  7. package/.env.example +33 -0
  8. package/CHANGELOG.md +228 -0
  9. package/CONTENT_CREATION_GUIDE.md +3399 -0
  10. package/DEVELOPER_USE_CASES.md +2085 -0
  11. package/README.md +234 -2
  12. package/USER_GUIDE.md +156 -0
  13. package/VISUAL_GENERATION_FILE_ORGANIZATION.md +105 -0
  14. package/bin/cli.js +222 -0
  15. package/package.json +19 -3
  16. package/src/lib/asset-management.js +532 -0
  17. package/src/lib/update-manager.js +385 -0
  18. package/src/lib/visual-config-utils.js +424 -0
  19. package/src/lib/visual-generation-utils.js +668 -0
  20. package/src/scripts/configure-visual-apis.js +413 -0
  21. package/src/scripts/generate-visual-cli.js +279 -0
  22. package/src/templates/claude/agents/content-production-coordinator.md +111 -0
  23. package/src/templates/claude/agents/content-writer.md +209 -4
  24. package/src/templates/claude/agents/proprietary-content-verifier.md +96 -0
  25. package/src/templates/claude/agents/visual-content-generator.md +520 -0
  26. package/src/templates/claude/commands/myai-content-writer.md +33 -8
  27. package/src/templates/claude/commands/myai-coordinate-content.md +136 -0
  28. package/src/templates/claude/commands/myai-generate-visual.md +318 -0
  29. package/src/templates/codex/commands/myai-generate-visual.md +307 -0
  30. package/src/templates/gemini/commands/myai-generate-visual.md +200 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,228 @@
1
+ # Changelog
2
+
3
+ All notable changes to the MyAIDev Method package will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.2.15] - 2025-11-19
9
+
10
+ ### Added
11
+ - **Vertex AI Integration**: Full OAuth2 support for Google Cloud Vertex AI
12
+ - Implemented OAuth2 Bearer token authentication with `google-auth-library`
13
+ - Added `getVertexAIToken()` function for automatic token management
14
+ - Updated Imagen 4 integration to use Vertex AI endpoints
15
+ - Support for both service account and Application Default Credentials (ADC)
16
+ - Comprehensive setup documentation in GOOGLE_API_ENDPOINTS.md
17
+
18
+ ### Changed
19
+ - **Visual Generation**: Enhanced Google API support
20
+ - Imagen now uses Vertex AI (imagen-4.0-generate-001) with OAuth2 authentication
21
+ - Updated Gemini Nanobanana (Gemini 2.5 Flash Image) endpoint
22
+ - Veo 2 video generation support
23
+ - Updated .env.example with Vertex AI configuration options
24
+
25
+ ### Dependencies
26
+ - Added `google-auth-library` for OAuth2 authentication (36 packages)
27
+
28
+ ### Documentation
29
+ - Created GOOGLE_API_ENDPOINTS.md with complete Vertex AI setup guide
30
+ - Updated .env.example with clear instructions for both Google AI API and Vertex AI
31
+ - Documented service account creation and API enablement steps
32
+ - Added alternative ADC setup instructions for development workflows
33
+
34
+ ## [0.2.13] - 2025-11-13
35
+
36
+ ### Added
37
+ - **Content Production Workflow**: Complete batch content processing system
38
+ - `content-production-coordinator` agent - Orchestrates verification and publishing workflow
39
+ - `proprietary-content-verifier` agent - Validates content uniqueness and quality
40
+ - `/myai-coordinate-content` command - CLI command for coordinated content production
41
+ - Parallel processing for verification and publishing (dramatic efficiency gains)
42
+ - Automated content categorization (Ready for Publishing / Needs Review)
43
+ - Timestamped reports for audit trail and review
44
+ - User confirmation checkpoints before verification and publishing
45
+ - **Content Quality Gates**: Systematic verification before publishing
46
+ - Knowledge redundancy assessment (High/Medium/Low/Minimal)
47
+ - AI-generated content detection
48
+ - Unique value identification
49
+ - Actionable recommendations for improvement
50
+ - **Coordinator Pattern**: First agent that orchestrates other agents
51
+ - Foundation for future multi-agent workflows
52
+ - Enables complex multi-step automated processes
53
+ - Maintains clear separation of concerns
54
+
55
+ ### Changed
56
+ - CLAUDE.md template updated with content production workflow documentation
57
+ - bin/cli.js updated with new agents and commands in installation template
58
+ - Enhanced agent architecture with coordinator pattern
59
+
60
+ ### Documentation
61
+ - Added comprehensive feature analysis in claudedocs/content-production-feature-analysis.md
62
+ - Updated CLAUDE.md with Content Production Workflow section
63
+ - Documented use cases: content marketing agencies, SEO production, documentation teams
64
+ - Migration path guidance for existing users
65
+
66
+ ### Technical
67
+ - Zero new dependencies required
68
+ - Compatible with existing infrastructure
69
+ - Works with all existing publishing platforms (WordPress, PayloadCMS, etc.)
70
+ - Package size impact: +3 files (~2.5KB markdown)
71
+
72
+ ## [0.2.12] - 2025-11-10
73
+
74
+ ### Added
75
+ - **Update Command**: `npx myaidev-method@latest update` for intelligent component updates
76
+ - Interactive conflict resolution for modified files
77
+ - Automatic backup creation before updates
78
+ - Dry-run mode to preview changes
79
+ - Force mode for clean updates
80
+ - Version tracking with `.claude/.myaidev-version`
81
+ - Updates all components: commands, agents, scripts, libs, docs, MCP configs
82
+ - Comprehensive update documentation in USER_GUIDE.md
83
+ - Update instructions in README.md
84
+ - CHANGELOG.md for version history tracking
85
+
86
+ ### Changed
87
+ - Init command now saves installation version for update tracking
88
+ - Enhanced documentation with update best practices
89
+
90
+ ## [0.2.11] - 2025-11-10
91
+
92
+ ### Fixed
93
+ - Script installation for non-Node.js projects
94
+ - Scripts now installed to `.myaidev-method/` with self-contained dependencies
95
+ - No longer requires Node.js project structure (package.json in root)
96
+ - Works in any project type (WordPress themes, Hugo sites, plain folders)
97
+ - Agent documentation updated to reference `.myaidev-method/` paths
98
+
99
+ ### Changed
100
+ - Scripts copied to `.myaidev-method/scripts/` directory
101
+ - Libraries copied to `.myaidev-method/lib/` directory
102
+ - Dependencies installed locally in `.myaidev-method/node_modules/`
103
+ - Added `.gitignore` guidance in CLAUDE.md template
104
+
105
+ ## [0.2.10] - 2025-11-06
106
+
107
+ ### Changed
108
+ - ⚠️ **Deprecated approach**: Attempted node_modules path (reverted in v0.2.11)
109
+
110
+ ## [0.2.9] - 2025-11-06
111
+
112
+ ### Added
113
+ - User Pathways section in USER_GUIDE.md
114
+ - Content Creator pathway with complete publishing pipeline
115
+ - Developer pathway with SPARC methodology guidance
116
+ - End-to-end workflow examples
117
+
118
+ ### Changed
119
+ - Enhanced documentation structure
120
+ - Improved onboarding experience
121
+
122
+ ## [0.2.8] - 2025-11-06
123
+
124
+ ### Changed
125
+ - Package documentation distribution updates
126
+ - Fixed package.json files array
127
+
128
+ ## [0.2.7] - 2025-11-06
129
+
130
+ ### Added
131
+ - Comprehensive content creation pipeline examples
132
+ - Multi-platform publishing workflows
133
+
134
+ ## [0.2.6] - 2025-11-05
135
+
136
+ ### Changed
137
+ - Documentation updates and improvements
138
+
139
+ ## [0.2.5] - 2025-11-04
140
+
141
+ ### Added
142
+ - PayloadCMS authentication simplification
143
+ - JWT-based authentication for PayloadCMS
144
+ - Improved publishing workflows
145
+
146
+ ## [0.2.4] - 2025-11-03
147
+
148
+ ### Added
149
+ - Slash command fixes and improvements
150
+ - 14 command updates with proper Task tool invocations
151
+
152
+ ## [0.2.3] - 2025-11-02
153
+
154
+ ### Added
155
+ - Enhanced MCP server integration
156
+ - SPARC orchestrator improvements
157
+
158
+ ## [0.2.2] - 2025-11-01
159
+
160
+ ### Added
161
+ - WordPress admin utilities
162
+ - Security scanning scripts
163
+ - Performance checking tools
164
+
165
+ ## [0.2.1] - 2025-10-31
166
+
167
+ ### Added
168
+ - Coolify deployment integration
169
+ - Multi-platform publishing support
170
+
171
+ ## [0.2.0] - 2025-10-30
172
+
173
+ ### Added
174
+ - SPARC methodology implementation
175
+ - Development workflow agents
176
+ - Git & CI/CD workflows
177
+
178
+ ## [0.1.0] - 2025-10-29
179
+
180
+ ### Added
181
+ - Initial release
182
+ - Content writer agent
183
+ - WordPress publishing integration
184
+ - Basic slash commands
185
+ - MCP server foundation
186
+
187
+ ---
188
+
189
+ ## Release Notes
190
+
191
+ ### Version 0.2.12 Highlights
192
+
193
+ **Major Feature: Update Command**
194
+
195
+ The highlight of this release is the new intelligent update system. Users can now easily keep their MyAIDev Method installation current while preserving customizations:
196
+
197
+ ```bash
198
+ npx myaidev-method@latest update --claude
199
+ ```
200
+
201
+ Key features:
202
+ - Interactive conflict resolution - choose what to update
203
+ - Automatic backups - safe rollback if needed
204
+ - Dry-run mode - preview changes first
205
+ - Version tracking - know what version you're running
206
+
207
+ This solves a major pain point where users had to manually track updates or risk losing customizations by re-running init.
208
+
209
+ ### Migration Guide
210
+
211
+ **From v0.2.10 or earlier to v0.2.12**:
212
+
213
+ 1. Your scripts are now in `.myaidev-method/` instead of `node_modules/`
214
+ 2. If you have any custom scripts referencing the old path, update them
215
+ 3. Add `.myaidev-method/node_modules/` to your `.gitignore`
216
+ 4. Use the new update command going forward instead of re-running init
217
+
218
+ **Checking Your Version**:
219
+ ```bash
220
+ cat .claude/.myaidev-version
221
+ ```
222
+
223
+ **First-Time Update Setup**:
224
+ If you installed before v0.2.12, the version file won't exist. The update command will still work, but it won't know your current version. Consider it an upgrade from "unknown" to v0.2.12.
225
+
226
+ ---
227
+
228
+ For more details on any release, see the [commit history](https://github.com/myaione/myaidev-method/commits/master) or [release notes](https://github.com/myaione/myaidev-method/releases).