Twitter Strategy Planner
Generate Twitter operations strategy and plan framework. Decoupled design — only generates the plan framework; tweet content and images need to be generated separately via other skills.
Quick Start
cd plugins/composed/twitter/twitter-planner && python scripts/analyze_and_plan.py --duration 7
# Daily / Monthly
python scripts/analyze_and_plan.py --duration 1
python scripts/analyze_and_plan.py --duration 30
Parameters
| Parameter | Description | Default |
|---|---|---|
--duration, -d |
Days: 1=daily, 7=weekly, 30=monthly | 7 |
--posts-per-day, -p |
Posts per day | 1 |
--targets, -t |
Benchmark accounts | None |
--topics |
Content topic list | AI-related |
--verbose |
Human-readable output | false |
Recommended Workflow
- Generate plan:
analyze_and_plan.py --duration 7 - Generate tweet content:
tweet-writer/generate_tweet.py "topic" - Generate images (optional):
image-gen/generate_image.py "description" - Post:
twitter/tweet_post.py "content"