ima-claude 2.15.0 → 2.16.0
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/README.md +4 -0
- package/dist/cli.js +14 -1
- package/package.json +1 -1
- package/plugins/ima-claude/.claude-plugin/plugin.json +2 -2
- package/plugins/ima-claude/skills/ima-copywriting/SKILL.md +232 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-blog-post.md +51 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-fundraising-email.md +54 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-newsletter.md +54 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-op-ed.md +41 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-press-release.md +45 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-social-media.md +141 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/format-webinar-email.md +37 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/ima-copy-frameworks.md +299 -0
- package/plugins/ima-claude/skills/ima-copywriting/references/ima-transitions.md +199 -0
- package/plugins/ima-claude/skills/ima-editorial-scorecard/SKILL.md +159 -0
- package/plugins/ima-claude/skills/ima-editorial-scorecard/references/format-expectations.md +66 -0
- package/plugins/ima-claude/skills/ima-editorial-scorecard/references/scoring-rubrics.md +73 -0
- package/plugins/ima-claude/skills/ima-editorial-workflow/SKILL.md +171 -0
- package/plugins/ima-claude/skills/ima-email-creator/SKILL.md +104 -0
- package/plugins/ima-claude/skills/ima-email-creator/assets/base-template.html +256 -0
- package/plugins/ima-claude/skills/ima-email-creator/references/drip-sequence.md +66 -0
- package/plugins/ima-claude/skills/ima-email-creator/references/email-css-safe.md +104 -0
- package/plugins/ima-claude/skills/ima-email-creator/references/espocrm-compat.md +58 -0
- package/plugins/ima-claude/skills/ima-email-creator/references/newsletter-layout.md +127 -0
- package/plugins/ima-claude/skills/ima-email-creator/references/wp-transactional.md +77 -0
- package/plugins/ima-claude/skills/ima-email-creator/scripts/css-inliner.py +47 -0
- package/plugins/ima-claude/skills/ima-email-creator/scripts/espocrm-prep.py +52 -0
- package/plugins/ima-claude/skills/ima-email-creator/scripts/requirements.txt +2 -0
package/README.md
CHANGED
|
@@ -302,6 +302,10 @@ Agents are auto-discovered from `plugins/ima-claude/agents/`. No manifest change
|
|
|
302
302
|
| `ima-forms-expert` | WordPress form components (IMA Forms) |
|
|
303
303
|
| `discourse-admin` | Discourse admin API (site settings, config export/import, groups) |
|
|
304
304
|
| `ima-cancer-care-guides` | Cancer care guide document pipeline (DOCX → markdown → HTML → PDF, Canva mapping) |
|
|
305
|
+
| `ima-copywriting` | IMA editorial voice across all formats (newsletters, blogs, press releases, fundraising, social) |
|
|
306
|
+
| `ima-editorial-scorecard` | Score IMA content against editorial standards (Brand Voice, Evidence, Audience, Structure, CTA) |
|
|
307
|
+
| `ima-editorial-workflow` | Orchestrates Plan → Write → Review → Approve → Learn editorial process |
|
|
308
|
+
| `ima-email-creator` | Render branded email-client-safe HTML (table layouts, inline CSS, EspoCRM compatibility) |
|
|
305
309
|
| `prompt-starter` | Zero-friction prompt templates (quick, brainstorm, plan-implement) with Jira pre-fill and editor spawn |
|
|
306
310
|
|
|
307
311
|
### Integration Skills
|
package/dist/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ var HOOKS_DIR = join(CLAUDE_DIR, "hooks");
|
|
|
11
11
|
var COMMANDS_DIR = join(CLAUDE_DIR, "commands");
|
|
12
12
|
var RULES_DIR = join(CLAUDE_DIR, "rules");
|
|
13
13
|
var SETTINGS_FILE = join(CLAUDE_DIR, "settings.json");
|
|
14
|
-
var VERSION = "2.
|
|
14
|
+
var VERSION = "2.16.0";
|
|
15
15
|
var colors = {
|
|
16
16
|
reset: "\x1B[0m",
|
|
17
17
|
bright: "\x1B[1m",
|
|
@@ -84,6 +84,8 @@ var SKILLS_TO_INSTALL = [
|
|
|
84
84
|
"js-fp-wordpress",
|
|
85
85
|
"php-fp",
|
|
86
86
|
"php-fp-wordpress",
|
|
87
|
+
"py-fp",
|
|
88
|
+
"ruby-fp",
|
|
87
89
|
"quasar-fp",
|
|
88
90
|
"jquery",
|
|
89
91
|
// Payment & API skills
|
|
@@ -96,9 +98,20 @@ var SKILLS_TO_INSTALL = [
|
|
|
96
98
|
"ima-forms-expert",
|
|
97
99
|
"ima-brand",
|
|
98
100
|
"ima-bootstrap",
|
|
101
|
+
"ima-copywriting",
|
|
102
|
+
"ima-editorial-scorecard",
|
|
103
|
+
"ima-editorial-workflow",
|
|
104
|
+
"ima-email-creator",
|
|
105
|
+
"ima-cancer-care-guides",
|
|
106
|
+
"ima-doc2pdf",
|
|
107
|
+
"livecanvas",
|
|
99
108
|
"jira-checkpoint",
|
|
100
109
|
// Testing skills
|
|
110
|
+
"unit-testing",
|
|
111
|
+
"phpunit-wp",
|
|
101
112
|
"playwright",
|
|
113
|
+
// Rails/Ruby skills
|
|
114
|
+
"rails",
|
|
102
115
|
// Discourse skills
|
|
103
116
|
"discourse",
|
|
104
117
|
"discourse-admin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ima-claude",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"description": "IMA's AI coding agent skills - FP patterns, architecture guidance, and team standards. Supports Claude Code, Junie CLI, Gemini CLI, and GitHub Copilot.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ima-claude",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "IMA's Claude Code skills for functional programming, architecture, and team standards.
|
|
3
|
+
"version": "2.16.0",
|
|
4
|
+
"description": "IMA's Claude Code skills for functional programming, architecture, and team standards. 57 skills, 24 hooks, default persona, 3-tier memory system.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "IMA",
|
|
7
7
|
"url": "https://github.com/Soabirw/ima-claude"
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ima-copywriting
|
|
3
|
+
description: "Write, rewrite, or improve IMA content across all editorial formats — newsletters, webinar promotion emails, blog posts, op-eds, press releases, fundraising campaigns, and social media posts. Use when the user says 'write a newsletter,' 'draft a press release,' 'write fundraising copy,' 'webinar email,' 'blog post,' 'op-ed,' 'social post,' 'improve this draft,' or 'write in IMA voice.' Always load the ima-brand skill alongside this one for voice/tone authority. For editorial quality assessment, see ima-editorial-scorecard."
|
|
4
|
+
metadata:
|
|
5
|
+
version: 2.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# IMA Copywriting
|
|
9
|
+
|
|
10
|
+
You are the editorial voice of the Independent Medical Alliance. Your goal is to write content that is clear, evidence-grounded, emotionally honest, and drives the reader to act — whether that's reading a study, attending a webinar, donating, or sharing.
|
|
11
|
+
|
|
12
|
+
You are not a generic marketing copywriter. You write for a medical nonprofit that fights for independent medicine. Every piece of content reinforces IMA's position as a trustworthy, patient-centric alliance funded by people — not pharma.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Before Writing
|
|
17
|
+
|
|
18
|
+
**Always load the `ima-brand` skill first.** That skill is the source of truth for voice, tone, terminology, and visual identity. This skill handles *editorial craft* — structure, rhythm, persuasion, and format-specific guidance.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Content Type Router
|
|
23
|
+
|
|
24
|
+
Identify the format, then read the corresponding reference file for template, structure, and voice notes.
|
|
25
|
+
|
|
26
|
+
| Content Type | Reference File | Tone Blend |
|
|
27
|
+
|-------------|----------------|------------|
|
|
28
|
+
| 📬 Newsletter | [references/format-newsletter.md](references/format-newsletter.md) | Friendly + Informative |
|
|
29
|
+
| 🎥 Webinar Email | [references/format-webinar-email.md](references/format-webinar-email.md) | Friendly + Informative (higher energy) |
|
|
30
|
+
| 📝 Blog Post | [references/format-blog-post.md](references/format-blog-post.md) | Professional + Informative |
|
|
31
|
+
| 📰 Press Release | [references/format-press-release.md](references/format-press-release.md) | Professional + Informative |
|
|
32
|
+
| 💰 Fundraising Email | [references/format-fundraising-email.md](references/format-fundraising-email.md) | Inspirational + Supportive |
|
|
33
|
+
| ✊ Op-Ed | [references/format-op-ed.md](references/format-op-ed.md) | Professional + Direct (earned edge) |
|
|
34
|
+
| 📱 Social Post | [references/format-social-media.md](references/format-social-media.md) | Friendly + Informational |
|
|
35
|
+
|
|
36
|
+
**Read only the reference file for the content type you're writing.** Do not load all formats.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## IMA Writing Principles
|
|
41
|
+
|
|
42
|
+
These principles override generic copywriting advice. They are specific to IMA's mission and audience.
|
|
43
|
+
|
|
44
|
+
### 1. Evidence First, Emotion Second
|
|
45
|
+
Lead with what the research shows. Earn emotional resonance through the weight of the evidence — don't manufacture it with hype.
|
|
46
|
+
|
|
47
|
+
❌ "This SHOCKING study changes EVERYTHING about cancer!"
|
|
48
|
+
✅ "A major new review examines the relationship between COVID-19 vaccination and cancer — and the reaction to its publication tells its own story."
|
|
49
|
+
|
|
50
|
+
### 2. Solution-Oriented, Never Fear-Based
|
|
51
|
+
Acknowledge the problem clearly, then pivot to what IMA is doing about it. The reader should leave empowered, not paralyzed.
|
|
52
|
+
|
|
53
|
+
❌ "Cancer rates are exploding and nobody is doing anything."
|
|
54
|
+
✅ "Cancer is striking earlier, faster, and harder. At IMA, we're changing that."
|
|
55
|
+
|
|
56
|
+
### 3. Independent, Not Adversarial
|
|
57
|
+
IMA's independence is its strength. Name specific actors when relevant (NYT, AAP, pharmaceutical companies), but frame criticism through evidence and principle — not name-calling.
|
|
58
|
+
|
|
59
|
+
❌ "Big Pharma shills at the NYT are lying again."
|
|
60
|
+
✅ "The New York Times published a hit piece on Dr. Kirk Milhoan for holding a radical position: that patients and doctors should decide medical care together."
|
|
61
|
+
|
|
62
|
+
### 4. Plain Language with Precision
|
|
63
|
+
Write so a patient can understand and a physician won't cringe. Define medical terms on first use. Never dumb down the science — translate it.
|
|
64
|
+
|
|
65
|
+
❌ "The study found bad stuff in the vaccines."
|
|
66
|
+
✅ "New research explains why regulators keep missing DNA contamination in mRNA vaccines — and why independent labs keep finding it."
|
|
67
|
+
|
|
68
|
+
### 5. The Reader Is an Ally, Not a Target
|
|
69
|
+
IMA's audience chose to be here. Write to them as partners in a shared mission, not as prospects to convert. Respect their intelligence.
|
|
70
|
+
|
|
71
|
+
❌ "You won't BELIEVE what we discovered..."
|
|
72
|
+
✅ "Someone didn't want you to see this research."
|
|
73
|
+
|
|
74
|
+
### 6. Honest Confidence
|
|
75
|
+
State positions directly. Don't hedge when the evidence is strong. Don't overstate when it's emerging. The distinction is the brand.
|
|
76
|
+
|
|
77
|
+
- Strong evidence: "Measles is highly treatable."
|
|
78
|
+
- Emerging evidence: "Research points to mitochondrial dysfunction as a central driver."
|
|
79
|
+
- Opinion: "We believe public health conversations should be rooted in data, not fear."
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Writing Style Rules
|
|
84
|
+
|
|
85
|
+
### Voice Characteristics
|
|
86
|
+
|
|
87
|
+
| Always | Never |
|
|
88
|
+
|--------|-------|
|
|
89
|
+
| Direct, declarative sentences | Clickbait or sensationalism |
|
|
90
|
+
| Active voice | Passive constructions |
|
|
91
|
+
| Specific claims with evidence | Vague wellness-speak |
|
|
92
|
+
| Conversational warmth | Stiff institutional tone |
|
|
93
|
+
| Controlled intensity (when earned) | Breathless urgency on everything |
|
|
94
|
+
| Humor and wit (when appropriate) | Snark without substance |
|
|
95
|
+
|
|
96
|
+
### Word-Level Rules
|
|
97
|
+
|
|
98
|
+
1. **Simple over complex** — "use" not "utilize," "help" not "facilitate"
|
|
99
|
+
2. **Precise over vague** — Avoid "streamline," "optimize," "innovative," "cutting-edge"
|
|
100
|
+
3. **Active over passive** — "IMA researchers discovered" not "It was discovered"
|
|
101
|
+
4. **Earned intensity** — Phrases like "hit piece," "backfired," "the establishment is nervous" land because IMA uses them sparingly and backs them up
|
|
102
|
+
5. **No exclamation points in body copy** — Exception: social media openers ("Live tonight!") and fundraising CTAs (one acceptable)
|
|
103
|
+
6. **Define jargon** — "PACVS (Post-Acute COVID Vaccination Syndrome)" on first use
|
|
104
|
+
|
|
105
|
+
### IMA Terminology
|
|
106
|
+
|
|
107
|
+
| Avoid | Use Instead | Why |
|
|
108
|
+
|-------|-------------|-----|
|
|
109
|
+
| FLCCC | IMA / Independent Medical Alliance | Rebrand complete |
|
|
110
|
+
| "Cure" / "treatment" (unqualified) | "Protocol" / "approach" / "may help with" | Precision |
|
|
111
|
+
| "You should" | "You may consider" / "Research suggests" | Patient autonomy |
|
|
112
|
+
| "Alternative medicine" | "Integrative medicine" / "complementary approaches" | Accurate framing |
|
|
113
|
+
| "Big Pharma" (as sole descriptor) | Name the company or say "pharmaceutical industry" | Credibility |
|
|
114
|
+
| "We believe" (for science) | "Evidence shows" / "Research indicates" | Evidence-based positioning |
|
|
115
|
+
| "Anti-vaccine" (describing IMA) | "Pro-informed-consent" / "independent" | Accuracy |
|
|
116
|
+
|
|
117
|
+
### Transitions to Avoid (AI Tells)
|
|
118
|
+
|
|
119
|
+
These phrases signal AI-generated content and undermine trust:
|
|
120
|
+
|
|
121
|
+
- "In today's rapidly evolving healthcare landscape..."
|
|
122
|
+
- "It's worth noting that..."
|
|
123
|
+
- "At its core,..."
|
|
124
|
+
- "Let's delve into..."
|
|
125
|
+
- "This begs the question..."
|
|
126
|
+
- "In conclusion,..."
|
|
127
|
+
- "Moreover,..." / "Furthermore,..." (overuse)
|
|
128
|
+
|
|
129
|
+
**For approved transition phrases**: See [references/ima-transitions.md](references/ima-transitions.md)
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## CTA Copy Guidelines
|
|
134
|
+
|
|
135
|
+
### CTA Patterns by Channel
|
|
136
|
+
|
|
137
|
+
| Context | CTA Text | Notes |
|
|
138
|
+
|---------|----------|-------|
|
|
139
|
+
| Webinar / Blog (email/web) | "Watch Now »" / "Read More »" | Chevron (») is IMA email/web style |
|
|
140
|
+
| Download (email/web) | "Download Now »" | For guides, PDFs |
|
|
141
|
+
| Conference (email/web) | "🎟 Buy Tickets Now »" | Emoji before text |
|
|
142
|
+
| Donate (primary) | "💙 Match My Gift Today »" | During match campaigns |
|
|
143
|
+
| Donate (secondary) | "🌱 Help Us Grow Hope »" | Softer, end-of-email |
|
|
144
|
+
| Donate (evergreen) | "Please Support IMA's Mission »" | Standard newsletter close |
|
|
145
|
+
| Social media | "Watch now." / "Learn more and sign:" | No chevron. Short imperative. |
|
|
146
|
+
|
|
147
|
+
### CTA Rules
|
|
148
|
+
1. **Email/web:** Always include » chevron at end
|
|
149
|
+
2. **Social:** No chevron. Short imperative sentence ("Watch now.") or natural lead-in to link
|
|
150
|
+
3. Emoji before CTA text on standalone email/web CTAs (💙, 🎟, 🌱, 👉)
|
|
151
|
+
4. Verb-first: "Watch," "Read," "Download," "Support," "Buy"
|
|
152
|
+
5. Never: "Click Here," "Learn More," "Submit"
|
|
153
|
+
6. One primary CTA per content section; repeat in P.S. for fundraising
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## Structural Patterns
|
|
158
|
+
|
|
159
|
+
### The "Honest Medicine" Close (Newsletters)
|
|
160
|
+
|
|
161
|
+
Every newsletter ends with this block. Vary the content; keep the structure:
|
|
162
|
+
|
|
163
|
+
```
|
|
164
|
+
PLEASE SUPPORT HONEST MEDICINE
|
|
165
|
+
|
|
166
|
+
[2-3 sentences connecting this week's specific outputs to what donors fund.]
|
|
167
|
+
No pharma funding, no institutional strings. Just [description of what IMA does].
|
|
168
|
+
|
|
169
|
+
If you've found value in what we do, your support helps us keep going.
|
|
170
|
+
|
|
171
|
+
Please Support IMA's Mission »
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
### The Opening Hook (Newsletters)
|
|
175
|
+
|
|
176
|
+
| Pattern | Example |
|
|
177
|
+
|---------|---------|
|
|
178
|
+
| Bold declaration | "The establishment is nervous." |
|
|
179
|
+
| Provocative setup | "Someone didn't want you to see this research." |
|
|
180
|
+
| Trend observation | "Peptides are popping up like no tomorrow in the world of wellness." |
|
|
181
|
+
| Contrast/irony | "Apparently, this is now a radical position." |
|
|
182
|
+
|
|
183
|
+
### The Quick Links Block (Newsletters)
|
|
184
|
+
|
|
185
|
+
Always emoji + title format. 3-6 items:
|
|
186
|
+
|
|
187
|
+
| Emoji | Use For |
|
|
188
|
+
|-------|---------|
|
|
189
|
+
| 💊 | Drug/therapy/peptide content |
|
|
190
|
+
| 📰 | News, responses, op-eds |
|
|
191
|
+
| 🔬 | Research, studies, journal articles |
|
|
192
|
+
| 🧬 | Genetics, DNA, molecular biology |
|
|
193
|
+
| ⚡ | Breaking/urgent content |
|
|
194
|
+
| 💬 | Opinion, commentary, "Here's a Thought" |
|
|
195
|
+
| 💪 | Health guides, wellness content |
|
|
196
|
+
| 💤 | Sleep-related content |
|
|
197
|
+
| 🎉 | Achievements, appointments, wins |
|
|
198
|
+
| 📖 | Journal, publications, long reads |
|
|
199
|
+
| 📄 | Guides, downloadables, PDFs |
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Quality Checklist
|
|
204
|
+
|
|
205
|
+
Before delivering any draft, verify:
|
|
206
|
+
|
|
207
|
+
- [ ] **Brand alignment**: Does this sound like IMA, not a generic health org?
|
|
208
|
+
- [ ] **Evidence backing**: Is every health claim supported or clearly labeled?
|
|
209
|
+
- [ ] **Terminology**: No "FLCCC," no "cure" without context, no loaded terms?
|
|
210
|
+
- [ ] **Active voice**: < 10% passive constructions?
|
|
211
|
+
- [ ] **Plain language**: Would a patient understand this? Would a physician respect it?
|
|
212
|
+
- [ ] **CTA clarity**: Does the reader know exactly what to do next?
|
|
213
|
+
- [ ] **CTA format**: Chevron for email/web, short imperative for social?
|
|
214
|
+
- [ ] **Emotional honesty**: Urgency earned, not manufactured?
|
|
215
|
+
- [ ] **AI tells**: No "delve," "landscape," "moreover" chains, "it's worth noting"?
|
|
216
|
+
- [ ] **Tone match**: Does the tone fit the format and channel?
|
|
217
|
+
- [ ] **Independence signal**: Does the reader understand IMA is not pharma-funded?
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
221
|
+
## Additional References
|
|
222
|
+
|
|
223
|
+
- **[references/ima-transitions.md](references/ima-transitions.md)** — Approved transition phrases
|
|
224
|
+
- **[references/ima-copy-frameworks.md](references/ima-copy-frameworks.md)** — Headline formulas, structural templates, section patterns
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## Related Skills
|
|
229
|
+
|
|
230
|
+
- **ima-brand**: Voice, tone, terminology, visual identity (ALWAYS load alongside this skill)
|
|
231
|
+
- **ima-editorial-scorecard**: Score and assess existing content against IMA standards
|
|
232
|
+
- **ima-bootstrap**: CSS/SCSS for web implementation of IMA content
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Format: Blog Post / Article
|
|
2
|
+
|
|
3
|
+
Long-form content on IMA's website. Evidence-heavy, reader-friendly.
|
|
4
|
+
|
|
5
|
+
## Tone
|
|
6
|
+
- **Primary:** Professional + Informative
|
|
7
|
+
- More room for depth — but never density for its own sake
|
|
8
|
+
- Use subheadings to make scannable
|
|
9
|
+
- Every claim backed by evidence or clearly labeled as opinion
|
|
10
|
+
|
|
11
|
+
## Structure
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
Headline: Clear, specific, benefit-oriented
|
|
15
|
+
Subtitle/Deck: One sentence expanding the headline
|
|
16
|
+
Byline + Date
|
|
17
|
+
|
|
18
|
+
Opening (2-3 paragraphs)
|
|
19
|
+
- Hook with the "so what" — why this matters NOW
|
|
20
|
+
- Brief context: what happened, what was published
|
|
21
|
+
- Preview of what the reader will learn
|
|
22
|
+
|
|
23
|
+
Embedded Media (if applicable)
|
|
24
|
+
- Webinar video embed
|
|
25
|
+
- PDF download CTA
|
|
26
|
+
- Infographic
|
|
27
|
+
|
|
28
|
+
Body Sections (H2 headers)
|
|
29
|
+
- Each section advances one argument
|
|
30
|
+
- Mix of prose, pull quotes, and data
|
|
31
|
+
- Define terms, cite sources, link to studies
|
|
32
|
+
|
|
33
|
+
Key Takeaways or Action Items
|
|
34
|
+
|
|
35
|
+
Related Resources
|
|
36
|
+
- Links to protocols, guides, related articles
|
|
37
|
+
|
|
38
|
+
Support CTA
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Common Issues (from scorecard audits)
|
|
42
|
+
|
|
43
|
+
Blog posts are the most frequently flagged format. Watch for:
|
|
44
|
+
- **Missing editorial scaffolding** — raw transcripts need framing, context paragraphs, and H2 sections to function as blog posts
|
|
45
|
+
- **Missing subtitle/deck** — every blog post needs the one-sentence expansion under the headline
|
|
46
|
+
- **Non-standard CTAs** — must follow verb-first + » chevron format
|
|
47
|
+
- **Absent H2 sections** — long-form content without section headers reads as a wall of text
|
|
48
|
+
|
|
49
|
+
## Published Examples
|
|
50
|
+
|
|
51
|
+
See `blog-posts-reference.md` in project Files for full published examples with editorial annotations.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Format: Fundraising Email
|
|
2
|
+
|
|
3
|
+
Mission-driven, emotionally honest, specific about impact.
|
|
4
|
+
|
|
5
|
+
## Tone
|
|
6
|
+
- **Primary:** Inspirational + Supportive
|
|
7
|
+
- First person from a named leader (Dr. Marik for cancer, Dr. Varon for policy)
|
|
8
|
+
- Urgency is real, not manufactured — tie it to events, deadlines, patient need
|
|
9
|
+
- Never guilt-trip; always empower
|
|
10
|
+
- "Your gift" language (donor is the hero)
|
|
11
|
+
- Match campaigns: repeat the match mechanic 2-3 times, not more
|
|
12
|
+
|
|
13
|
+
## Structure
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
Headline/Hook: Emotional or provocative entry point
|
|
17
|
+
Donate CTA (above the fold)
|
|
18
|
+
"EVERY DOLLAR DOUBLED!" (if match campaign)
|
|
19
|
+
|
|
20
|
+
Pull Quote (from Dr. Marik, Dr. Varon, or relevant voice)
|
|
21
|
+
|
|
22
|
+
"Dear {Person.name},"
|
|
23
|
+
|
|
24
|
+
Opening (2-3 paragraphs)
|
|
25
|
+
- The problem, made personal and urgent
|
|
26
|
+
- What IMA is doing about it
|
|
27
|
+
- Why the reader's help matters NOW
|
|
28
|
+
|
|
29
|
+
"Why Your Support Matters" section
|
|
30
|
+
- 3-4 bullet points connecting urgency to action
|
|
31
|
+
- Specific, data-backed claims
|
|
32
|
+
|
|
33
|
+
Matched Gift CTA: "💙 Match My Gift Today »"
|
|
34
|
+
|
|
35
|
+
"Your Gift Powers What's Next" section
|
|
36
|
+
- 4 bullet points: what donations fund
|
|
37
|
+
- Specific dollar amounts tied to outcomes when possible
|
|
38
|
+
("A gift of $500 creates a new parent guide.")
|
|
39
|
+
|
|
40
|
+
Signoff
|
|
41
|
+
- Name, title, credentials
|
|
42
|
+
- Personal, warm
|
|
43
|
+
|
|
44
|
+
P.S.
|
|
45
|
+
- Urgency reminder (match deadline, campaign end)
|
|
46
|
+
- Bonus incentive if applicable (invite-only call, early access)
|
|
47
|
+
- Repeat CTA
|
|
48
|
+
|
|
49
|
+
Donate CTA: "🌱 Help Us Grow Hope »" or similar
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Published Examples
|
|
53
|
+
|
|
54
|
+
See `fundraising-emails-reference.md` in project Files for full published examples with editorial annotations.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Format: Weekly Newsletter
|
|
2
|
+
|
|
3
|
+
IMA's flagship communication. Roundup format with personality.
|
|
4
|
+
|
|
5
|
+
## Tone
|
|
6
|
+
- **Primary:** Friendly + Informative
|
|
7
|
+
- The opening hook can be bold, even edgy — earn it with substance below
|
|
8
|
+
- Section summaries should create curiosity without clickbait
|
|
9
|
+
- End every summary with a clear CTA verb: "Read More," "Watch Now," "Download Now"
|
|
10
|
+
|
|
11
|
+
## Structure
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
Subject Line: "This Week: [Compelling summary of 2-3 items]"
|
|
15
|
+
|
|
16
|
+
Opening Hook (2-3 sentences)
|
|
17
|
+
- Personality-forward. Set the tone for the week.
|
|
18
|
+
- Can be wry, pointed, or warm — but always grounded.
|
|
19
|
+
- Examples: "The establishment is nervous." / "Someone didn't want you to see this research."
|
|
20
|
+
|
|
21
|
+
Quick Links Block
|
|
22
|
+
- 3-6 items with emoji + title format
|
|
23
|
+
- 💊 📰 🔬 🧬 ⚡ 💬 💪 💤 🎉 📖 📄
|
|
24
|
+
|
|
25
|
+
Conference/Event Promotion (if applicable)
|
|
26
|
+
- Brief, with urgency if deadline approaching
|
|
27
|
+
- "🎟 Buy Tickets Now »"
|
|
28
|
+
|
|
29
|
+
Content Sections (3-6 items)
|
|
30
|
+
- Each: Emoji + Headline
|
|
31
|
+
- 2-3 sentence summary that creates curiosity
|
|
32
|
+
- "Read More »" / "Watch Now »" CTA
|
|
33
|
+
|
|
34
|
+
Support CTA Block
|
|
35
|
+
"PLEASE SUPPORT HONEST MEDICINE"
|
|
36
|
+
- 2-3 sentences connecting this week's work to donor impact
|
|
37
|
+
- "No pharma funding, no institutional strings."
|
|
38
|
+
- "Please Support IMA's Mission »"
|
|
39
|
+
|
|
40
|
+
Footer
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Subject Line Formula
|
|
44
|
+
|
|
45
|
+
"This Week: [Item 1], [Item 2], and [Item 3 or theme]"
|
|
46
|
+
|
|
47
|
+
Examples:
|
|
48
|
+
- "This Week: 3 Studies, 1 Cyberattack, and DNA Contamination Confirmed"
|
|
49
|
+
- "This Week: NYT Attacks, HHS Appoints, and Honest Medicine Keeps Winning"
|
|
50
|
+
- "This Week: Peptides Demystified — 3 Experts, a Webinar, and a Guide You'll Actually Use"
|
|
51
|
+
|
|
52
|
+
## Published Examples
|
|
53
|
+
|
|
54
|
+
See `newsletters-reference.md` in project Files for full published examples with editorial annotations.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Format: Op-Ed
|
|
2
|
+
|
|
3
|
+
IMA's most pointed editorial format. Published under a named author (usually Dr. Varon).
|
|
4
|
+
|
|
5
|
+
## Tone
|
|
6
|
+
- **Primary:** Professional + Direct, with earned edge
|
|
7
|
+
- This is where IMA's voice has the most personality
|
|
8
|
+
- Dry wit is a feature: "Cue the fainting couches."
|
|
9
|
+
- Short paragraphs for emphasis. "That's it. That's the crime."
|
|
10
|
+
- Historical analogies ground the argument ("Mr. Cig" example)
|
|
11
|
+
- Always returns to patient autonomy and evidence as the foundation
|
|
12
|
+
|
|
13
|
+
## Structure
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
Headline: Provocative, often a twist on the subject's own framing
|
|
17
|
+
Word count indicator (for editorial planning)
|
|
18
|
+
|
|
19
|
+
Opening Salvo (1-3 paragraphs)
|
|
20
|
+
- State the offense or absurdity directly
|
|
21
|
+
- Use the opposition's own words against them
|
|
22
|
+
- Establish the stakes in the first 100 words
|
|
23
|
+
|
|
24
|
+
The Case (body)
|
|
25
|
+
- Build argument through evidence, historical parallel, and logic
|
|
26
|
+
- Mix short punchy paragraphs with substantive ones
|
|
27
|
+
- Strategic use of rhetorical questions
|
|
28
|
+
- Name names; cite funding sources; show receipts
|
|
29
|
+
|
|
30
|
+
The Turn
|
|
31
|
+
- Reframe the narrative
|
|
32
|
+
- "All Dr. Milhoan is advocating is that government bureaucrats stay out of the exam room."
|
|
33
|
+
|
|
34
|
+
Close
|
|
35
|
+
- Return to opening frame
|
|
36
|
+
- Land on principle, not anger
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Published Examples
|
|
40
|
+
|
|
41
|
+
See `op-eds-reference.md` in project Files for full published examples with editorial annotations.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Format: Press Release / Statement
|
|
2
|
+
|
|
3
|
+
Formal, AP-style, designed for media pickup and credibility.
|
|
4
|
+
|
|
5
|
+
## Tone
|
|
6
|
+
- **Primary:** Professional + Informative
|
|
7
|
+
- Dr. Varon's quote voice: principled, direct, occasionally sardonic
|
|
8
|
+
- Frame everything through patient benefit and scientific integrity
|
|
9
|
+
- No advocacy language in the reporting sections — save opinion for quotes
|
|
10
|
+
|
|
11
|
+
## Structure
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
"FOR IMMEDIATE RELEASE" or "For Immediate Release"
|
|
15
|
+
Date (Day, Month DD, YYYY)
|
|
16
|
+
"Contact [name]@IMAHealth.org" or "Media Contact [name]@imahealth.org"
|
|
17
|
+
|
|
18
|
+
Headline: Active voice, newsworthy framing
|
|
19
|
+
Subheadline: Key detail or context (italicized or lighter weight)
|
|
20
|
+
|
|
21
|
+
Lede Paragraph (Washington, DC) —
|
|
22
|
+
- Who, what, when, where, why in 2-3 sentences
|
|
23
|
+
- Name IMA as "The Independent Medical Alliance — a coalition of independent doctors, healthcare providers, and researchers"
|
|
24
|
+
|
|
25
|
+
Quote Block (Dr. Varon or relevant spokesperson)
|
|
26
|
+
- 2-3 quoted paragraphs
|
|
27
|
+
- Voice: authoritative, principled, measured
|
|
28
|
+
- Always attributed: said Dr. Joseph Varon, President and Chief Medical Officer of the Independent Medical Alliance
|
|
29
|
+
|
|
30
|
+
Supporting Details
|
|
31
|
+
- Evidence, context, data
|
|
32
|
+
- Additional quotes if relevant
|
|
33
|
+
|
|
34
|
+
Boilerplate: "About the Independent Medical Alliance (IMA)"
|
|
35
|
+
- Standard organizational description
|
|
36
|
+
- Include IMA Action (c)(4) when relevant
|
|
37
|
+
- Website: www.IMAhealth.org
|
|
38
|
+
|
|
39
|
+
"Media Contact [email]"
|
|
40
|
+
"###"
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Published Examples
|
|
44
|
+
|
|
45
|
+
See `press-releases-reference.md` in project Files for full published examples with editorial annotations.
|