refactor(linkedin): single newsletter entry + skill trigger + router row (S11)
This commit is contained in:
parent
f24c6e30f7
commit
e031fae3de
5 changed files with 31 additions and 74 deletions
|
|
@ -79,6 +79,7 @@ Present these options to the user:
|
|||
| `/linkedin:pipeline` | Full end-to-end workflow from idea to post-publish analysis |
|
||||
| `/linkedin:carousel` | Create structured multi-slide carousel with visual layout guidance |
|
||||
| `/linkedin:video` | Create video scripts with hook, body, CTA, captions, and thumbnail suggestions |
|
||||
| `/linkedin:newsletter` | Long-form orchestrator — newsletter editions, essays, series articles (research → draft → fact-check → persona-review → lock → delivery). The single long-form entry point |
|
||||
| `/linkedin:batch` | Create a full week of content in one session |
|
||||
| `/linkedin:calendar` | View and manage your post scheduling queue |
|
||||
| `/linkedin:publish` | Mark scheduled posts as published |
|
||||
|
|
@ -110,7 +111,7 @@ Present these options to the user:
|
|||
| `/linkedin:monetize` | Monetization strategy for 10K+ followers |
|
||||
| `/linkedin:speaking` | Generate speaking opportunities via LinkedIn |
|
||||
| `/linkedin:collab` | Orchestrate collaborations with other thought leaders |
|
||||
| `/linkedin:multiplatform` | Adapt content for Twitter/X, newsletter, blog, YouTube |
|
||||
| `/linkedin:multiplatform` | Adapt content for Twitter/X, slides, YouTube (short-form/cross-format; long-form → `/linkedin:newsletter`) |
|
||||
|
||||
## Ask the User
|
||||
|
||||
|
|
@ -142,6 +143,7 @@ Use AskUserQuestion to ask:
|
|||
21. **A/B test** — Design, track, or analyze content experiments
|
||||
22. **Create a video** — Script for talking head, screen recording, or slideshow
|
||||
23. **Mark published** — I just published a scheduled post
|
||||
24. **Write long-form** — Newsletter edition, essay, or series article (`/linkedin:newsletter`)
|
||||
|
||||
Based on their answer, guide them to the appropriate command or invoke it directly.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
name: linkedin:multiplatform
|
||||
description: |
|
||||
Adapts LinkedIn content for other platforms. Write once, publish everywhere: LinkedIn to
|
||||
Twitter/X threads, newsletter sections, blog posts, presentation slides, and YouTube scripts.
|
||||
Adapts LinkedIn content for other short-form and cross-format platforms. Write once, publish
|
||||
everywhere: LinkedIn to Twitter/X threads, presentation slides, and YouTube scripts.
|
||||
Long-form (newsletters, blog posts, essays) is owned by /linkedin:newsletter — not this command.
|
||||
Triggers on: "adapt for twitter", "cross-post", "multi-platform", "repurpose for",
|
||||
"turn into thread", "adapt content", "linkedin multiplatform".
|
||||
allowed-tools:
|
||||
|
|
@ -25,12 +26,15 @@ Ask the user to provide their LinkedIn content or read from drafts:
|
|||
|
||||
## Step 1: Select Target Platform
|
||||
|
||||
> **Long-form lives elsewhere.** Newsletters, blog posts, and essays are produced by
|
||||
> `/linkedin:newsletter` — the single long-form entry point — not here. This command
|
||||
> covers short-form and cross-format adaptation only. If the user asks to turn a post
|
||||
> into a newsletter, a blog article, or an essay, route them to `/linkedin:newsletter`.
|
||||
|
||||
Use AskUserQuestion:
|
||||
1. **Twitter/X thread** — Break into thread format
|
||||
2. **Newsletter section** — Expand for email audience
|
||||
3. **Blog post** — SEO-optimized long-form
|
||||
4. **Presentation slides** — Visual deck format
|
||||
5. **YouTube script** — Video format adaptation
|
||||
2. **Presentation slides** — Visual deck format
|
||||
3. **YouTube script** — Video format adaptation
|
||||
|
||||
## Adaptation Templates
|
||||
|
||||
|
|
@ -59,67 +63,6 @@ Thread tips:
|
|||
- Add relevant hashtags to first tweet only
|
||||
```
|
||||
|
||||
### LinkedIn → Newsletter Section
|
||||
|
||||
```
|
||||
## [Section Title]
|
||||
|
||||
[Expanded introduction — 150 words]
|
||||
[Context that email readers might not have]
|
||||
|
||||
### [Key Point 1]
|
||||
[Expanded with examples — 200 words]
|
||||
|
||||
### [Key Point 2]
|
||||
[Expanded with data — 200 words]
|
||||
|
||||
### [Key Point 3]
|
||||
[Expanded with practical steps — 200 words]
|
||||
|
||||
**Key Takeaway:** [One sentence summary]
|
||||
|
||||
---
|
||||
Newsletter tips:
|
||||
- More depth than LinkedIn post
|
||||
- Can include links freely
|
||||
- Personal tone for email
|
||||
- Segment-specific adjustments
|
||||
- Target: 800-1,200 words
|
||||
```
|
||||
|
||||
### LinkedIn → Blog Post
|
||||
|
||||
```
|
||||
# [SEO-Optimized Title]
|
||||
|
||||
**Meta description:** [155 chars for SEO]
|
||||
**Target keyword:** [primary keyword]
|
||||
|
||||
## Introduction
|
||||
[Hook + context — 200 words]
|
||||
|
||||
## [H2: Key Point 1]
|
||||
[Detailed explanation — 400 words]
|
||||
[Include: examples, data, screenshots]
|
||||
|
||||
## [H2: Key Point 2]
|
||||
[Same depth]
|
||||
|
||||
## [H2: Key Point 3]
|
||||
[Same depth]
|
||||
|
||||
## Conclusion
|
||||
[Summary + CTA — 200 words]
|
||||
|
||||
---
|
||||
Blog tips:
|
||||
- SEO-optimized headings
|
||||
- Internal and external links OK
|
||||
- Images/diagrams where relevant
|
||||
- Target: 1,500-2,500 words
|
||||
- Include author bio
|
||||
```
|
||||
|
||||
### LinkedIn → Presentation Slides
|
||||
|
||||
```
|
||||
|
|
@ -175,5 +118,6 @@ printf '%s' '<ADAPTED_CONTENT>' | node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/clipb
|
|||
|
||||
- `${CLAUDE_PLUGIN_ROOT}/references/linkedin-formats.md`
|
||||
- `${CLAUDE_PLUGIN_ROOT}/references/engagement-frameworks.md`
|
||||
- `${CLAUDE_PLUGIN_ROOT}/references/newsletter-strategy-guide.md`
|
||||
- `${CLAUDE_PLUGIN_ROOT}/references/articles-strategy-guide.md`
|
||||
|
||||
> Long-form references (`newsletter-strategy-guide.md`, `articles-strategy-guide.md`)
|
||||
> are used by `/linkedin:newsletter`, the single long-form entry point.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue