Install
openclaw skills install @voronindenis5/landing-page-builder-2Generate a complete week of social media content for all platforms from a single topic or brand. Produces platform-optimized posts, a beautiful shareable HTML content calendar, hashtag suggestions, posting-time recommendations, and JSON export for scheduling tools.
openclaw skills install @voronindenis5/landing-page-builder-2Generate a complete week of social media content for all major platforms from a single topic, brand name, or URL.
# Generate a week of content for a brand
python scripts/social_kit.py generate --topic 'sustainable fashion' --brand 'EcoThreads'
# Generate 14 days for specific platforms only
python scripts/social_kit.py generate --topic 'AI productivity' --days 14 --platforms twitter,linkedin
# Build an HTML calendar from a previous JSON export
python scripts/social_kit.py calendar content.json --output calendar.html
# Auto-detect topic from any text snippet via stdin
echo 'organic coffee roastery in Brooklyn' | python scripts/social_kit.py --auto
| Output | Description |
|---|---|
content.json | All posts in structured JSON — ready for scheduling tools |
calendar.html | Beautiful, shareable, print-friendly weekly content calendar |
| Console summary | Quick overview of the week's content strategy |
output/
├── content.json # Machine-readable: 21+ posts with full metadata
└── calendar.html # Visual weekly grid: 7 days × N platforms
See references/content-strategy.md for the 70-20-10
rule and content pillar framework.
See references/platform-guide.md for character limits,
hashtag strategies, and best practices per platform.
generatepython scripts/social_kit.py generate \
--topic 'sustainable fashion' \
--brand 'EcoThreads' \
--days 7 \
--platforms twitter,instagram,linkedin \
--output-dir ./output
| Flag | Default | Description |
|---|---|---|
--topic | required | The topic, niche, or description |
--brand | topic | Brand or product name |
--days | 7 | Number of days to generate |
--platforms | twitter,instagram,linkedin | Comma-separated platform list |
--output-dir | ./output | Where to write files |
calendarpython scripts/social_kit.py calendar content.json --output calendar.html
--auto (stdin)echo 'AI fitness app called FitAI' | python scripts/social_kit.py --auto