myaidev-method 0.2.12 → 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 (28) 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 +64 -0
  9. package/CONTENT_CREATION_GUIDE.md +3399 -0
  10. package/DEVELOPER_USE_CASES.md +2085 -0
  11. package/README.md +209 -2
  12. package/VISUAL_GENERATION_FILE_ORGANIZATION.md +105 -0
  13. package/bin/cli.js +46 -0
  14. package/package.json +17 -2
  15. package/src/lib/asset-management.js +532 -0
  16. package/src/lib/visual-config-utils.js +424 -0
  17. package/src/lib/visual-generation-utils.js +668 -0
  18. package/src/scripts/configure-visual-apis.js +413 -0
  19. package/src/scripts/generate-visual-cli.js +279 -0
  20. package/src/templates/claude/agents/content-production-coordinator.md +111 -0
  21. package/src/templates/claude/agents/content-writer.md +209 -4
  22. package/src/templates/claude/agents/proprietary-content-verifier.md +96 -0
  23. package/src/templates/claude/agents/visual-content-generator.md +520 -0
  24. package/src/templates/claude/commands/myai-content-writer.md +33 -8
  25. package/src/templates/claude/commands/myai-coordinate-content.md +136 -0
  26. package/src/templates/claude/commands/myai-generate-visual.md +318 -0
  27. package/src/templates/codex/commands/myai-generate-visual.md +307 -0
  28. package/src/templates/gemini/commands/myai-generate-visual.md +200 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,70 @@ All notable changes to the MyAIDev Method package will be documented in this fil
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
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
+
8
72
  ## [0.2.12] - 2025-11-10
9
73
 
10
74
  ### Added