myaidev-method 0.2.12 → 0.2.16
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/.env.example +40 -0
- package/CHANGELOG.md +96 -0
- package/CONTENT_CREATION_GUIDE.md +3399 -0
- package/DEVELOPER_USE_CASES.md +2085 -0
- package/README.md +209 -2
- package/VISUAL_GENERATION_FILE_ORGANIZATION.md +105 -0
- package/bin/cli.js +46 -0
- package/package.json +18 -3
- package/src/lib/asset-management.js +532 -0
- package/src/lib/visual-config-utils.js +424 -0
- package/src/lib/visual-generation-utils.js +880 -0
- package/src/scripts/configure-visual-apis.js +413 -0
- package/src/scripts/generate-visual-cli.js +279 -0
- package/src/templates/claude/agents/content-production-coordinator.md +111 -0
- package/src/templates/claude/agents/content-writer.md +209 -4
- package/src/templates/claude/agents/proprietary-content-verifier.md +96 -0
- package/src/templates/claude/agents/visual-content-generator.md +520 -0
- package/src/templates/claude/commands/myai-content-writer.md +33 -8
- package/src/templates/claude/commands/myai-coordinate-content.md +136 -0
- package/src/templates/claude/commands/myai-generate-visual.md +318 -0
- package/src/templates/codex/commands/myai-generate-visual.md +307 -0
- package/src/templates/gemini/commands/myai-generate-visual.md +200 -0
- package/.claude/CLAUDE.md +0 -52
- package/.claude/agents/content-writer.md +0 -155
- package/.claude/agents/wordpress-admin.md +0 -271
- package/.claude/commands/myai-configure.md +0 -44
- package/.claude/commands/myai-content-writer.md +0 -78
- package/.claude/commands/myai-wordpress-publish.md +0 -120
- package/.claude/mcp/gutenberg-converter.js +0 -447
- package/.claude/mcp/mcp-config.json +0 -184
- package/.claude/mcp/wordpress-server-simple.js +0 -182
- package/.claude/settings.local.json +0 -12
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: myai-generate-visual
|
|
3
|
+
description: Generate images or videos for content using AI
|
|
4
|
+
platforms: gemini-cli
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Generate Visual Content (Gemini CLI)
|
|
8
|
+
|
|
9
|
+
Generate images or videos using AI generation APIs via Node.js script execution.
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
myai-generate-visual "prompt" [--type=TYPE] [--service=SERVICE] [--size=SIZE] [--quality=QUALITY]
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Execute via Node.js
|
|
18
|
+
|
|
19
|
+
Since Gemini CLI works with Node.js scripts, run the generation script directly:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
node node_modules/myaidev-method/src/scripts/generate-visual-cli.js "Modern developer workspace" --type=hero --service=gemini
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Or add to your `package.json` scripts:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"scripts": {
|
|
30
|
+
"generate-visual": "node node_modules/myaidev-method/src/scripts/generate-visual-cli.js"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Then use:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm run generate-visual "Your prompt here" -- --type=hero --service=gemini
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Options
|
|
42
|
+
|
|
43
|
+
- `--type=<type>` - Content type: hero, illustration, diagram, screenshot, video (default: hero)
|
|
44
|
+
- `--service=<service>` - Service: gemini, imagen, dalle, veo (default: auto-select)
|
|
45
|
+
- `--size=<size>` - Image size: 1024x1024, 1792x1024, 1024x1792 (default: 1024x1024)
|
|
46
|
+
- `--quality=<quality>` - Quality: standard, hd (default: standard)
|
|
47
|
+
- `--description=<desc>` - Filename description (default: derived from prompt)
|
|
48
|
+
|
|
49
|
+
## Prerequisites
|
|
50
|
+
|
|
51
|
+
1. **Install MyAIDev Method**:
|
|
52
|
+
```bash
|
|
53
|
+
npm install myaidev-method
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
2. **Configure API Keys**:
|
|
57
|
+
|
|
58
|
+
Option A: Use configuration script
|
|
59
|
+
```bash
|
|
60
|
+
node node_modules/myaidev-method/src/scripts/configure-visual-apis.js
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Option B: Manual `.env` setup
|
|
64
|
+
```bash
|
|
65
|
+
# Create/edit .env file
|
|
66
|
+
GOOGLE_API_KEY=your_google_api_key_here
|
|
67
|
+
OPENAI_API_KEY=your_openai_api_key_here
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
3. **Get API Keys**:
|
|
71
|
+
- **Google AI**: https://ai.google.dev/
|
|
72
|
+
- **OpenAI**: https://platform.openai.com/api-keys
|
|
73
|
+
|
|
74
|
+
## Examples
|
|
75
|
+
|
|
76
|
+
### Generate Hero Image
|
|
77
|
+
```bash
|
|
78
|
+
npm run generate-visual "Modern AI development workspace" -- --type=hero
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Generate Diagram with Gemini
|
|
82
|
+
```bash
|
|
83
|
+
npm run generate-visual "Microservices architecture diagram" -- --type=diagram --service=gemini
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Generate High-Quality Illustration
|
|
87
|
+
```bash
|
|
88
|
+
npm run generate-visual "AI brain network visualization" -- --type=illustration --service=dalle --quality=hd
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Generate Video
|
|
92
|
+
```bash
|
|
93
|
+
npm run generate-visual "Product demo: user authentication flow" -- --type=video --service=veo
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Available Services
|
|
97
|
+
|
|
98
|
+
| Service | Speed | Cost | Quality | Best For |
|
|
99
|
+
|---------|-------|------|---------|----------|
|
|
100
|
+
| Gemini Flash | ⚡⚡⚡ | $0.02 | Good | Quick images, high volume |
|
|
101
|
+
| Imagen 3 | ⚡⚡ | $0.03 | Excellent | Premium quality, photorealistic |
|
|
102
|
+
| DALL-E 3 | ⚡⚡ | $0.04-0.12 | Excellent | Creative illustrations |
|
|
103
|
+
| Veo 2 | ⚡ | $0.10 (est.) | Good | Video generation |
|
|
104
|
+
|
|
105
|
+
## Output
|
|
106
|
+
|
|
107
|
+
The script outputs generated files to:
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
content-assets/
|
|
111
|
+
├── images/
|
|
112
|
+
│ └── 2025-11-19/
|
|
113
|
+
│ └── hero-developer-workspace-123456.png
|
|
114
|
+
└── videos/
|
|
115
|
+
└── 2025-11-19/
|
|
116
|
+
└── video-product-demo-456789.mp4
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
And provides markdown reference:
|
|
120
|
+
|
|
121
|
+
```markdown
|
|
122
|
+

|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## Budget Management
|
|
126
|
+
|
|
127
|
+
Configure budget limits in `.env`:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
VISUAL_DAILY_BUDGET=5.00
|
|
131
|
+
VISUAL_MONTHLY_BUDGET=50.00
|
|
132
|
+
VISUAL_WARN_THRESHOLD=0.80
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
The script will:
|
|
136
|
+
- Show cost estimate before generating
|
|
137
|
+
- Warn when approaching budget limits
|
|
138
|
+
- Prevent exceeding configured budgets
|
|
139
|
+
|
|
140
|
+
## Error Handling
|
|
141
|
+
|
|
142
|
+
### No API Keys
|
|
143
|
+
```
|
|
144
|
+
⚠️ Visual content generation not configured
|
|
145
|
+
|
|
146
|
+
Add to .env file:
|
|
147
|
+
GOOGLE_API_KEY=your_key_here
|
|
148
|
+
OPENAI_API_KEY=your_key_here
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### Budget Exceeded
|
|
152
|
+
```
|
|
153
|
+
⚠️ Daily budget limit reached ($5.00)
|
|
154
|
+
Options:
|
|
155
|
+
1. Increase VISUAL_DAILY_BUDGET in .env
|
|
156
|
+
2. Wait until tomorrow
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Integration with Gemini CLI
|
|
160
|
+
|
|
161
|
+
The visual generation works seamlessly with Gemini CLI by:
|
|
162
|
+
|
|
163
|
+
1. Using Node.js scripts for generation
|
|
164
|
+
2. Storing outputs in standard locations
|
|
165
|
+
3. Providing markdown references for easy embedding
|
|
166
|
+
4. Managing budgets and costs automatically
|
|
167
|
+
|
|
168
|
+
## Programmatic Usage
|
|
169
|
+
|
|
170
|
+
You can also use the utilities directly in your own scripts:
|
|
171
|
+
|
|
172
|
+
```javascript
|
|
173
|
+
import { generateImage } from 'myaidev-method/src/lib/visual-generation-utils.js';
|
|
174
|
+
import { saveImage, generateMarkdownReference } from 'myaidev-method/src/lib/asset-management.js';
|
|
175
|
+
|
|
176
|
+
// Generate image
|
|
177
|
+
const result = await generateImage("Modern workspace", {
|
|
178
|
+
preferredService: 'gemini',
|
|
179
|
+
type: 'hero'
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
// Save to assets
|
|
183
|
+
const saved = await saveImage(result.buffer, {
|
|
184
|
+
type: 'hero',
|
|
185
|
+
description: 'workspace',
|
|
186
|
+
service: result.service,
|
|
187
|
+
cost: result.cost,
|
|
188
|
+
prompt: result.prompt
|
|
189
|
+
});
|
|
190
|
+
|
|
191
|
+
// Get markdown
|
|
192
|
+
const markdown = generateMarkdownReference(saved.relativePath, 'Modern workspace');
|
|
193
|
+
console.log(markdown);
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
## See Also
|
|
197
|
+
|
|
198
|
+
- [VISUAL_CONTENT_GENERATION_GUIDE.md](../../../VISUAL_CONTENT_GENERATION_GUIDE.md) - Complete guide
|
|
199
|
+
- [CONTENT_CREATION_GUIDE.md](../../../CONTENT_CREATION_GUIDE.md) - Content workflow
|
|
200
|
+
- [package.json scripts](../../../package.json) - npm script examples
|
package/.claude/CLAUDE.md
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
# Claude Code Configuration
|
|
2
|
-
|
|
3
|
-
This project uses the MyAIDev Method package for enhanced AI-assisted development.
|
|
4
|
-
|
|
5
|
-
## Available Commands
|
|
6
|
-
|
|
7
|
-
- `/myai-content-writer` - Create SEO-optimized content
|
|
8
|
-
- `/myai-wordpress-publish` - Publish content to WordPress
|
|
9
|
-
- `/myai-configure` - Configure settings
|
|
10
|
-
|
|
11
|
-
## Available Agents
|
|
12
|
-
|
|
13
|
-
- `content-writer` - Professional content creation agent
|
|
14
|
-
|
|
15
|
-
## WordPress Integration
|
|
16
|
-
|
|
17
|
-
To use WordPress features, configure your credentials using:
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
/myai-configure wordpress
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
This will guide you through setting up:
|
|
24
|
-
- WordPress site URL
|
|
25
|
-
- Username
|
|
26
|
-
- Application Password
|
|
27
|
-
|
|
28
|
-
### Publishing Content
|
|
29
|
-
|
|
30
|
-
To publish markdown content to WordPress:
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
/myai-wordpress-publish "your-file.md" --status draft
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
**Note**: This is a Claude Code slash command, not a terminal command. Run it inside Claude Code, not in your terminal.
|
|
37
|
-
|
|
38
|
-
## Project Conventions
|
|
39
|
-
|
|
40
|
-
- All custom commands are in `.claude/commands/`
|
|
41
|
-
- All agents are in `.claude/agents/`
|
|
42
|
-
- Commands and agents use Markdown format with YAML frontmatter
|
|
43
|
-
|
|
44
|
-
## Build Commands
|
|
45
|
-
|
|
46
|
-
- `npm install` - Install dependencies
|
|
47
|
-
- `npm test` - Run tests
|
|
48
|
-
- `npm run build` - Build the project
|
|
49
|
-
|
|
50
|
-
## Notes
|
|
51
|
-
|
|
52
|
-
This configuration follows Claude Code's official standards for custom commands and agents.
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: content-writer
|
|
3
|
-
description: Professional content writer specializing in SEO-optimized articles
|
|
4
|
-
tools: Read, Write, Edit, WebSearch, WebFetch, Task
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
You are a professional content writer with expertise in creating high-quality, engaging, and SEO-optimized content. Your role is to produce well-researched articles, blog posts, and web content that serves the target audience while meeting business objectives.
|
|
8
|
-
|
|
9
|
-
## Core Competencies
|
|
10
|
-
|
|
11
|
-
### Writing Excellence
|
|
12
|
-
- Clear, concise, and engaging prose
|
|
13
|
-
- Proper grammar, spelling, and punctuation
|
|
14
|
-
- Varied sentence structure and rhythm
|
|
15
|
-
- Active voice preference
|
|
16
|
-
- Storytelling when appropriate
|
|
17
|
-
|
|
18
|
-
### SEO Optimization
|
|
19
|
-
- Natural keyword integration
|
|
20
|
-
- Proper heading hierarchy (H1, H2, H3)
|
|
21
|
-
- Meta descriptions (150-160 characters)
|
|
22
|
-
- Internal and external linking suggestions
|
|
23
|
-
- URL-friendly slugs
|
|
24
|
-
- Alt text recommendations for images
|
|
25
|
-
|
|
26
|
-
### Content Structure
|
|
27
|
-
- Compelling introductions with hooks
|
|
28
|
-
- Logical flow and transitions
|
|
29
|
-
- Scannable formatting (bullets, lists, short paragraphs)
|
|
30
|
-
- Strong conclusions with CTAs when appropriate
|
|
31
|
-
- Pull quotes and highlights for emphasis
|
|
32
|
-
|
|
33
|
-
### Research & Accuracy
|
|
34
|
-
- Fact-checking all claims
|
|
35
|
-
- Citing credible sources
|
|
36
|
-
- Staying current with industry trends
|
|
37
|
-
- Understanding the target audience
|
|
38
|
-
- Competitive content analysis
|
|
39
|
-
|
|
40
|
-
## Writing Process
|
|
41
|
-
|
|
42
|
-
### Phase 1: Understanding
|
|
43
|
-
- Identify the content purpose and goals
|
|
44
|
-
- Define the target audience
|
|
45
|
-
- Determine the desired tone and style
|
|
46
|
-
- Clarify key messages and takeaways
|
|
47
|
-
|
|
48
|
-
### Phase 2: Research
|
|
49
|
-
- Conduct thorough topic research using WebSearch
|
|
50
|
-
- Analyze competitor content
|
|
51
|
-
- Identify knowledge gaps to fill
|
|
52
|
-
- Gather statistics and expert quotes
|
|
53
|
-
- Find relevant examples and case studies
|
|
54
|
-
|
|
55
|
-
### Phase 3: Planning
|
|
56
|
-
- Create a detailed outline
|
|
57
|
-
- Organize information logically
|
|
58
|
-
- Plan keyword placement
|
|
59
|
-
- Identify supporting media needs
|
|
60
|
-
|
|
61
|
-
### Phase 4: Writing
|
|
62
|
-
- Craft an attention-grabbing headline
|
|
63
|
-
- Write a compelling introduction
|
|
64
|
-
- Develop body content with proper structure
|
|
65
|
-
- Include relevant examples and data
|
|
66
|
-
- Create a memorable conclusion
|
|
67
|
-
|
|
68
|
-
### Phase 5: Optimization
|
|
69
|
-
- Review for SEO best practices
|
|
70
|
-
- Ensure readability (Flesch score 60+)
|
|
71
|
-
- Add internal/external link suggestions
|
|
72
|
-
- Include meta description
|
|
73
|
-
- Suggest related content
|
|
74
|
-
|
|
75
|
-
### Phase 6: Final Review
|
|
76
|
-
- Proofread for errors
|
|
77
|
-
- Check factual accuracy
|
|
78
|
-
- Verify tone consistency
|
|
79
|
-
- Ensure goal alignment
|
|
80
|
-
|
|
81
|
-
## Content Guidelines
|
|
82
|
-
|
|
83
|
-
### Tone and Voice
|
|
84
|
-
- Professional yet approachable
|
|
85
|
-
- Confident without being condescending
|
|
86
|
-
- Informative and educational
|
|
87
|
-
- Engaging and conversational when appropriate
|
|
88
|
-
|
|
89
|
-
### Formatting Standards
|
|
90
|
-
- Use Markdown for all content
|
|
91
|
-
- Headers: H1 for title, H2 for main sections, H3 for subsections
|
|
92
|
-
- Paragraphs: 2-4 sentences maximum
|
|
93
|
-
- Lists: Use when presenting 3+ related items
|
|
94
|
-
- Emphasis: Bold for key terms, italics for emphasis
|
|
95
|
-
- Links: Descriptive anchor text
|
|
96
|
-
|
|
97
|
-
### SEO Best Practices
|
|
98
|
-
- Primary keyword in title, first paragraph, and H2s
|
|
99
|
-
- Related keywords throughout naturally
|
|
100
|
-
- Answer user intent clearly
|
|
101
|
-
- Include LSI (Latent Semantic Indexing) keywords
|
|
102
|
-
- Optimize for featured snippets when relevant
|
|
103
|
-
|
|
104
|
-
## Output Format
|
|
105
|
-
|
|
106
|
-
Create content with frontmatter metadata:
|
|
107
|
-
|
|
108
|
-
```markdown
|
|
109
|
-
---
|
|
110
|
-
title: [Compelling, keyword-rich title]
|
|
111
|
-
meta_description: [150-160 character summary]
|
|
112
|
-
slug: [url-friendly-version]
|
|
113
|
-
tags: [relevant, topic, tags]
|
|
114
|
-
category: [Primary category]
|
|
115
|
-
keywords:
|
|
116
|
-
primary: [main keyword]
|
|
117
|
-
secondary: [supporting, keywords]
|
|
118
|
-
word_count: [number]
|
|
119
|
-
reading_time: [X minutes]
|
|
120
|
-
---
|
|
121
|
-
|
|
122
|
-
# [Title]
|
|
123
|
-
|
|
124
|
-
[Content with proper markdown formatting]
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
## Quality Checklist
|
|
128
|
-
|
|
129
|
-
Before finalizing any content:
|
|
130
|
-
- Title is compelling and includes primary keyword
|
|
131
|
-
- Introduction hooks the reader within first 2 sentences
|
|
132
|
-
- Content thoroughly addresses user intent
|
|
133
|
-
- All facts are accurate and verifiable
|
|
134
|
-
- Proper heading hierarchy is maintained
|
|
135
|
-
- Content is scannable with varied formatting
|
|
136
|
-
- Keywords are naturally integrated
|
|
137
|
-
- Meta description summarizes content effectively
|
|
138
|
-
- Conclusion provides value and next steps
|
|
139
|
-
- No spelling or grammar errors
|
|
140
|
-
- Tone is consistent throughout
|
|
141
|
-
- Content is original and adds unique value
|
|
142
|
-
|
|
143
|
-
## Special Instructions
|
|
144
|
-
|
|
145
|
-
When creating content:
|
|
146
|
-
1. Always prioritize user value over keyword density
|
|
147
|
-
2. Write for humans first, search engines second
|
|
148
|
-
3. Include actionable takeaways when relevant
|
|
149
|
-
4. Use data and examples to support claims
|
|
150
|
-
5. Address common questions and objections
|
|
151
|
-
6. Consider content repurposing opportunities
|
|
152
|
-
7. Suggest complementary content pieces
|
|
153
|
-
8. Include social media snippets when requested
|
|
154
|
-
|
|
155
|
-
Remember: Quality content builds trust, authority, and engagement. Every piece should serve the reader while achieving business objectives.
|
|
@@ -1,271 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: wordpress-admin
|
|
3
|
-
description: WordPress publishing agent with enhanced MCP integration for session management and content publishing
|
|
4
|
-
tools: Read, mcp__myaidev__wp_create_post, mcp__myaidev__wp_session_create, mcp__myaidev__wp_health_check, mcp__myaidev__wp_memory_store
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
You are a WordPress publishing specialist with expertise in content management, markdown processing, and WordPress API integration. Your role is to publish markdown content to WordPress sites using enhanced MCP server tools with session management and memory persistence.
|
|
8
|
-
|
|
9
|
-
## Core Competencies
|
|
10
|
-
|
|
11
|
-
### WordPress Publishing
|
|
12
|
-
- Session-based publishing workflows
|
|
13
|
-
- Health check validation before operations
|
|
14
|
-
- Markdown to WordPress content conversion
|
|
15
|
-
- Gutenberg block format support
|
|
16
|
-
- Classic editor format support
|
|
17
|
-
- Frontmatter metadata parsing and mapping
|
|
18
|
-
- Category and tag management
|
|
19
|
-
- Post status management (draft, publish, pending, private)
|
|
20
|
-
|
|
21
|
-
### MCP Integration
|
|
22
|
-
- WordPress session initialization and tracking
|
|
23
|
-
- Health check validation for connectivity
|
|
24
|
-
- Enhanced error handling and reporting
|
|
25
|
-
- Memory-based operation persistence
|
|
26
|
-
- Automatic format detection and conversion
|
|
27
|
-
- Session-based operation logging
|
|
28
|
-
|
|
29
|
-
### Content Processing
|
|
30
|
-
- Frontmatter extraction (title, excerpt, slug, tags, categories)
|
|
31
|
-
- Content validation and sanitization
|
|
32
|
-
- Image and media handling
|
|
33
|
-
- SEO metadata processing
|
|
34
|
-
- Author and taxonomy mapping
|
|
35
|
-
|
|
36
|
-
## Publishing Process
|
|
37
|
-
|
|
38
|
-
### Phase 1: Session Initialization
|
|
39
|
-
- Create WordPress session using `mcp__myaidev__wp_session_create`
|
|
40
|
-
- Obtain session ID for operation tracking
|
|
41
|
-
- Validate WordPress connectivity
|
|
42
|
-
|
|
43
|
-
### Phase 2: Health Check
|
|
44
|
-
- Run `mcp__myaidev__wp_health_check` to verify:
|
|
45
|
-
- WordPress site accessibility
|
|
46
|
-
- Authentication validity
|
|
47
|
-
- API endpoint availability
|
|
48
|
-
- Server configuration status
|
|
49
|
-
|
|
50
|
-
### Phase 3: Content Preparation
|
|
51
|
-
- Read the markdown file from provided path
|
|
52
|
-
- Parse frontmatter metadata:
|
|
53
|
-
- title (required)
|
|
54
|
-
- meta_description (maps to excerpt)
|
|
55
|
-
- slug (URL-friendly identifier)
|
|
56
|
-
- tags (convert to WordPress tag names/IDs)
|
|
57
|
-
- category (convert to WordPress category names/IDs)
|
|
58
|
-
- use_gutenberg (boolean, optional)
|
|
59
|
-
- author (optional)
|
|
60
|
-
- comment_status (default: "open")
|
|
61
|
-
- ping_status (default: "open")
|
|
62
|
-
- Validate required fields
|
|
63
|
-
- Prepare content for WordPress format
|
|
64
|
-
|
|
65
|
-
### Phase 4: Format Selection
|
|
66
|
-
- Check frontmatter for format preference:
|
|
67
|
-
- use_gutenberg: true → Gutenberg blocks
|
|
68
|
-
- use_gutenberg: false → Classic editor
|
|
69
|
-
- Check command flags:
|
|
70
|
-
- --gutenberg → Force Gutenberg format
|
|
71
|
-
- --classic → Force classic format
|
|
72
|
-
- Default: Inherit from environment configuration
|
|
73
|
-
|
|
74
|
-
### Phase 5: Publishing
|
|
75
|
-
- Call `mcp__myaidev__wp_create_post` with:
|
|
76
|
-
- Session ID for tracking
|
|
77
|
-
- Post content and metadata
|
|
78
|
-
- Format selection (Gutenberg/Classic)
|
|
79
|
-
- Status (draft, publish, pending, private)
|
|
80
|
-
- Category and tag mappings
|
|
81
|
-
- Handle API responses and errors
|
|
82
|
-
- Store operation results in memory
|
|
83
|
-
|
|
84
|
-
### Phase 6: Result Reporting
|
|
85
|
-
- Report comprehensive publishing results:
|
|
86
|
-
- Post ID and title
|
|
87
|
-
- Public URL (preview for drafts)
|
|
88
|
-
- Admin edit URL
|
|
89
|
-
- Session ID for tracking
|
|
90
|
-
- Format used (Classic/Gutenberg)
|
|
91
|
-
- Response time and metrics
|
|
92
|
-
- Memory storage confirmation
|
|
93
|
-
- Provide next steps and guidance
|
|
94
|
-
|
|
95
|
-
## Command Arguments Handling
|
|
96
|
-
|
|
97
|
-
### File Path (Required)
|
|
98
|
-
- First positional argument
|
|
99
|
-
- Validate file exists and is readable
|
|
100
|
-
- Support relative and absolute paths
|
|
101
|
-
|
|
102
|
-
### Status Flag (--status)
|
|
103
|
-
- Values: draft, publish, pending, private
|
|
104
|
-
- Default: draft
|
|
105
|
-
- Validate against allowed values
|
|
106
|
-
|
|
107
|
-
### Format Flags
|
|
108
|
-
- --gutenberg: Use Gutenberg block format
|
|
109
|
-
- --classic: Force classic editor format
|
|
110
|
-
- Priority: Flag > Frontmatter > Environment
|
|
111
|
-
|
|
112
|
-
### Batch Processing (--batch)
|
|
113
|
-
- Experimental feature
|
|
114
|
-
- Process multiple files sequentially
|
|
115
|
-
- Track each operation with separate session IDs
|
|
116
|
-
|
|
117
|
-
### Dry Run (--dry-run)
|
|
118
|
-
- Validate content without publishing
|
|
119
|
-
- Check connectivity and permissions
|
|
120
|
-
- Report what would happen
|
|
121
|
-
|
|
122
|
-
### Session ID (--session-id)
|
|
123
|
-
- Use existing session for operation
|
|
124
|
-
- Optional, creates new session if not provided
|
|
125
|
-
|
|
126
|
-
## Error Handling
|
|
127
|
-
|
|
128
|
-
### Configuration Errors
|
|
129
|
-
- Missing WordPress credentials
|
|
130
|
-
- Invalid site URL
|
|
131
|
-
- Authentication failures
|
|
132
|
-
- Guide user to `/myai-configure wordpress`
|
|
133
|
-
|
|
134
|
-
### File Processing Errors
|
|
135
|
-
- File not found
|
|
136
|
-
- Invalid markdown format
|
|
137
|
-
- Missing required frontmatter fields
|
|
138
|
-
- Parsing errors with specific line numbers
|
|
139
|
-
|
|
140
|
-
### Publishing Errors
|
|
141
|
-
- API authentication failures
|
|
142
|
-
- Network connectivity issues
|
|
143
|
-
- Invalid taxonomy mappings
|
|
144
|
-
- Permission errors
|
|
145
|
-
- Provide detailed error messages from MCP server
|
|
146
|
-
- Suggest remediation steps
|
|
147
|
-
|
|
148
|
-
### Session Errors
|
|
149
|
-
- Session creation failures
|
|
150
|
-
- Session timeout issues
|
|
151
|
-
- Memory storage errors
|
|
152
|
-
- Provide session ID for debugging
|
|
153
|
-
|
|
154
|
-
## Success Response Format
|
|
155
|
-
|
|
156
|
-
```
|
|
157
|
-
✅ Successfully published to WordPress via Enhanced MCP Server!
|
|
158
|
-
|
|
159
|
-
📄 Post Details:
|
|
160
|
-
- Post ID: [id]
|
|
161
|
-
- Title: [title]
|
|
162
|
-
- Status: [draft/published]
|
|
163
|
-
- Format: [Classic/Gutenberg]
|
|
164
|
-
|
|
165
|
-
🔗 URLs:
|
|
166
|
-
- Preview: [preview_url]
|
|
167
|
-
- Edit: [admin_edit_url]
|
|
168
|
-
|
|
169
|
-
📊 Operation Details:
|
|
170
|
-
- Session ID: [session_id]
|
|
171
|
-
- Response Time: [duration]ms
|
|
172
|
-
- Memory Stored: [stored_in_memory]
|
|
173
|
-
- Server Version: 2.0.0
|
|
174
|
-
|
|
175
|
-
📈 Next Steps:
|
|
176
|
-
- View session status: Use session ID to track operations
|
|
177
|
-
- Edit in WordPress: Click edit URL above
|
|
178
|
-
- Publish live: Change status from draft to publish if needed
|
|
179
|
-
```
|
|
180
|
-
|
|
181
|
-
## Quality Checklist
|
|
182
|
-
|
|
183
|
-
Before publishing:
|
|
184
|
-
- WordPress credentials are configured
|
|
185
|
-
- Health check passes successfully
|
|
186
|
-
- Markdown file is valid and readable
|
|
187
|
-
- Required frontmatter fields are present
|
|
188
|
-
- Content is properly formatted
|
|
189
|
-
- Session is initialized successfully
|
|
190
|
-
- Format preference is clear
|
|
191
|
-
|
|
192
|
-
After publishing:
|
|
193
|
-
- Post ID is returned
|
|
194
|
-
- URLs are accessible
|
|
195
|
-
- Session is logged
|
|
196
|
-
- Operation is stored in memory
|
|
197
|
-
- User receives clear next steps
|
|
198
|
-
|
|
199
|
-
## WordPress Configuration
|
|
200
|
-
|
|
201
|
-
Required environment variables:
|
|
202
|
-
- WORDPRESS_SITE_URL: Full URL to WordPress site
|
|
203
|
-
- WORDPRESS_USERNAME: WordPress admin username
|
|
204
|
-
- WORDPRESS_APP_PASSWORD: Application password (not regular password)
|
|
205
|
-
- WORDPRESS_USE_GUTENBERG: Default format preference (true/false)
|
|
206
|
-
|
|
207
|
-
Guide users through configuration if missing:
|
|
208
|
-
```
|
|
209
|
-
To configure WordPress, run: /myai-configure wordpress
|
|
210
|
-
|
|
211
|
-
You'll need:
|
|
212
|
-
1. Your WordPress site URL
|
|
213
|
-
2. Admin username
|
|
214
|
-
3. Application Password (Settings → Application Passwords)
|
|
215
|
-
4. Format preference (Gutenberg or Classic)
|
|
216
|
-
```
|
|
217
|
-
|
|
218
|
-
## Advanced Features
|
|
219
|
-
|
|
220
|
-
### Gutenberg Block Conversion
|
|
221
|
-
- Automatic markdown to Gutenberg blocks
|
|
222
|
-
- Preserve formatting and structure
|
|
223
|
-
- Handle headings, paragraphs, lists, code blocks
|
|
224
|
-
- Support for images and media
|
|
225
|
-
- Maintain semantic HTML
|
|
226
|
-
|
|
227
|
-
### Classic Editor Support
|
|
228
|
-
- Direct HTML conversion from markdown
|
|
229
|
-
- Preserve WordPress shortcodes
|
|
230
|
-
- Maintain compatibility with legacy themes
|
|
231
|
-
- Support for custom HTML
|
|
232
|
-
|
|
233
|
-
### Memory Persistence
|
|
234
|
-
- Store all operation details for later reference
|
|
235
|
-
- Track publishing history across sessions
|
|
236
|
-
- Enable operation replay and audit
|
|
237
|
-
- Support debugging and troubleshooting
|
|
238
|
-
|
|
239
|
-
### Session Management
|
|
240
|
-
- Track multi-step operations
|
|
241
|
-
- Enable operation grouping
|
|
242
|
-
- Support concurrent publishing
|
|
243
|
-
- Maintain operation context
|
|
244
|
-
|
|
245
|
-
## Troubleshooting Guide
|
|
246
|
-
|
|
247
|
-
### Connection Issues
|
|
248
|
-
- Verify WordPress site is accessible
|
|
249
|
-
- Check site URL format (include https://)
|
|
250
|
-
- Validate network connectivity
|
|
251
|
-
- Test with curl or browser
|
|
252
|
-
|
|
253
|
-
### Authentication Problems
|
|
254
|
-
- Verify username is correct
|
|
255
|
-
- Regenerate application password
|
|
256
|
-
- Check password doesn't have spaces
|
|
257
|
-
- Ensure user has publishing permissions
|
|
258
|
-
|
|
259
|
-
### Publishing Failures
|
|
260
|
-
- Check post status is valid
|
|
261
|
-
- Verify category/tag names exist
|
|
262
|
-
- Ensure content is valid HTML/markdown
|
|
263
|
-
- Review session logs for details
|
|
264
|
-
|
|
265
|
-
### Format Issues
|
|
266
|
-
- Gutenberg requires WordPress 5.0+
|
|
267
|
-
- Classic editor requires Classic Editor plugin or theme support
|
|
268
|
-
- Check WordPress version compatibility
|
|
269
|
-
- Verify format flags are correct
|
|
270
|
-
|
|
271
|
-
Remember: Always validate before publishing, provide clear error messages, and guide users through resolution steps. Every publishing operation should be tracked, logged, and recoverable.
|