myaidev-method 0.2.6 → 0.2.7
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/USER_GUIDE.md +246 -5
- package/package.json +1 -1
package/USER_GUIDE.md
CHANGED
|
@@ -27,12 +27,20 @@ After installing with `npx myaidev-method@latest init --claude`, you'll see the
|
|
|
27
27
|
```
|
|
28
28
|
███╗ ███╗██╗ ██╗ █████╗ ██╗██████╗ ███████╗██╗ ██╗
|
|
29
29
|
████╗ ████║╚██╗ ██╔╝██╔══██╗██║██╔══██╗██╔════╝██║ ██║
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
██╔████╔██║ ╚████╔╝ ███████║██║██║ ██║█████╗ ██║ ██║
|
|
31
|
+
██║╚██╔╝██║ ╚██╔╝ ██╔══██║██║██║ ██║██╔══╝ ╚██╗ ██╔╝
|
|
32
|
+
██║ ╚═╝ ██║ ██║ ██║ ██║██║██████╔╝███████╗ ╚████╔╝
|
|
33
|
+
╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝╚═════╝ ╚══════╝ ╚═══╝
|
|
34
|
+
|
|
35
|
+
███╗ ███╗███████╗████████╗██╗ ██╗ ██████╗ ██████╗
|
|
36
|
+
████╗ ████║██╔════╝╚══██╔══╝██║ ██║██╔═══██╗██╔══██╗
|
|
37
|
+
██╔████╔██║█████╗ ██║ ███████║██║ ██║██║ ██║
|
|
38
|
+
██║╚██╔╝██║██╔══╝ ██║ ██╔══██║██║ ██║██║ ██║
|
|
39
|
+
██║ ╚═╝ ██║███████╗ ██║ ██║ ██║╚██████╔╝██████╔╝
|
|
40
|
+
╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
|
|
33
41
|
|
|
34
42
|
╔══════════════════════════════════════════════════════════════════════════╗
|
|
35
|
-
║ SPARC Methodology - Systematic Software Development Framework
|
|
43
|
+
║ SPARC Methodology - Systematic Software Development Framework ║
|
|
36
44
|
╚══════════════════════════════════════════════════════════════════════════╝
|
|
37
45
|
|
|
38
46
|
S │ 📋 Specification
|
|
@@ -42,7 +50,18 @@ After installing with `npx myaidev-method@latest init --claude`, you'll see the
|
|
|
42
50
|
P │ 🔄 Pseudocode
|
|
43
51
|
Plan implementation approach
|
|
44
52
|
→ Algorithm design and logic flow
|
|
45
|
-
|
|
53
|
+
|
|
54
|
+
A │ 🏗️ Architecture
|
|
55
|
+
Design system structure and components
|
|
56
|
+
→ APIs, data models, and service layers
|
|
57
|
+
|
|
58
|
+
R │ ⚡ Refinement
|
|
59
|
+
Implement with SOLID principles and testing
|
|
60
|
+
→ Clean code, security, and performance
|
|
61
|
+
|
|
62
|
+
C │ 🎯 Completion
|
|
63
|
+
Documentation and deployment preparation
|
|
64
|
+
→ User guides, API docs, and CI/CD setup
|
|
46
65
|
```
|
|
47
66
|
|
|
48
67
|
You'll have a `.claude` folder in your project:
|
|
@@ -1021,6 +1040,228 @@ tail -f ~/.claude/logs/commands.log
|
|
|
1021
1040
|
/myai-wordpress-publish article.md --status publish
|
|
1022
1041
|
```
|
|
1023
1042
|
|
|
1043
|
+
### 📝 Complete Content Creation Pipeline Examples
|
|
1044
|
+
|
|
1045
|
+
#### Example 1: Technical Blog Post Pipeline
|
|
1046
|
+
|
|
1047
|
+
**Full workflow from research to multi-platform publishing:**
|
|
1048
|
+
|
|
1049
|
+
```bash
|
|
1050
|
+
# Step 1: Research and planning
|
|
1051
|
+
/myai-content-writer "Complete Guide to Docker Containerization" --research_phase true
|
|
1052
|
+
# Output: research-docker-guide.md with sources, outline, and key points
|
|
1053
|
+
|
|
1054
|
+
# Step 2: Create comprehensive content
|
|
1055
|
+
/myai-content-writer "Docker Containerization Guide" --technical_depth advanced --include_code_examples true
|
|
1056
|
+
# Output: docker-guide.md with full article, code snippets, and examples
|
|
1057
|
+
|
|
1058
|
+
# Step 3: Platform-specific optimization
|
|
1059
|
+
/myai-content-writer "Optimize for platforms" --source docker-guide.md --platforms "wordpress,docusaurus,medium"
|
|
1060
|
+
# Output:
|
|
1061
|
+
# - docker-guide-wordpress.md (SEO optimized, WP formatting)
|
|
1062
|
+
# - docker-guide-docusaurus.md (technical docs format)
|
|
1063
|
+
# - docker-guide-medium.md (Medium-friendly formatting)
|
|
1064
|
+
|
|
1065
|
+
# Step 4: Multi-platform publishing
|
|
1066
|
+
/myai-wordpress-publish "docker-guide-wordpress.md" --status publish --category "Tutorials"
|
|
1067
|
+
/myai-docusaurus-publish "docker-guide-docusaurus.md" --section "guides" --sidebar_position 3
|
|
1068
|
+
/myai-medium-publish "docker-guide-medium.md" --tags "docker,devops,containers"
|
|
1069
|
+
```
|
|
1070
|
+
|
|
1071
|
+
#### Example 2: Product Launch Content Campaign
|
|
1072
|
+
|
|
1073
|
+
**Coordinated content across multiple channels:**
|
|
1074
|
+
|
|
1075
|
+
```bash
|
|
1076
|
+
# Step 1: Campaign planning
|
|
1077
|
+
/myai-content-writer "Product Launch Campaign: AI Code Assistant" --campaign_planning true
|
|
1078
|
+
# Output: campaign-plan.md with content calendar and platform strategy
|
|
1079
|
+
|
|
1080
|
+
# Step 2: Create core content pieces
|
|
1081
|
+
/myai-content-writer "AI Code Assistant Features" --content_type "feature_overview" --target_audience "developers"
|
|
1082
|
+
/myai-content-writer "Getting Started Guide" --content_type "tutorial" --difficulty "beginner"
|
|
1083
|
+
/myai-content-writer "Advanced Use Cases" --content_type "case_studies" --include_examples true
|
|
1084
|
+
|
|
1085
|
+
# Step 3: Platform-specific adaptations
|
|
1086
|
+
# Landing page content
|
|
1087
|
+
/myai-content-writer "Landing Page Copy" --source "feature-overview.md" --conversion_focused true --cta "Start Free Trial"
|
|
1088
|
+
|
|
1089
|
+
# Documentation site
|
|
1090
|
+
/myai-docusaurus-publish "getting-started.md" --section "quickstart" --add_navigation true
|
|
1091
|
+
/myai-docusaurus-publish "advanced-use-cases.md" --section "examples" --add_code_samples true
|
|
1092
|
+
|
|
1093
|
+
# Blog posts
|
|
1094
|
+
/myai-wordpress-publish "feature-overview.md" --status publish --category "Product Updates"
|
|
1095
|
+
/myai-astro-publish "getting-started.md" --collection "tutorials" --featured true
|
|
1096
|
+
|
|
1097
|
+
# Social media content
|
|
1098
|
+
/myai-content-writer "Social Media Posts" --source "feature-overview.md" --platforms "twitter,linkedin" --post_count 5
|
|
1099
|
+
```
|
|
1100
|
+
|
|
1101
|
+
#### Example 3: Educational Content Series
|
|
1102
|
+
|
|
1103
|
+
**Multi-part series across documentation platforms:**
|
|
1104
|
+
|
|
1105
|
+
```bash
|
|
1106
|
+
# Step 1: Series planning
|
|
1107
|
+
/myai-content-writer "Web Development Fundamentals Series" --series_planning true --parts 10
|
|
1108
|
+
# Output: series-plan.md with episode breakdown and learning objectives
|
|
1109
|
+
|
|
1110
|
+
# Step 2: Create individual parts
|
|
1111
|
+
for i in {1..10}; do
|
|
1112
|
+
/myai-content-writer "Web Dev Part $i" --series "fundamentals" --part_number $i --previous_context "series-plan.md"
|
|
1113
|
+
done
|
|
1114
|
+
|
|
1115
|
+
# Step 3: Multi-platform publishing
|
|
1116
|
+
# Documentation sites
|
|
1117
|
+
/myai-docusaurus-publish "web-dev-part-*.md" --collection "tutorial-series" --auto_navigation true
|
|
1118
|
+
/myai-mintlify-publish "web-dev-part-*.md" --group "fundamentals" --sequential_order true
|
|
1119
|
+
|
|
1120
|
+
# Blog platforms
|
|
1121
|
+
for file in web-dev-part-*.md; do
|
|
1122
|
+
/myai-wordpress-publish "$file" --status publish --series "Web Dev Fundamentals"
|
|
1123
|
+
/myai-astro-publish "$file" --collection "education" --tags "webdev,tutorial"
|
|
1124
|
+
done
|
|
1125
|
+
|
|
1126
|
+
# Create series index
|
|
1127
|
+
/myai-content-writer "Series Index Page" --series_summary "fundamentals" --include_progress_tracker true
|
|
1128
|
+
/myai-docusaurus-publish "series-index.md" --as_landing_page true
|
|
1129
|
+
```
|
|
1130
|
+
|
|
1131
|
+
#### Example 4: API Documentation Pipeline
|
|
1132
|
+
|
|
1133
|
+
**Technical documentation with code examples:**
|
|
1134
|
+
|
|
1135
|
+
```bash
|
|
1136
|
+
# Step 1: API analysis and planning
|
|
1137
|
+
/myai-dev-docs "Analyze REST API" --source "api-spec.yaml" --generate_examples true
|
|
1138
|
+
# Output: api-analysis.md with endpoints, parameters, and usage patterns
|
|
1139
|
+
|
|
1140
|
+
# Step 2: Create comprehensive documentation
|
|
1141
|
+
/myai-content-writer "REST API Documentation" --technical_writing true --include_curl_examples true --source "api-analysis.md"
|
|
1142
|
+
# Output: api-docs.md with detailed endpoint documentation
|
|
1143
|
+
|
|
1144
|
+
# Step 3: Platform-specific formatting
|
|
1145
|
+
/myai-content-writer "Format for platforms" --source "api-docs.md" --platforms "mintlify,docusaurus,postman"
|
|
1146
|
+
# Output:
|
|
1147
|
+
# - api-docs-mintlify.md (Mintlify-optimized with interactive examples)
|
|
1148
|
+
# - api-docs-docusaurus.md (Docusaurus format with sidebar navigation)
|
|
1149
|
+
# - api-collection.json (Postman collection for testing)
|
|
1150
|
+
|
|
1151
|
+
# Step 4: Multi-platform publishing
|
|
1152
|
+
/myai-mintlify-publish "api-docs-mintlify.md" --section "api-reference" --interactive_examples true
|
|
1153
|
+
/myai-docusaurus-publish "api-docs-docusaurus.md" --section "api" --add_try_it_buttons true
|
|
1154
|
+
|
|
1155
|
+
# Step 5: Generate SDK documentation
|
|
1156
|
+
/myai-dev-docs "Generate SDK Examples" --languages "javascript,python,curl" --source "api-docs.md"
|
|
1157
|
+
/myai-docusaurus-publish "sdk-examples.md" --section "sdks" --code_tabs true
|
|
1158
|
+
```
|
|
1159
|
+
|
|
1160
|
+
#### Example 5: Content Localization Pipeline
|
|
1161
|
+
|
|
1162
|
+
**Multi-language content creation and publishing:**
|
|
1163
|
+
|
|
1164
|
+
```bash
|
|
1165
|
+
# Step 1: Create master content
|
|
1166
|
+
/myai-content-writer "Product Features Guide" --master_content true --localization_ready true
|
|
1167
|
+
# Output: features-guide-en.md (English master version)
|
|
1168
|
+
|
|
1169
|
+
# Step 2: Localize content
|
|
1170
|
+
/myai-content-writer "Localize content" --source "features-guide-en.md" --target_languages "es,fr,de,ja"
|
|
1171
|
+
# Output: features-guide-es.md, features-guide-fr.md, etc.
|
|
1172
|
+
|
|
1173
|
+
# Step 3: Platform-specific publishing by language
|
|
1174
|
+
# WordPress multisite
|
|
1175
|
+
/myai-wordpress-publish "features-guide-en.md" --site "main" --language "en"
|
|
1176
|
+
/myai-wordpress-publish "features-guide-es.md" --site "es" --language "es"
|
|
1177
|
+
/myai-wordpress-publish "features-guide-fr.md" --site "fr" --language "fr"
|
|
1178
|
+
|
|
1179
|
+
# Docusaurus i18n
|
|
1180
|
+
/myai-docusaurus-publish "features-guide-en.md" --locale "en" --section "guides"
|
|
1181
|
+
/myai-docusaurus-publish "features-guide-es.md" --locale "es" --section "guides"
|
|
1182
|
+
/myai-docusaurus-publish "features-guide-fr.md" --locale "fr" --section "guides"
|
|
1183
|
+
|
|
1184
|
+
# Create language switcher
|
|
1185
|
+
/myai-content-writer "Language Navigation" --available_languages "en,es,fr,de,ja" --current_page "features-guide"
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
### 🔄 Content Workflow Automation
|
|
1189
|
+
|
|
1190
|
+
#### Automated Content Calendar
|
|
1191
|
+
|
|
1192
|
+
```bash
|
|
1193
|
+
# Weekly content automation
|
|
1194
|
+
/myai-content-writer "Weekly Tech News Roundup" --auto_schedule "every monday" --sources "hackernews,techcrunch"
|
|
1195
|
+
/myai-wordpress-publish "weekly-roundup.md" --schedule "monday 9am" --category "News"
|
|
1196
|
+
|
|
1197
|
+
# Monthly feature highlights
|
|
1198
|
+
/myai-content-writer "Monthly Product Updates" --template "product-updates.md" --auto_generate "monthly"
|
|
1199
|
+
/myai-docusaurus-publish "product-updates.md" --section "changelog" --auto_date true
|
|
1200
|
+
```
|
|
1201
|
+
|
|
1202
|
+
#### Content Repurposing Pipeline
|
|
1203
|
+
|
|
1204
|
+
```bash
|
|
1205
|
+
# Transform long-form content into multiple formats
|
|
1206
|
+
/myai-content-writer "Repurpose Content" --source "comprehensive-guide.md" --formats "summary,social,newsletter,slides"
|
|
1207
|
+
# Output:
|
|
1208
|
+
# - guide-summary.md (executive summary)
|
|
1209
|
+
# - guide-social.md (social media posts)
|
|
1210
|
+
# - guide-newsletter.md (email newsletter format)
|
|
1211
|
+
# - guide-slides.md (presentation outline)
|
|
1212
|
+
|
|
1213
|
+
# Publish across platforms
|
|
1214
|
+
/myai-wordpress-publish "guide-summary.md" --category "Summaries"
|
|
1215
|
+
/myai-astro-publish "guide-newsletter.md" --collection "newsletter"
|
|
1216
|
+
/myai-content-writer "Create Slide Deck" --source "guide-slides.md" --export_format "reveal.js"
|
|
1217
|
+
```
|
|
1218
|
+
|
|
1219
|
+
### 📊 Content Performance Tracking
|
|
1220
|
+
|
|
1221
|
+
#### Analytics Integration
|
|
1222
|
+
|
|
1223
|
+
```bash
|
|
1224
|
+
# Content performance analysis
|
|
1225
|
+
/myai-wordpress-admin analytics-report --content "docker-guide" --metrics "views,engagement,conversions"
|
|
1226
|
+
/myai-content-writer "Performance Report" --source "analytics-data.json" --recommendations true
|
|
1227
|
+
|
|
1228
|
+
# A/B testing setup
|
|
1229
|
+
/myai-content-writer "Create Variants" --source "landing-page.md" --variants 3 --test_elements "headline,cta"
|
|
1230
|
+
/myai-wordpress-publish "landing-page-variant-a.md" --ab_test "group_a"
|
|
1231
|
+
/myai-wordpress-publish "landing-page-variant-b.md" --ab_test "group_b"
|
|
1232
|
+
```
|
|
1233
|
+
|
|
1234
|
+
### 🎯 Platform-Specific Best Practices
|
|
1235
|
+
|
|
1236
|
+
#### WordPress Optimization
|
|
1237
|
+
|
|
1238
|
+
```bash
|
|
1239
|
+
# SEO-optimized WordPress content
|
|
1240
|
+
/myai-content-writer "SEO Article" --target_keyword "docker tutorial" --seo_optimized true
|
|
1241
|
+
/myai-wordpress-admin seo-analyze --content "seo-article.md" --suggestions true
|
|
1242
|
+
/myai-wordpress-publish "seo-article.md" --yoast_optimization true --featured_image "auto"
|
|
1243
|
+
```
|
|
1244
|
+
|
|
1245
|
+
#### Technical Documentation (Docusaurus/Mintlify)
|
|
1246
|
+
|
|
1247
|
+
```bash
|
|
1248
|
+
# Interactive documentation
|
|
1249
|
+
/myai-content-writer "Interactive Guide" --platform "docusaurus" --interactive_elements true
|
|
1250
|
+
/myai-docusaurus-publish "interactive-guide.md" --add_live_editor true --code_playground true
|
|
1251
|
+
|
|
1252
|
+
# API reference with examples
|
|
1253
|
+
/myai-content-writer "API Reference" --platform "mintlify" --openapi_spec "api.yaml"
|
|
1254
|
+
/myai-mintlify-publish "api-reference.md" --interactive_examples true --try_it_buttons true
|
|
1255
|
+
```
|
|
1256
|
+
|
|
1257
|
+
#### Static Site Publishing (Astro)
|
|
1258
|
+
|
|
1259
|
+
```bash
|
|
1260
|
+
# Performance-optimized content
|
|
1261
|
+
/myai-content-writer "Performance Guide" --platform "astro" --image_optimization true
|
|
1262
|
+
/myai-astro-publish "performance-guide.md" --optimize_images true --generate_sitemap true --rss_feed true
|
|
1263
|
+
```
|
|
1264
|
+
|
|
1024
1265
|
### Batch Operations
|
|
1025
1266
|
|
|
1026
1267
|
**Process multiple files:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myaidev-method",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "Comprehensive development framework with SPARC methodology for AI-assisted software development, multi-platform publishing (WordPress, PayloadCMS, Astro, Docusaurus, Mintlify), and Coolify deployment",
|
|
5
5
|
"mcpName": "io.github.myaione/myaidev-method",
|
|
6
6
|
"main": "src/index.js",
|