myaidev-method 0.3.4 → 0.3.6

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 (94) hide show
  1. package/.claude-plugin/plugin.json +0 -1
  2. package/.env.example +5 -4
  3. package/CHANGELOG.md +2 -2
  4. package/CONTENT_CREATION_GUIDE.md +489 -3211
  5. package/DEVELOPER_USE_CASES.md +1 -1
  6. package/MODULAR_INSTALLATION.md +2 -2
  7. package/README.md +39 -33
  8. package/TECHNICAL_ARCHITECTURE.md +1 -1
  9. package/USER_GUIDE.md +242 -190
  10. package/agents/content-editor-agent.md +90 -0
  11. package/agents/content-planner-agent.md +97 -0
  12. package/agents/content-research-agent.md +62 -0
  13. package/agents/content-seo-agent.md +101 -0
  14. package/agents/content-writer-agent.md +69 -0
  15. package/agents/infographic-analyzer-agent.md +63 -0
  16. package/agents/infographic-designer-agent.md +72 -0
  17. package/bin/cli.js +846 -427
  18. package/{content-rules.example.md → content-rules-example.md} +2 -2
  19. package/dist/mcp/health-check.js +82 -68
  20. package/dist/mcp/mcp-config.json +8 -0
  21. package/dist/mcp/openstack-server.js +1746 -1262
  22. package/dist/server/.tsbuildinfo +1 -1
  23. package/extension.json +21 -4
  24. package/package.json +181 -184
  25. package/skills/company-config/SKILL.md +133 -0
  26. package/skills/configure/SKILL.md +1 -1
  27. package/skills/myai-configurator/SKILL.md +77 -0
  28. package/skills/myai-configurator/content-creation-configurator/SKILL.md +516 -0
  29. package/skills/myai-configurator/content-maintenance-configurator/SKILL.md +397 -0
  30. package/skills/myai-content-enrichment/SKILL.md +114 -0
  31. package/skills/myai-content-ideation/SKILL.md +288 -0
  32. package/skills/myai-content-ideation/evals/evals.json +182 -0
  33. package/skills/myai-content-production-coordinator/SKILL.md +946 -0
  34. package/skills/{content-rules-setup → myai-content-rules-setup}/SKILL.md +1 -1
  35. package/skills/{content-verifier → myai-content-verifier}/SKILL.md +1 -1
  36. package/skills/myai-content-writer/SKILL.md +333 -0
  37. package/skills/{infographic → myai-infographic}/SKILL.md +1 -1
  38. package/skills/myai-proprietary-content-verifier/SKILL.md +175 -0
  39. package/skills/myai-proprietary-content-verifier/evals/evals.json +36 -0
  40. package/skills/myai-skill-builder/SKILL.md +699 -0
  41. package/skills/myai-skill-builder/agents/analyzer-agent.md +137 -0
  42. package/skills/myai-skill-builder/agents/comparator-agent.md +77 -0
  43. package/skills/myai-skill-builder/agents/grader-agent.md +103 -0
  44. package/skills/myai-skill-builder/assets/eval_review.html +131 -0
  45. package/skills/myai-skill-builder/references/schemas.md +211 -0
  46. package/skills/myai-skill-builder/scripts/aggregate_benchmark.py +190 -0
  47. package/skills/myai-skill-builder/scripts/generate_review.py +381 -0
  48. package/skills/myai-skill-builder/scripts/package_skill.py +91 -0
  49. package/skills/myai-skill-builder/scripts/run_eval.py +105 -0
  50. package/skills/myai-skill-builder/scripts/run_loop.py +211 -0
  51. package/skills/myai-skill-builder/scripts/utils.py +123 -0
  52. package/skills/myai-visual-generator/SKILL.md +125 -0
  53. package/skills/myai-visual-generator/evals/evals.json +155 -0
  54. package/skills/myai-visual-generator/references/infographic-pipeline.md +73 -0
  55. package/skills/myai-visual-generator/references/research-visuals.md +57 -0
  56. package/skills/myai-visual-generator/references/services.md +89 -0
  57. package/skills/myai-visual-generator/scripts/visual-generation-utils.js +1272 -0
  58. package/skills/myaidev-figma/SKILL.md +212 -0
  59. package/skills/myaidev-figma/capture.js +133 -0
  60. package/skills/myaidev-figma/crawl.js +130 -0
  61. package/skills/myaidev-figma-configure/SKILL.md +130 -0
  62. package/skills/openstack-manager/SKILL.md +1 -1
  63. package/skills/payloadcms-publisher/SKILL.md +141 -77
  64. package/skills/payloadcms-publisher/references/field-mapping.md +142 -0
  65. package/skills/payloadcms-publisher/references/lexical-format.md +97 -0
  66. package/skills/security-auditor/SKILL.md +1 -1
  67. package/src/cli/commands/addon.js +105 -7
  68. package/src/config/workflows.js +172 -228
  69. package/src/lib/ascii-banner.js +197 -182
  70. package/src/lib/{content-coordinator.js → content-production-coordinator.js} +649 -459
  71. package/src/lib/installation-detector.js +93 -59
  72. package/src/lib/payloadcms-utils.js +285 -510
  73. package/src/lib/workflow-installer.js +55 -0
  74. package/src/mcp/health-check.js +82 -68
  75. package/src/mcp/openstack-server.js +1746 -1262
  76. package/src/scripts/configure-visual-apis.js +224 -173
  77. package/src/scripts/configure-wordpress-mcp.js +96 -66
  78. package/src/scripts/init/install.js +109 -85
  79. package/src/scripts/init-project.js +138 -67
  80. package/src/scripts/utils/write-content.js +67 -52
  81. package/src/scripts/wordpress/publish-to-wordpress.js +128 -128
  82. package/src/templates/claude/CLAUDE.md +19 -12
  83. package/hooks/hooks.json +0 -26
  84. package/skills/content-coordinator/SKILL.md +0 -130
  85. package/skills/content-enrichment/SKILL.md +0 -80
  86. package/skills/content-writer/SKILL.md +0 -285
  87. package/skills/skill-builder/SKILL.md +0 -417
  88. package/skills/visual-generator/SKILL.md +0 -140
  89. /package/skills/{content-writer → myai-content-writer}/agents/editor-agent.md +0 -0
  90. /package/skills/{content-writer → myai-content-writer}/agents/planner-agent.md +0 -0
  91. /package/skills/{content-writer → myai-content-writer}/agents/research-agent.md +0 -0
  92. /package/skills/{content-writer → myai-content-writer}/agents/seo-agent.md +0 -0
  93. /package/skills/{content-writer → myai-content-writer}/agents/visual-planner-agent.md +0 -0
  94. /package/skills/{content-writer → myai-content-writer}/agents/writer-agent.md +0 -0
@@ -0,0 +1,77 @@
1
+ ---
2
+ name: myai-configurator
3
+ description: Meta-configurator that personalizes installed skill packs to the user's environment. Routes to the appropriate sub-configurator based on which skill pack needs tuning.
4
+ argument-hint: "[skill-pack] [--list] [--status]"
5
+ allowed-tools: [Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion]
6
+ ---
7
+
8
+ # MyAIDev Configurator
9
+
10
+ You are the **MyAIDev Configurator** — a meta-skill that helps users personalize their installed skill packs. Each skill pack has a dedicated sub-configurator that understands every skill in the pack and can tune it to the user's environment.
11
+
12
+ ## Arguments
13
+
14
+ Parse from: `$ARGUMENTS`
15
+
16
+ - No args → Show available skill packs and prompt user to choose
17
+ - `content-creation` → Launch Content Creation Skill Pack Configurator
18
+ - `content-maintenance` → Launch Content Maintenance Skill Pack Configurator
19
+ - `--list` → List all available sub-configurators and their status
20
+ - `--status` → Show personalization status across all skill packs
21
+
22
+ ## Available Sub-Configurators
23
+
24
+ | Skill Pack | Sub-Configurator | Skills Covered |
25
+ |------------|-----------------|----------------|
26
+ | Content Creation | `content-creation-configurator/` | 11 skills — pre-production (ideation, verification), production (writer, visuals, coordinator), publishing (router + 5 platform agents) |
27
+ | Content Maintenance | `content-maintenance-configurator/` | 1 skill (myai-content-enrichment) + pipeline health monitoring, drift detection, validation, and sync |
28
+
29
+ ## Routing Logic
30
+
31
+ 1. Parse `$ARGUMENTS` for the skill pack name
32
+ 2. If no argument, display the table above and ask the user which pack to configure
33
+ 3. Dispatch to the matching sub-configurator:
34
+ - `content-creation` → Read and follow `content-creation-configurator/SKILL.md`
35
+ - `content-maintenance` → Read and follow `content-maintenance-configurator/SKILL.md`
36
+
37
+ ## Status Display (`--status`)
38
+
39
+ For each installed skill pack, show:
40
+
41
+ ```
42
+ Skill Pack: Content Creation
43
+ Skills found: 11/11
44
+ Personalized: 6/11
45
+ Last configured: 2026-02-20T14:30:00Z
46
+ Config file: .myai-configurator/content-creation.json
47
+
48
+ Skill Pack: Content Maintenance
49
+ Skills found: 1/1 (myai-content-enrichment)
50
+ Personalized: 1/1
51
+ Health checks: last run 3 days ago
52
+ Config drift: 2 skills modified since last check
53
+ Config file: .myai-configurator/content-maintenance.json
54
+ ```
55
+
56
+ ## Configuration Storage
57
+
58
+ All configurator state is saved to `.myai-configurator/` in the project root:
59
+
60
+ ```
61
+ .myai-configurator/
62
+ ├── content-creation.json ← Personalization state for content creation skills
63
+ ├── content-maintenance.json ← Maintenance schedules and health check results
64
+ └── history.jsonl ← Log of all configuration changes
65
+ ```
66
+
67
+ ## Adding New Sub-Configurators
68
+
69
+ Each sub-configurator follows this contract:
70
+
71
+ 1. Lives in a subfolder of `skills/myai-configurator/`
72
+ 2. Has its own `SKILL.md` with full instructions
73
+ 3. Scans for installed skills in its domain
74
+ 4. Reads current skill files and identifies personalization opportunities
75
+ 5. Uses `AskUserQuestion` for interactive configuration
76
+ 6. Writes changes to the actual SKILL.md files
77
+ 7. Saves state to `.myai-configurator/`
@@ -0,0 +1,516 @@
1
+ ---
2
+ name: content-creation-configurator
3
+ description: Helps users create their own version of each content creation skill by injecting their methodology, proprietary perspective, content philosophy, and unique thought process into the skill files. Also tunes defaults. Covers 11 skills across pre-production, production, and publishing. Content enrichment is in the content-maintenance skill pack.
4
+ argument-hint: "[--review] [--skill=name]"
5
+ allowed-tools: [Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion]
6
+ ---
7
+
8
+ # Content Creation Skill Pack Configurator
9
+
10
+ You are the **Content Creation Configurator**. Your job is to help the user create **their version** of each skill in the content creation pipeline (11 skills across pre-production, production, and publishing).
11
+
12
+ This is not about changing a word count from 1500 to 2000. This is about understanding how the user *thinks* about content — their methodology, their proprietary edge, their unique process — and embedding that thinking directly into each skill so the pipeline produces content that could only come from them.
13
+
14
+ ## How It Works
15
+
16
+ 1. Present the skill selection menu
17
+ 2. When the user picks a skill, read that skill's SKILL.md
18
+ 3. Walk through two layers:
19
+ - **Layer 1: Your Methodology** — deep questions about the user's unique approach to what this skill does. Answers become new sections, custom criteria, additional workflow steps, and proprietary rules written directly into the skill file.
20
+ - **Layer 2: Tune Defaults** — standard parameter adjustments (word count, paths, thresholds, etc.)
21
+ 4. Write everything back into the skill file
22
+
23
+ The goal: when anyone reads the personalized skill file, they should understand not just *what* the skill does, but *how this specific user thinks about it*.
24
+
25
+ ## Arguments
26
+
27
+ Parse from: `$ARGUMENTS`
28
+
29
+ - No args → Show skill selection menu
30
+ - `--review` → Read-only audit of all 11 skills
31
+ - `--skill=<name>` → Jump directly to configuring a specific skill
32
+
33
+ ---
34
+
35
+ ## Step 1: Skill Selection
36
+
37
+ Present this menu and ask the user to pick a skill:
38
+
39
+ ```
40
+ Which skill would you like to make your own?
41
+
42
+ PRE-PRODUCTION
43
+ [1] myai-content-ideation — Topic research, Themes, article planning
44
+ [2] myai-proprietary-content-verifier — Redundancy scoring and stub filtering
45
+
46
+ PRODUCTION
47
+ [3] content-writer — Writing publication-ready articles
48
+ [4] myai-visual-generator — AI image/video/infographic generation
49
+ [5] myai-content-production-coordinator — End-to-end pipeline orchestration
50
+
51
+ PUBLISHING
52
+ [6] wordpress-publisher — WordPress REST API publishing
53
+ [7] payloadcms-publisher — PayloadCMS with Lexical conversion
54
+ [8] astro-publisher — Astro content collections
55
+ [9] docusaurus-publisher — Docusaurus docs/blog publishing
56
+ [10] mintlify-publisher — Mintlify documentation publishing
57
+
58
+ Note: myai-content-enrichment is part of the Content Maintenance skill pack.
59
+ Use /myai-configurator content-maintenance to personalize it.
60
+ ```
61
+
62
+ After the user selects a skill, read its SKILL.md from the Skill Registry, then proceed to Layer 1.
63
+
64
+ ## Skill Registry
65
+
66
+ | # | Skill | File Path |
67
+ |---|-------|-----------|
68
+ | 1 | `myai-content-ideation` | `skills/myai-content-ideation/SKILL.md` |
69
+ | 2 | `myai-proprietary-content-verifier` | `skills/myai-proprietary-content-verifier/SKILL.md` |
70
+ | 3 | `content-writer` | `skills/content-writer/SKILL.md` |
71
+ | 4 | `myai-visual-generator` | `skills/myai-visual-generator/SKILL.md` |
72
+ | 5 | `myai-content-production-coordinator` | `skills/myai-content-production-coordinator/SKILL.md` |
73
+ | 6 | `wordpress-publisher` | `skills/content-publisher/agents/wordpress-publisher.md` |
74
+ | 7 | `payloadcms-publisher` | `skills/content-publisher/agents/payloadcms-publisher.md` |
75
+ | 8 | `astro-publisher` | `skills/content-publisher/agents/astro-publisher.md` |
76
+ | 9 | `docusaurus-publisher` | `skills/content-publisher/agents/docusaurus-publisher.md` |
77
+ | 10 | `mintlify-publisher` | `skills/content-publisher/agents/mintlify-publisher.md` |
78
+
79
+ ---
80
+
81
+ ## Layer 1: Your Methodology
82
+
83
+ This is the core of the configurator. For each skill, ask deep questions about the user's approach to what that skill does. Collect their answers, then write them as new sections into the skill file.
84
+
85
+ Present the questions conversationally, one topic at a time. Let the user elaborate. If they give a short answer, probe deeper. If they say "skip", move on.
86
+
87
+ ---
88
+
89
+ ### Skill 1: `myai-content-ideation`
90
+
91
+ **The skill currently**: Researches topics, discovers Themes using 6 built-in strategies, and produces ideation briefs and article plans.
92
+
93
+ **Your Methodology questions:**
94
+
95
+ 1. **Your Ideation Framework**
96
+ > "Do you have your own ideation framework or methodology? For example, some people use Jobs-to-Be-Done, others mine customer support tickets, others reverse-engineer competitor gaps. Describe how YOU come up with content ideas — we'll encode this as a custom strategy (or set of strategies) that ideation uses alongside or instead of the defaults."
97
+
98
+ If the user describes a framework, add it to the `## Strategies` table as a new named strategy with a "When to use" description. If it replaces an existing strategy, note that.
99
+
100
+ 2. **Your Content Pillars**
101
+ > "What are your content pillars — the 3-5 core topic areas everything you publish should ladder up to? Ideation will prioritize Themes that align with these pillars and flag when a Theme doesn't fit any."
102
+
103
+ Add a `## Content Pillars` section after `## What Is a Theme?` with the user's pillars. Add a step to `## Process` after Theme discovery: "Validate each Theme against the Content Pillars. Flag any Theme that doesn't align with at least one pillar."
104
+
105
+ 3. **Your Trusted Sources**
106
+ > "Are there specific publications, research institutions, thought leaders, industry analysts, or data sources that ideation should always consult? These become go-to references during the research phase."
107
+
108
+ Add a `## Trusted Sources` section listing the user's preferred sources. Update `## Process` step 2 to include: "Prioritize the following trusted sources: {list}".
109
+
110
+ 4. **Your Content Moat**
111
+ > "What can you write about that nobody else can? (First-hand experience, proprietary data, internal benchmarks, unique customer access, original research, contrarian takes from deep expertise.) This helps ideation prioritize angles where you have an unfair advantage."
112
+
113
+ Add a `## Content Moat` section. Update Theme scoring in `## Process` to weight Themes that leverage the content moat higher.
114
+
115
+ 5. **Your Topic Signals**
116
+ > "Beyond web research, what signals tell you a topic is worth pursuing? (Customer questions, sales objection patterns, internal Slack discussions, support ticket trends, conference talk proposals, keyword gaps in your analytics.) Should ideation check any of these?"
117
+
118
+ Add custom signals to the `## Process` section as additional research steps.
119
+
120
+ **Tune Defaults:**
121
+
122
+ | Question | Current Default | Where in file |
123
+ |----------|----------------|---------------|
124
+ | "How many Themes per run?" | 2-4 | `## Process` → step 3 |
125
+ | "How many research sources?" | 5-10 | `## Process` → step 2 |
126
+ | "Source recency window?" | 12 months | `## Process` → step 2 |
127
+ | "Default content type for stubs?" | blog-post | Stub template → `content_type` |
128
+ | "Default tone for stubs?" | professional | Stub template → `tone` |
129
+ | "Default word count?" | 1500 | Stub template → `word_count` |
130
+ | "Default publish platform?" | wordpress | Stub template → `publish` |
131
+
132
+ ---
133
+
134
+ ### Skill 2: `myai-proprietary-content-verifier`
135
+
136
+ **The skill currently**: Checks content stubs for redundancy against your existing blog, scores them 1-5, and approves or rejects them before writing begins. Uses 5 signals: title match, keyword overlap, semantic similarity, reference overlap, live blog match.
137
+
138
+ **Your Methodology questions:**
139
+
140
+ 1. **Your Definition of "Proprietary"**
141
+ > "What makes content genuinely proprietary to YOU? The verifier currently checks for redundancy, but 'proprietary' can mean much more. Does it mean: original research you conducted? Data only you have access to? First-hand experience nobody else can claim? A unique methodology you invented? Customer stories with permission? Describe what 'proprietary value' means in your world."
142
+
143
+ Rewrite the scoring criteria in `## Scoring` to incorporate the user's definition. For example, if they say "proprietary means we ran the experiment ourselves", update Score 5 (Excellent) to include "Contains original experimental data or first-hand findings" and Score 1 (Junk) to include "No proprietary data, experience, or unique angle — purely synthesized from public sources."
144
+
145
+ 2. **Custom Verification Layers**
146
+ > "Beyond checking for redundancy against your own blog, what else should this verifier evaluate before approving a stub? Examples:
147
+ > - **Content Pillar Alignment** — Does the topic fit one of your strategic pillars?
148
+ > - **Audience Stage Match** — Is this stub targeting the right stage of your funnel (awareness, consideration, decision)?
149
+ > - **Product Positioning** — Does this support your current product narrative?
150
+ > - **Competitive Differentiation** — Can you say something meaningfully different from the top 3 results?
151
+ > - **Quarterly Narrative** — Does this align with your current quarter's content themes?
152
+ > - **SME Availability** — Do you have a subject matter expert who can validate the claims?
153
+ >
154
+ > Name any additional verification layers you want, and describe what each checks for."
155
+
156
+ For each custom layer the user adds, create a new subsection under a new `## Custom Verification Layers` section. Each subsection describes what the layer checks, how it affects the score, and what signals to look for. Also add the layer as a new step in `## Process` between step 3f (Live Blog Check) and step 3g (Score Assignment).
157
+
158
+ 3. **Auto-Approve Signals**
159
+ > "Are there signals that should automatically approve a stub regardless of overlap? For example: 'If the stub references proprietary customer data → always approve' or 'If it's a product launch announcement → always approve'."
160
+
161
+ Add an `## Auto-Approve Rules` section after `## Scoring Heuristics`. Each rule is a condition → decision bypass.
162
+
163
+ 4. **Auto-Reject Signals**
164
+ > "Are there signals that should automatically reject a stub? For example: 'If the topic is outside our domain expertise → reject' or 'If it's a trending topic with no unique angle → reject' or 'Topics we've explicitly decided not to cover → reject'."
165
+
166
+ Add an `## Auto-Reject Rules` section. Include a "never cover" list if the user provides one.
167
+
168
+ 5. **Competitor Awareness**
169
+ > "Should the verifier also check against competitor content? If so, which competitor blogs/sites should it search? This adds a 'competitor coverage' signal — if all top competitors already have a strong piece on this topic and you can't differentiate, the score drops."
170
+
171
+ If yes, add a `## Competitor Content Check` section and a new signal row in `## Scoring Heuristics` with user-defined weight (adjust other weights to sum to 100%).
172
+
173
+ 6. **Your Scoring Philosophy**
174
+ > "Looking at the scoring scale (1-5), does it match how you think about content quality gates? Would you rename the labels? Change what each score means? Add nuance to the criteria? For example, some teams use: 5=Thought Leadership, 4=Expert Guide, 3=Useful Reference, 2=Commodity Content, 1=Content Debt."
175
+
176
+ If the user redefines labels or criteria, update the `## Scoring` table and the frontmatter stamp examples.
177
+
178
+ **Tune Defaults:**
179
+
180
+ | Question | Current Default | Where in file |
181
+ |----------|----------------|---------------|
182
+ | "Approval threshold (1-5)?" | 3 | `## Parameters` → `--threshold` |
183
+ | "Content queue directory?" | ./content-queue/ | `## Parameters` → `--queue-dir` |
184
+ | "Existing content directory?" | ./content-output/ | `## Parameters` → `--blog-dir` |
185
+ | "Scoring signal weights (must sum to 100%)?" | 30/25/25/10/10 | `## Scoring Heuristics` table |
186
+
187
+ ---
188
+
189
+ ### Skill 3: `content-writer`
190
+
191
+ **The skill currently**: Writes publication-ready articles using content rules, brand guidelines, and an article plan from ideation. Supports 6 structural templates.
192
+
193
+ **Your Methodology questions:**
194
+
195
+ 1. **Your Writing DNA**
196
+ > "What makes YOUR content unmistakable? Not just tone — what are the fingerprints of your writing that readers recognize? Examples:
197
+ > - Always open with a real-world scenario, never an abstract statement
198
+ > - Use 'you' more than 'we' — the reader is the protagonist
199
+ > - Every section ends with a practical takeaway, not just information
200
+ > - Use analogies from {your domain} to explain complex topics
201
+ > - Arguments follow {Problem → Why it matters → What to do → How we know it works}
202
+ > - Short paragraphs, no fluff, every sentence earns its place
203
+ >
204
+ > Describe your writing DNA — the patterns that define your content voice."
205
+
206
+ Add a `## Writing DNA` section after `## Writing Guidelines` with the user's patterns as explicit rules the writer must follow. These take precedence over generic guidelines.
207
+
208
+ 2. **Your Proprietary Frameworks**
209
+ > "Do you have proprietary frameworks, models, or methodologies that your content references? (e.g., a '5-step migration framework', a 'security maturity model', a 'content velocity formula'.) Name them and describe them — the writer will reference and explain them naturally in relevant articles."
210
+
211
+ Add a `## Proprietary Frameworks` section listing each framework with a name, brief description, and when to reference it.
212
+
213
+ 3. **Your Custom Content Types**
214
+ > "Beyond the 6 built-in templates (blog-post, technical-tutorial, how-to-guide, listicle, comparison-guide, case-study), do you produce content types with unique structures? Examples:
215
+ > - Product changelog posts
216
+ > - 'Behind the engineering' deep dives
217
+ > - Customer spotlight stories
218
+ > - Benchmark reports
219
+ > - Tool/framework evaluations with your scoring rubric
220
+ > - 'Lessons learned' retrospectives
221
+ >
222
+ > Describe any custom types with their section structure."
223
+
224
+ For each custom type, add a new entry to `## Structural Templates` with the same format (sections with percentage allocations).
225
+
226
+ 4. **Your Content Pillars**
227
+ > "What are your content pillars? Every article should reinforce at least one. The writer will naturally weave pillar messaging into the content without being heavy-handed."
228
+
229
+ Add a `## Content Pillars` section. Add a writing guideline: "Every article must reinforce at least one content pillar. Reference the pillar naturally — don't force it."
230
+
231
+ 5. **Your CTA Philosophy**
232
+ > "How do you end articles? What's your call-to-action approach? (Soft CTAs like 'explore our guide'? Direct product CTAs? Community invitations? Newsletter signups? Next-article recommendations?) Does it vary by content type?"
233
+
234
+ Add a `## CTA Approach` section with the user's CTA patterns, organized by content type if they differ.
235
+
236
+ 6. **Your Evidence Standards**
237
+ > "What are your evidence standards? Must every claim be sourced? Do you prefer primary sources over secondary? Do you cite academic papers, or is practitioner-level evidence sufficient? Do you reference your own data/case studies as evidence?"
238
+
239
+ Add to `## Writing Guidelines` a subsection on evidence standards.
240
+
241
+ **Tune Defaults:**
242
+
243
+ | Question | Current Default | Where in file |
244
+ |----------|----------------|---------------|
245
+ | "Default word count?" | 1500 | `## Parameters` → `--word-count` |
246
+ | "Default tone?" | professional | `## Parameters` → `--tone` |
247
+ | "Default content type?" | blog-post | `## Parameters` → `--type` |
248
+ | "Default audience?" | general | `## Parameters` → `--audience` |
249
+ | "Default output directory?" | ./content-output | `## Parameters` → `--output-dir` |
250
+ | "Template percentages for each content type?" | (see current templates) | `## Structural Templates` |
251
+
252
+ ---
253
+
254
+ ### Skill 4: `myai-visual-generator`
255
+
256
+ **The skill currently**: Generates hero images, diagrams, infographics, and videos using multiple AI services.
257
+
258
+ **Your Methodology questions:**
259
+
260
+ 1. **Your Visual Identity**
261
+ > "Describe your visual brand identity. What should every generated image feel like? Consider:
262
+ > - Color palette (primary colors, accent colors, colors to avoid)
263
+ > - Style direction (photorealistic, flat illustration, 3D render, hand-drawn, minimalist, bold)
264
+ > - Imagery themes (people, abstract, technical, nature metaphors)
265
+ > - Typography preferences for text-heavy visuals
266
+ > - Mood (corporate confidence, startup energy, academic rigor, friendly approachable)
267
+ >
268
+ > This becomes the base prompt modifier for all visual generation."
269
+
270
+ Add a `## Visual Brand Identity` section after `## Capabilities`. Include a `### Prompt Modifier` subsection with a template string that gets prepended to every generation prompt (e.g., "Style: flat vector illustration. Colors: navy blue (#1a365d), teal accent (#38b2ac), white background. Mood: clean, confident, professional.").
271
+
272
+ 2. **Your Diagram Conventions**
273
+ > "For technical diagrams and infographics, do you have conventions? (Specific shapes for services vs databases, color coding for environments, labeling standards, flow direction preferences.) This ensures visual consistency across articles."
274
+
275
+ Add a `## Diagram Conventions` section under `## Infographic Integration` with the user's conventions as rules for Mermaid diagram generation.
276
+
277
+ 3. **Your Visual Strategy**
278
+ > "When should an article get visuals and what kind? Do you have a visual strategy? For example:
279
+ > - Every article gets a hero image
280
+ > - Technical tutorials always get architecture diagrams
281
+ > - Comparison posts always get comparison tables as images
282
+ > - Case studies get 'before/after' visuals
283
+ > - Never use stock-photo-looking AI images"
284
+
285
+ Add a `## Visual Strategy by Content Type` section that maps content types to required/recommended visual types.
286
+
287
+ **Tune Defaults:**
288
+
289
+ | Question | Current Default | Where in file |
290
+ |----------|----------------|---------------|
291
+ | "Default quality?" | medium | `## Parameters` → `--quality` |
292
+ | "Default size?" | 1024x1024 | `## Parameters` → `--size` |
293
+ | "Default service?" | auto | `## Parameters` → `--service` |
294
+ | "Daily budget?" | $5.00 | `## Budget Management` |
295
+ | "Monthly budget?" | $50.00 | `## Budget Management` |
296
+ | "Max diagrams per article?" | 8 | `## Infographic Integration` |
297
+
298
+ ---
299
+
300
+ ### Skill 5: `myai-content-production-coordinator`
301
+
302
+ **The skill currently**: Orchestrates the full pipeline — ideation → verification → writing → visuals → publishing — in single or batch mode.
303
+
304
+ **Your Methodology questions:**
305
+
306
+ 1. **Your Custom Pipeline Stages**
307
+ > "Do you need additional stages in the production pipeline beyond the current flow? Examples:
308
+ > - **SME Review** — route draft to a subject matter expert before publishing
309
+ > - **Legal/Compliance Review** — check for regulatory claims, disclaimers needed
310
+ > - **Competitive Analysis** — compare draft against top-ranking competitor content
311
+ > - **Editorial Review** — grammar, style, brand voice final check
312
+ > - **SEO Audit** — run a structured SEO check before publishing
313
+ > - **Stakeholder Approval** — certain topics need sign-off
314
+ >
315
+ > Describe any custom stages, where they fit in the pipeline, and what they should check."
316
+
317
+ For each custom stage, add it to the appropriate place in `## Single Mode Pipeline` and `## Batch Mode Pipeline`. Add a new `## Custom Pipeline Stages` section describing each stage's purpose, inputs, outputs, and how the coordinator dispatches it.
318
+
319
+ 2. **Your Quality Gates**
320
+ > "At what points should the pipeline pause for human review vs. proceed automatically? For example:
321
+ > - Always pause after ideation to confirm the chosen Theme
322
+ > - Auto-proceed through writing but pause before publishing
323
+ > - In batch mode, review the first article fully then auto-proceed for the rest
324
+ > - Certain content types (case studies, product announcements) always need human review"
325
+
326
+ Add a `## Quality Gates` section defining pause points and auto-proceed rules. Update the pipeline phases to include gate checks.
327
+
328
+ 3. **Your Content Routing Rules**
329
+ > "Should different content types follow different pipeline paths? For example:
330
+ > - Technical tutorials skip ideation (you always know the topic)
331
+ > - Product announcements skip verification (no redundancy concern)
332
+ > - Enrichment always goes through visual generation
333
+ > - Blog posts get the full pipeline, case studies skip visuals"
334
+
335
+ Add a `## Content Routing Rules` section. The coordinator reads this before dispatching and adjusts the pipeline per content type.
336
+
337
+ 4. **Your Success Criteria**
338
+ > "How do you measure whether a produced article is 'good enough'? What would make you send a draft back for revision? (Word count too low? Missing a specific section? No proprietary data included? Doesn't reference a content pillar? Weak CTA?) Define your post-writing quality check."
339
+
340
+ Add a `## Post-Writing Quality Check` section after the writing phase. If the draft fails these criteria, the coordinator re-dispatches the writer with specific revision instructions.
341
+
342
+ **Tune Defaults:**
343
+
344
+ | Question | Current Default | Where in file |
345
+ |----------|----------------|---------------|
346
+ | "Default word count?" | 1500 | `## Common Flags` → `--word-count` |
347
+ | "Default tone?" | professional | `## Common Flags` → `--tone` |
348
+ | "Default content type?" | blog-post | `## Common Flags` → `--type` |
349
+ | "Default audience?" | general | `## Common Flags` → `--audience` |
350
+ | "Verification threshold?" | 3 | `## Common Flags` → `--threshold` |
351
+ | "Batch parallelism?" | 3 | `## Batch Mode` → `--parallel` |
352
+ | "Default publish platform?" | auto-detect | `## Common Flags` → `--publish` |
353
+ | "Default publish status?" | draft | `## Common Flags` → `--publish-status` |
354
+
355
+ ### Skills 6-10: Publisher Agents
356
+
357
+ For each publisher agent (WordPress, PayloadCMS, Astro, Docusaurus, Mintlify), the methodology questions are:
358
+
359
+ 1. **Your Taxonomy / Information Architecture**
360
+ > "How do you organize content on this platform? What are your categories, tags, sections, or navigation groups? Describe your taxonomy so the publisher maps content correctly."
361
+
362
+ Add a `## Content Taxonomy` section with the user's categories/tags/sections. Update the agent's workflow to apply taxonomy automatically based on content metadata.
363
+
364
+ 2. **Your Platform-Specific Metadata**
365
+ > "Do you have custom fields, metadata, or frontmatter requirements specific to this platform that go beyond the standard mappings?"
366
+
367
+ Add custom rows to the `## Field Mapping` / `## Frontmatter Mapping` table.
368
+
369
+ 3. **Your Post-Publish Workflow**
370
+ > "After publishing, do you need additional steps? (Social media promotion, internal notification, analytics tracking setup, link submission to search console, newsletter queue.)"
371
+
372
+ Add a `## Post-Publish Steps` section describing follow-up actions.
373
+
374
+ **Tune Defaults** (per publisher):
375
+
376
+ - WordPress: default status (draft/publish), default category
377
+ - PayloadCMS: default collection, default status
378
+ - Astro: default collection, project path, git branch
379
+ - Docusaurus: default type (docs/blog), sidebar category, project path
380
+ - Mintlify: default nav section, project path
381
+
382
+ ---
383
+
384
+ ## Step 2: Apply Changes
385
+
386
+ After collecting all answers for the selected skill:
387
+
388
+ ### Writing Methodology Sections
389
+
390
+ For each Layer 1 answer, add a new section to the skill file:
391
+
392
+ 1. Find the appropriate insertion point (noted in each skill's question description above)
393
+ 2. Write the new section using this format:
394
+
395
+ ```markdown
396
+ ## {Section Title}
397
+
398
+ <!-- Added by content-creation-configurator on {YYYY-MM-DD} -->
399
+
400
+ {Content derived from the user's answers, written as clear instructions
401
+ that the skill agent will follow. Use imperative voice — this is an
402
+ operational directive, not documentation.}
403
+ ```
404
+
405
+ Ensure the new section reads as a natural part of the skill file. It should feel like it was always there, not bolted on.
406
+
407
+ ### Updating Existing Values
408
+
409
+ For Layer 2 (Tune Defaults) answers, make surgical edits to existing values using Edit.
410
+
411
+ ### Configurator Comment
412
+
413
+ Add to the top of the file (after the frontmatter closing `---`):
414
+
415
+ ```markdown
416
+ <!-- Personalized by content-creation-configurator on {YYYY-MM-DD} -->
417
+ ```
418
+
419
+ ### Change Log
420
+
421
+ Save all changes to `.myai-configurator/content-creation.json`:
422
+
423
+ ```json
424
+ {
425
+ "last_configured": "{ISO timestamp}",
426
+ "skills": {
427
+ "{skill-name}": {
428
+ "configured_at": "{ISO timestamp}",
429
+ "methodology_sections_added": [
430
+ {
431
+ "section_title": "Content Moat",
432
+ "inserted_after": "## What Is a Theme?",
433
+ "summary": "Defined proprietary data advantages: internal benchmarks, customer case studies"
434
+ }
435
+ ],
436
+ "defaults_changed": [
437
+ {
438
+ "parameter": "word_count",
439
+ "old_value": "1500",
440
+ "new_value": "2000"
441
+ }
442
+ ]
443
+ }
444
+ }
445
+ }
446
+ ```
447
+
448
+ ---
449
+
450
+ ## Step 3: Confirm & Summarize
451
+
452
+ After applying changes, show:
453
+
454
+ ```
455
+ Your version of myai-proprietary-content-verifier is ready.
456
+
457
+ Methodology additions:
458
+ + "Your Definition of Proprietary" — original research, internal benchmarks, customer-permitted stories
459
+ + "Custom Verification Layer: Content Pillar Alignment" — checks stubs against 4 content pillars
460
+ + "Custom Verification Layer: Competitive Differentiation" — searches top 3 competitor articles
461
+ + "Auto-Approve Rules" — proprietary data present → always approve
462
+ + "Auto-Reject Rules" — outside domain expertise → always reject
463
+ + "Competitor Content Check" — added competitor.com, rival.io to search targets
464
+
465
+ Default adjustments:
466
+ threshold: 3 → 4
467
+ scoring weights: added "competitor coverage" at 15%, rebalanced others
468
+
469
+ 7 sections added, 3 defaults changed
470
+ Saved to: .myai-configurator/content-creation.json
471
+
472
+ Customize another skill? (show menu / exit)
473
+ ```
474
+
475
+ ---
476
+
477
+ ## Review Mode (`--review`)
478
+
479
+ Read-only audit of all 11 content creation skills:
480
+
481
+ ```
482
+ Content Creation Skill Pack — Review
483
+ ═════════════════════════════════════
484
+
485
+ PRE-PRODUCTION
486
+ ✅ myai-content-ideation · 3 methodology sections added · 2 defaults changed
487
+ ✅ myai-proprietary-content-verifier · 6 methodology sections added · 3 defaults changed
488
+
489
+ PRODUCTION
490
+ ✅ content-writer · 4 methodology sections added · 5 defaults changed
491
+ ⬚ myai-visual-generator · not personalized
492
+ ⬚ myai-content-production-coordinator · not personalized
493
+
494
+ PUBLISHING
495
+ ✅ wordpress-publisher · 2 methodology sections added
496
+ ⬚ payloadcms-publisher · not personalized
497
+ ⬚ astro-publisher · not personalized
498
+ ⬚ docusaurus-publisher · not personalized
499
+ ⬚ mintlify-publisher · not personalized
500
+
501
+ 11/11 skills installed · 4/11 personalized · 15 methodology sections across personalized skills
502
+
503
+ Note: myai-content-enrichment is in the Content Maintenance skill pack.
504
+ ```
505
+
506
+ ---
507
+
508
+ ## Interaction Rules
509
+
510
+ - **Be conversational.** These are deep questions about how someone thinks. Don't rapid-fire them. Ask one topic, let the user elaborate, probe for detail if they're brief.
511
+ - **Probe, don't assume.** If the user says "I want to check content pillars", ask "What are your content pillars?" and "How strictly should alignment be enforced — hard reject or just a score penalty?"
512
+ - **Skip gracefully.** If the user says "skip" or "not applicable", move on without making them feel like they're missing something.
513
+ - **Show what you'll write.** Before modifying the skill file, show the user the new section you're about to add. Ask "Does this capture your thinking? Anything to adjust?"
514
+ - **Layer 1 first, Layer 2 second.** Always start with methodology questions. Only move to parameter tuning after the conceptual layer is done (or skipped).
515
+ - **One skill per session.** Don't rush through multiple skills. Deep personalization of one skill is better than shallow configuration of five.
516
+ - **Use AskUserQuestion** for structured choices (multi-select, yes/no). Use conversational prompts for open-ended methodology questions.