$npx -y skills add yoyothesheep/claude-skills --skill distribute-socialSocial distribution for a newly published post. Drafts Reddit comments/posts and a LinkedIn post in one run. Invokes reddit-content and linkedin-content as sub-skills. Use when a post is published and ready to distribute to social channels.
| 1 | # Distribute Social |
| 2 | |
| 3 | Runs after `publish-checklist` passes on a new post. Produces ready-to-use drafts for Reddit and LinkedIn in a single run. |
| 4 | |
| 5 | **Sub-skills invoked:** |
| 6 | - `distribute-social/reddit-content.md` — finds live threads, drafts comment text |
| 7 | - `distribute-social/linkedin-content.md` — writes LinkedIn post draft |
| 8 | |
| 9 | --- |
| 10 | |
| 11 | ## Inputs Required |
| 12 | |
| 13 | Ask the user for: |
| 14 | - **Post slug** |
| 15 | - **Post title** — display title |
| 16 | - **Post URL** — full absolute URL |
| 17 | - **Key claim** — 1–2 sentences: the most specific, data-backed claim in the post |
| 18 | - **Target persona** — who this post is for (e.g. "mid-career white-collar worker anxious about AI") |
| 19 | - **Best data point** — one specific number from the post (for LinkedIn opening) |
| 20 | |
| 21 | --- |
| 22 | |
| 23 | ## Workflow |
| 24 | |
| 25 | Run both sub-skills in parallel after gathering inputs. |
| 26 | |
| 27 | ### Step 1: Reddit Drafts |
| 28 | |
| 29 | Invoke `reddit-content` with: post URL, title, key claim. |
| 30 | |
| 31 | The skill searches for live threads (≤48h old) where a comment is on-topic, drafts ready-to-paste comment text, and saves output to `{REDDIT_OUTPUT_PATH}reddit_drafts_[slug]_[date].md`. |
| 32 | |
| 33 | Output: saved `.md` file path. User pastes and posts manually. |
| 34 | |
| 35 | ### Step 2: LinkedIn Draft |
| 36 | |
| 37 | Invoke `linkedin-content` with: post title, key claim, target persona, best data point, post URL. |
| 38 | |
| 39 | Output: one ready-to-post LinkedIn draft with graphic suggestions. |
| 40 | |
| 41 | --- |
| 42 | |
| 43 | ## Output Summary |
| 44 | |
| 45 | ``` |
| 46 | ## Social Distribution — [Post Title] — [Date] |
| 47 | |
| 48 | - Reddit: [N] drafts saved → [file path] |
| 49 | - LinkedIn: draft ready (graphic needed: yes/no) |
| 50 | ``` |