Build in Public - Social Media Post Generator
This skill helps developers create engaging social media content from their Claude Code sessions for the #BuildingInPublic and #CodingInPublic communities.
Capabilities
- Parse Claude Code session transcripts to extract highlights
- Generate platform-appropriate posts for:
- Twitter/X: Short posts (280 chars) and threads
- BlueSky: Short posts (300 chars)
- LinkedIn: Medium-length professional updates
- Instagram: Long-form captions with hashtags
- Mastodon: Medium posts with hashtags
- Track session metrics (files created, commits, bugs fixed, etc.)
- Output both markdown (human-readable) and JSON (for automation)
When to Activate
Activate this skill when the user:
- Asks to create social media posts about their coding
- Mentions "building in public" or "coding in public"
- Wants to share their progress on Twitter, X, BlueSky, LinkedIn, or Instagram
- Asks for a session summary to share
- Mentions #BuildingInPublic or similar hashtags
- Says things like "I want to tweet about this" or "post this to social media"
Commands Available
/build-in-public:generate - Generate posts from the current session
/build-in-public:preview - Preview session activity before generating
How to Generate Posts
When the user wants to create social media content:
Preview first (optional): Run /build-in-public:preview to show them what happened in the session
Generate posts: Run the generation script:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/generate_posts.py" --output . --json
Present the best options: Show the user 1-2 ready-to-post short posts and mention the full file has more options
Offer customization: Ask if they want to emphasize certain aspects or add custom context
Post Formats
Short Posts (Twitter/X, BlueSky)
- Max 280 characters
- Include 1-2 relevant hashtags
- Focus on one key accomplishment
- Use emojis sparingly but effectively
Threads (Twitter/X)
- 4-6 tweets
- Start with a hook
- End with engagement question
- Each tweet under 280 chars
Medium Posts (LinkedIn)
- 500-700 characters
- Professional tone
- Bullet points for accomplishments
- Include relevant hashtags at the end
Long Form (Instagram)
- 1000+ characters
- Storytelling format
- Multiple hashtags (up to 30)
- Include call-to-action
Output Files
The generator creates:
build-in-public_[timestamp].md - Human-readable posts with all options
build-in-public_[timestamp].json - Structured data for automation tools
Integration with Publishing Tools
The JSON output can be consumed by automation tools to publish posts. The structure:
{
"summary": {
"session_id": "...",
"project_name": "...",
"files_created": [...],
"git_commits": [...],
...
},
"posts": {
"short": ["post1", "post2"],
"thread": ["tweet1", "tweet2", ...],
"medium": ["linkedin post"],
"long": ["instagram caption"],
"hashtags": ["#BuildingInPublic", ...]
}
}
Tips for Great #BuildingInPublic Content
- Be specific: "Added user authentication" beats "worked on the app"
- Show numbers: "Fixed 3 bugs, created 5 files" is more engaging
- Include the struggle: Bugs fixed = relatable content
- End with engagement: "What are you building?" invites responses
- Use relevant hashtags: Match the tech stack (#Python, #React, etc.)
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: build-in-public3description: Generate social media posts for building in public, coding in public, or dev content creation. Activate when user mentions Twitter, X, BlueSky, LinkedIn, Instagram posts about coding, sharing progress, social media content for developers, or wants to share what they built. Use when this capability is needed.4---56# Build in Public - Social Media Post Generator78This skill helps developers create engaging social media content from their Claude Code sessions for the #BuildingInPublic and #CodingInPublic communities.910## Capabilities1112- Parse Claude Code session transcripts to extract highlights13- Generate platform-appropriate posts for:14 - **Twitter/X**: Short posts (280 chars) and threads15 - **BlueSky**: Short posts (300 chars)16 - **LinkedIn**: Medium-length professional updates17 - **Instagram**: Long-form captions with hashtags18 - **Mastodon**: Medium posts with hashtags19- Track session metrics (files created, commits, bugs fixed, etc.)20- Output both markdown (human-readable) and JSON (for automation)2122## When to Activate2324Activate this skill when the user:25- Asks to create social media posts about their coding26- Mentions "building in public" or "coding in public"27- Wants to share their progress on Twitter, X, BlueSky, LinkedIn, or Instagram28- Asks for a session summary to share29- Mentions #BuildingInPublic or similar hashtags30- Says things like "I want to tweet about this" or "post this to social media"3132## Commands Available3334- `/build-in-public:generate` - Generate posts from the current session35- `/build-in-public:preview` - Preview session activity before generating3637## How to Generate Posts3839When the user wants to create social media content:40411. **Preview first** (optional): Run `/build-in-public:preview` to show them what happened in the session42432. **Generate posts**: Run the generation script:44 ```bash45 python3 "${CLAUDE_PLUGIN_ROOT}/scripts/generate_posts.py" --output . --json46 ```47483. **Present the best options**: Show the user 1-2 ready-to-post short posts and mention the full file has more options49504. **Offer customization**: Ask if they want to emphasize certain aspects or add custom context5152## Post Formats5354### Short Posts (Twitter/X, BlueSky)55- Max 280 characters56- Include 1-2 relevant hashtags57- Focus on one key accomplishment58- Use emojis sparingly but effectively5960### Threads (Twitter/X)61- 4-6 tweets62- Start with a hook63- End with engagement question64- Each tweet under 280 chars6566### Medium Posts (LinkedIn)67- 500-700 characters68- Professional tone69- Bullet points for accomplishments70- Include relevant hashtags at the end7172### Long Form (Instagram)73- 1000+ characters74- Storytelling format75- Multiple hashtags (up to 30)76- Include call-to-action7778## Output Files7980The generator creates:81- `build-in-public_[timestamp].md` - Human-readable posts with all options82- `build-in-public_[timestamp].json` - Structured data for automation tools8384## Integration with Publishing Tools8586The JSON output can be consumed by automation tools to publish posts. The structure:8788```json89{90 "summary": {91 "session_id": "...",92 "project_name": "...",93 "files_created": [...],94 "git_commits": [...],95 ...96 },97 "posts": {98 "short": ["post1", "post2"],99 "thread": ["tweet1", "tweet2", ...],100 "medium": ["linkedin post"],101 "long": ["instagram caption"],102 "hashtags": ["#BuildingInPublic", ...]103 }104}105```106107## Tips for Great #BuildingInPublic Content1081091. **Be specific**: "Added user authentication" beats "worked on the app"1102. **Show numbers**: "Fixed 3 bugs, created 5 files" is more engaging1113. **Include the struggle**: Bugs fixed = relatable content1124. **End with engagement**: "What are you building?" invites responses1135. **Use relevant hashtags**: Match the tech stack (#Python, #React, etc.)114115---116> Converted and distributed by [TomeVault](https://tomevault.io/claim/vindicatenyc) — claim your Tome and manage your conversions.117<!-- tomevault:4.0:skill_md:2026-04-11 -->