skills/social-post/SKILL.md
# Social Post — Cross-Platform Content Distribution Post content across multiple social media platforms: X (Twitter), LinkedIn, Threads, Hacker News, Reddit, Instagram, and DEV.to. ## Trigger When the user asks to post content across social media, distribute a post, share on multiple platforms, or says "social post", "cross-post", "share everywhere". ## Prerequisites ### API-based (automated) - **X/Twitter:** OAuth 1.0a keys at `~/.config/x/.env` — use `/x-post` skill - **LinkedIn:** OAuth
npx skillsauth add razbakov/skills skills/social-postInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Post content across multiple social media platforms: X (Twitter), LinkedIn, Threads, Hacker News, Reddit, Instagram, and DEV.to.
When the user asks to post content across social media, distribute a post, share on multiple platforms, or says "social post", "cross-post", "share everywhere".
~/.config/x/.env — use /x-post skill~/.config/linkedin/.env (CLIENT_ID, CLIENT_SECRET, ACCESS_TOKEN, PERSON_ID)~/.config/telegram/session (credentials in $TELEGRAM_API_ID / $TELEGRAM_API_HASH env vars). Channels from CLAUDE.md Personal Info.tabs_context_mcp) — user's Threads handle is in CLAUDE.md Personal Infotabs_context_mcp) — user is signed intabs_context_mcp) — user is signed inEach platform needs different formatting. From the user's raw content, generate:
| Platform | Format | Char Limit | Notes |
|----------|--------|-----------|-------|
| X/Twitter | Thread (5-8 tweets) | 280/tweet | Hook in tweet 1, CTA + link in last tweet |
| LinkedIn | Single post | 3,000 | Professional tone, emoji bullets, hashtags at end, YouTube link inline |
| Threads | Single post | 500 | Conversational tone, link auto-generates preview card, no hashtags needed |
| Hacker News | Title + URL (Show HN) | 80 title | No hashtags, technical audience, add first comment separately |
| Reddit | Title + body (markdown) | 300 title / 40K body | Subreddit-specific tone, markdown tables work |
| Instagram | Caption for Reel/Post | 2,200 | Casual tone, hashtags at end, "link in bio" |
| DEV.to | Full blog article (markdown) | No limit | Jekyll frontmatter, embed YouTube with {% embed URL %}, technical depth |
| Telegram EN | Channel post | 4,096 | EN channel from CLAUDE.md — concise, emoji bullets, links at end |
| Telegram RU | Channel post (Russian) | 4,096 | RU channel from CLAUDE.md — same content translated to Russian |
Use the /x-post skill with thread format.
source ~/.config/linkedin/.env
curl -s -X POST "https://api.linkedin.com/v2/ugcPosts" \
-H "Authorization: Bearer ${LINKEDIN_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "X-Restli-Protocol-Version: 2.0.0" \
-d '{
"author": "urn:li:person:'"${LINKEDIN_PERSON_ID}"'",
"lifecycleState": "PUBLISHED",
"specificContent": {
"com.linkedin.ugc.ShareContent": {
"shareCommentary": {
"text": "POST_TEXT_HERE"
},
"shareMediaCategory": "NONE"
}
},
"visibility": {
"com.linkedin.ugc.MemberNetworkVisibility": "PUBLIC"
}
}'
Note: LinkedIn API cannot edit or read existing posts. Only create and delete. If a post is cut off or wrong, delete and re-post.
Use Claude in Chrome for authenticated posting. Account handle from CLAUDE.md Personal Info.
tabs_context_mcp(createIfEmpty: true) → get tabIdhttps://www.threads.comtype action loses line breaks):
const editor = document.querySelector('[contenteditable="true"][role="textbox"]');
editor.focus();
document.execCommand('selectAll', false, null);
document.execCommand('delete', false, null);
document.execCommand('insertText', false, postText);
Important Threads notes:
\n in insertText may collapse — the content still reads fine as a blockUse Claude in Chrome for authenticated pages:
tabs_context_mcp(createIfEmpty: true) → get tabId → navigate → interact
https://news.ycombinator.com/submitShow HN: <title> (keep under 80 chars)https://www.reddit.com/r/{subreddit}/submitPost to both channels using Telethon:
cd ~/.config/telegram && uvx --python python3 --from telethon python3 -c "
import asyncio, os
from telethon import TelegramClient
API_ID = int(os.environ['TELEGRAM_API_ID'])
API_HASH = os.environ['TELEGRAM_API_HASH']
async def main():
client = TelegramClient('\$HOME/.config/telegram/session', API_ID, API_HASH)
await client.start()
# EN channel — use channel name from CLAUDE.md
await client.send_message(EN_CHANNEL, EN_TEXT)
# RU channel — use Russian translation, link to Russian blog post
await client.send_message(RU_CHANNEL, RU_TEXT)
await client.disconnect()
asyncio.run(main())
"
Important:
razbakov.com/blog/2026-03-24-slug-ru), not the English one.telegram: links back to the blog post frontmatter using the channel handles from CLAUDE.md.Use Claude in Chrome for authenticated posting:
https://dev.to/new---
title: Article Title Here
published: false
description: Short description for SEO and social cards
tags: tag1, tag2, tag3, tag4
cover_image: https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg
canonical_url: https://razbakov.com/blog/YYYY-MM-DD-slug
---
IMPORTANT: Always include canonical_url pointing to the original blog post. This prevents duplicate content SEO issues and credits the source.
{% embed https://www.youtube.com/watch?v=VIDEO_ID %}published: false as draft for review, or true to publish immediatelyContent guidelines for DEV.to:
Instagram doesn't support API posting for personal accounts. Copy the caption to clipboard:
echo 'CAPTION_HERE' | pbcopy
Tell the user: "Instagram caption is in your clipboard. Open Instagram → create post/reel → paste."
After posting, output a summary:
Posted:
- X: https://x.com/<handle>/status/...
- LinkedIn: https://www.linkedin.com/feed/update/urn:li:activity:.../
- Threads: https://www.threads.com/@<handle>/post/...
- HN: https://news.ycombinator.com/item?id=...
- Reddit: https://www.reddit.com/r/.../comments/...
- DEV.to: https://dev.to/<handle>/... (draft or published)
- Instagram: caption copied to clipboard (manual)
http://localhost:8888/callback~/.config/linkedin/.envpython3 ~/.config/linkedin/get-token.py to complete OAuth flow{% embed URL %}. 4 tags max. End with discussion question. Longer and deeper than other platforms.tools
--- name: handoff description: Get an agent past a browser/UI wall it can't (or must not) cross on its own — a login-gated dashboard, a CAPTCHA, a 2FA prompt, an API that keeps rejecting the write, or an irreversible click that policy says a human must make. This skill is an ESCALATION LADDER, not a first move: it tells you to try the automated browser surfaces FIRST (Chrome-in-Claude, computer-use, an autonomous browser sub-agent) and only fall back to the Handoff app — a wrapper browser that h
documentation
Summarize one or more YouTube videos from their links. Use this whenever the user pastes a youtube.com or youtu.be URL (or several) and wants to know what it's about — phrasings like "summarize to telegram", "tldr these videos", "what do these say", "summary of this talk", or just dropping links with no instruction at all. Fetches each video's real transcript via yt-dlp (not the page text, which never contains the transcript), cleans the captions, and writes a per-video summary. Default delivery is Telegram; honor any other surface the user names ("to my notes", "just here in chat", "email it"). Trigger even when the user only pastes bare links — bare YouTube links almost always mean "tell me what's in these".
data-ai
Daily Digest — Chief-of-Staff role consolidates the six top-managers into one Telegram message to the Commander, instead of six. Implements the protocol from agent-proactivity.md.
development
Seed a new or empty Instagram account with a 9-post grid (3×3) so the profile looks established the moment a new visitor lands. Designed for festivals, new businesses, product launches, conferences, communities — any time an empty IG profile would hurt conversion from external traffic (QR scans, flyer drops, cross-promo). Generates assets via /image-from-gemini (per content-publishing rules — never HTML), writes captions with hashtag sets, and outputs a posting order + cadence plan. Trigger generously: phrases like '9 posts for instagram', 'fill my IG', 'starter grid', 'launch grid', 'instagram seed', '9-post grid', 'IG account not to look empty', 'first instagram posts', 'feed bootstrap', '3x3 grid', 'instagram launch content'. Even if the user mentions only one piece (just the images, just the captions, just the order), use this skill — the grid only works as an integrated bundle.