myaidev-method 0.2.24-1 → 0.2.24-2

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 (32) hide show
  1. package/.claude-plugin/plugin.json +251 -0
  2. package/PLUGIN_ARCHITECTURE.md +276 -0
  3. package/README.md +204 -0
  4. package/USER_GUIDE.md +436 -9
  5. package/bin/cli.js +152 -0
  6. package/extension.json +174 -0
  7. package/hooks/hooks.json +221 -0
  8. package/marketplace.json +179 -0
  9. package/package.json +15 -3
  10. package/skills/content-verifier/SKILL.md +178 -0
  11. package/skills/content-writer/SKILL.md +151 -0
  12. package/skills/coolify-deployer/SKILL.md +207 -0
  13. package/skills/openstack-manager/SKILL.md +213 -0
  14. package/skills/security-auditor/SKILL.md +180 -0
  15. package/skills/security-tester/SKILL.md +171 -0
  16. package/skills/sparc-architect/SKILL.md +146 -0
  17. package/skills/sparc-coder/SKILL.md +136 -0
  18. package/skills/sparc-documenter/SKILL.md +195 -0
  19. package/skills/sparc-reviewer/SKILL.md +179 -0
  20. package/skills/sparc-tester/SKILL.md +156 -0
  21. package/skills/visual-generator/SKILL.md +147 -0
  22. package/skills/wordpress-publisher/SKILL.md +150 -0
  23. package/src/lib/content-coordinator.js +2562 -0
  24. package/src/lib/installation-detector.js +266 -0
  25. package/src/lib/visual-config-utils.js +1 -1
  26. package/src/lib/visual-generation-utils.js +34 -14
  27. package/src/scripts/generate-visual-cli.js +39 -10
  28. package/src/scripts/ping.js +0 -1
  29. package/src/templates/claude/agents/content-production-coordinator.md +689 -15
  30. package/src/templates/claude/commands/myai-content-enrichment.md +227 -0
  31. package/src/templates/claude/commands/myai-content-writer.md +48 -37
  32. package/src/templates/claude/commands/myai-coordinate-content.md +347 -11
package/README.md CHANGED
@@ -27,6 +27,7 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
27
27
  ## 📋 Table of Contents
28
28
 
29
29
  - [Features](#features)
30
+ - [Plugin Architecture & Skills](#-plugin-architecture--skills)
30
31
  - [Installation](#installation)
31
32
  - [Quick Start](#quick-start)
32
33
  - [Updating](#updating)
@@ -69,6 +70,17 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
69
70
  - **Git-Based Workflows**: Automated publishing for static site generators
70
71
  - **WordPress Admin Agent**: Security, performance, health monitoring, and administration
71
72
 
73
+ ### 📋 Content Production Coordinator (New in v0.2.24-2!)
74
+ **Enterprise-grade content orchestration for batch verification and multi-platform publishing**
75
+ - **6-Phase Workflow**: Initialize → Verify → Categorize → Report → Notify → Publish
76
+ - **Multi-Platform Publishing**: WordPress, PayloadCMS, Docusaurus, Mintlify, Astro, Static
77
+ - **Content Verification**: Proprietary content uniqueness and quality analysis
78
+ - **Scheduling**: Linux crontab integration + WordPress native post scheduling
79
+ - **CI/CD Integration**: Webhook notifications for pipeline integration
80
+ - **Analytics & Monitoring**: Per-phase timing, success rates, quality scores
81
+ - **Queue Management**: Persistent queue with add/process/clear operations
82
+ - **Checkpoint/Resume**: Automatic progress saving with resume capability
83
+
72
84
  ### 🎨 Visual Content Generation (Updated in v0.2.22!)
73
85
  - **AI-Powered Image Generation**: Google Gemini "Nano Banana" (SOTA), OpenAI GPT Image 1.5 (SOTA), Imagen 3, FLUX 2
74
86
  - **AI-Powered Video Generation**: Google Veo 3 (latest video generation)
@@ -114,6 +126,118 @@ The **MyAIDev Method** is a complete development framework for AI CLI tools (Cla
114
126
  - **Standards Compliant**: Full compatibility with Claude Code, Gemini CLI, Codex CLI
115
127
  - **Zero Dependencies**: Core features work standalone, optional MCP integrations
116
128
 
129
+ ## 🔌 Plugin Architecture & Skills
130
+
131
+ **New in v0.2.25!** MyAIDev Method now supports a modern plugin-based architecture with discoverable skills.
132
+
133
+ ### Installation Methods
134
+
135
+ #### Method 1: Legacy NPX Installation (Still Works)
136
+
137
+ The traditional installation method via npm/npx continues to work exactly as before:
138
+
139
+ ```bash
140
+ # Full installation
141
+ npx myaidev-method init --claude
142
+
143
+ # Workflow-specific installation
144
+ npx myaidev-method content --claude
145
+ npx myaidev-method visual --claude
146
+ npx myaidev-method develop --claude
147
+ npx myaidev-method security --claude
148
+ ```
149
+
150
+ #### Method 2: Plugin Installation (Future)
151
+
152
+ When Claude Code plugin marketplace becomes available:
153
+
154
+ ```bash
155
+ # Add marketplace (one-time)
156
+ /plugin marketplace add myaione/myaidev-method
157
+
158
+ # Install full framework
159
+ /plugin install myaidev-method@myaidev-marketplace
160
+
161
+ # Or install specific packs
162
+ /plugin install myaidev-content@myaidev-marketplace
163
+ /plugin install myaidev-security@myaidev-marketplace
164
+ ```
165
+
166
+ #### Method 3: Local Plugin Installation
167
+
168
+ For development or custom installations:
169
+
170
+ ```bash
171
+ # Clone repository
172
+ git clone https://github.com/myaione/myaidev-method.git
173
+
174
+ # Install as local plugin
175
+ /plugin install ./myaidev-method
176
+ ```
177
+
178
+ ### Skills-Based Architecture
179
+
180
+ Skills are discoverable capabilities defined in SKILL.md files:
181
+
182
+ | Skill Pack | Skills Included | Description |
183
+ |------------|-----------------|-------------|
184
+ | **content** | content-writer, content-verifier, wordpress-publisher, visual-generator | Content creation and publishing |
185
+ | **development** | sparc-architect, sparc-coder, sparc-tester, sparc-reviewer, sparc-documenter | SPARC methodology |
186
+ | **security** | security-tester, security-auditor | Security testing and auditing |
187
+ | **infrastructure** | coolify-deployer, openstack-manager | Deployment and cloud management |
188
+
189
+ ### Command Naming (Dual Support)
190
+
191
+ Both legacy and namespaced commands work:
192
+
193
+ | Legacy Command | Namespaced Command | Description |
194
+ |---------------|-------------------|-------------|
195
+ | `/myai-content-writer` | `/myaidev-method:content-writer` | Content creation |
196
+ | `/myai-configure` | `/myaidev-method:configure` | Configuration |
197
+ | `/myai-wordpress-publish` | `/myaidev-method:wordpress-publish` | WordPress publishing |
198
+ | `/myai-generate-visual` | `/myaidev-method:generate-visual` | Visual generation |
199
+
200
+ ### Installation Detection Commands
201
+
202
+ ```bash
203
+ # Detect installation type
204
+ npx myaidev-method detect
205
+
206
+ # Show plugin information
207
+ npx myaidev-method plugin-info
208
+
209
+ # Upgrade from legacy to plugin
210
+ npx myaidev-method upgrade
211
+ ```
212
+
213
+ ### Cross-Platform Support
214
+
215
+ MyAIDev Method supports multiple AI CLI platforms:
216
+
217
+ | Platform | Format | Features |
218
+ |----------|--------|----------|
219
+ | **Claude Code** | Markdown + YAML | Full feature support, MCP servers, hooks |
220
+ | **Gemini CLI** | TOML | Commands and skills |
221
+ | **Codex CLI** | Markdown | Commands and skills |
222
+
223
+ Build for specific platforms:
224
+ ```bash
225
+ npm run build:platforms # Build all
226
+ npm run build:claude # Claude Code only
227
+ npm run build:gemini # Gemini CLI only
228
+ npm run build:codex # Codex CLI only
229
+ ```
230
+
231
+ ### Plugin Marketplace
232
+
233
+ The plugin is available through multiple channels:
234
+
235
+ - **NPM**: `npx myaidev-method` or `npm install myaidev-method`
236
+ - **GitHub**: https://github.com/myaione/myaidev-method
237
+ - **Website**: https://dev.myai1.ai/plugins/myaidev-method
238
+
239
+ For detailed plugin architecture documentation, see **[PLUGIN_ARCHITECTURE.md](PLUGIN_ARCHITECTURE.md)**.
240
+
117
241
  ## 🚀 Installation
118
242
 
119
243
  [![npm version](https://badge.fury.io/js/myaidev-method.svg)](https://www.npmjs.com/package/myaidev-method)
@@ -634,6 +758,86 @@ Self-hosted PaaS deployment for applications.
634
758
  - Resource management
635
759
  - Multi-environment support
636
760
 
761
+ ### 📋 Content Production Coordinator
762
+
763
+ **New in v0.2.24-2!** Enterprise-grade content orchestration for batch verification and multi-platform publishing.
764
+
765
+ #### Quick Start
766
+
767
+ ```bash
768
+ # Process all content in a queue directory
769
+ /myai-coordinate-content ./content-queue/
770
+
771
+ # Verify only, no publishing (dry run)
772
+ /myai-coordinate-content ./content-queue/ --dry-run
773
+
774
+ # Full production run with all features
775
+ /myai-coordinate-content ./content-queue/ \
776
+ --verbose \
777
+ --analytics \
778
+ --webhook-url https://ci.example.com/webhook
779
+ ```
780
+
781
+ #### Content Queue Format
782
+
783
+ Create markdown files in your content queue directory:
784
+
785
+ ```markdown
786
+ ---
787
+ title: "Your Article Title"
788
+ content_type: article
789
+ target_platform: wordpress
790
+ status: pending
791
+ priority: normal
792
+ references:
793
+ - "https://source1.com"
794
+ goals:
795
+ - "Primary goal for this content"
796
+ ---
797
+
798
+ ## Proprietary Content
799
+
800
+ [Your unique insights and original analysis here]
801
+ ```
802
+
803
+ #### Key Features
804
+
805
+ **Multi-Platform Publishing:**
806
+ ```bash
807
+ /myai-coordinate-content ./content-queue/ --platform wordpress # Default
808
+ /myai-coordinate-content ./content-queue/ --platform payloadcms
809
+ /myai-coordinate-content ./content-queue/ --platform docusaurus
810
+ /myai-coordinate-content ./content-queue/ --platform static
811
+ ```
812
+
813
+ **Scheduling:**
814
+ ```bash
815
+ # WordPress native scheduling - delay posts by 24 hours
816
+ /myai-coordinate-content ./content-queue/ --schedule-delay 24
817
+
818
+ # Spread posts 6 hours apart
819
+ /myai-coordinate-content ./content-queue/ --spread-interval 6
820
+
821
+ # Linux crontab integration
822
+ /myai-coordinate-content ./content-queue/ --cron --force
823
+ ```
824
+
825
+ **CI/CD Integration:**
826
+ ```bash
827
+ /myai-coordinate-content ./content-queue/ \
828
+ --webhook-url https://ci.example.com/webhook \
829
+ --webhook-events start,complete,error,published
830
+ ```
831
+
832
+ **Queue Management:**
833
+ ```bash
834
+ /myai-coordinate-content ./new-articles/ --add-to-queue
835
+ /myai-coordinate-content --queue-stats
836
+ /myai-coordinate-content --clear-completed
837
+ ```
838
+
839
+ For comprehensive documentation, see **[USER_GUIDE.md](USER_GUIDE.md#batch-content-coordination)**
840
+
637
841
  ## 🎨 Visual Content Generation
638
842
 
639
843
  **Updated in v0.2.22!** Generate AI-powered images and videos using state-of-the-art models.