From build-in-public
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/build-in-public:build-in-publicThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps developers create engaging social media content from their Claude Code sessions for the #BuildingInPublic and #CodingInPublic communities.
This skill helps developers create engaging social media content from their Claude Code sessions for the #BuildingInPublic and #CodingInPublic communities.
Activate this skill when the user:
/build-in-public:generate - Generate posts from the current session/build-in-public:preview - Preview session activity before generatingWhen 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
The generator creates:
build-in-public_[timestamp].md - Human-readable posts with all optionsbuild-in-public_[timestamp].json - Structured data for automation toolsThe 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", ...]
}
}
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
npx claudepluginhub joshuarweaver/cascade-content-creation-misc-1 --plugin vindicatenyc-build-in-public-plugin