| name | twitter-planner |
| description | [WHAT] Generate Twitter/X operations strategy and weekly/monthly plan framework
[WHEN] User needs a content calendar, posting schedule, or strategy plan for Twitter
[TRIGGERS] operations plan, posting plan, weekly plan, monthly plan, twitter strategy, content calendar
|
| license | MIT |
| compatibility | ["claude-code","cursor"] |
| dependencies | {"skills":["plugins/integrations/social-media/twitter","plugins/generators/twitter/tweet-writer","plugins/generators/twitter/image-gen"],"python":["requests>=2.31.0","python-dotenv>=1.0.0"]} |
| metadata | {"author":"zhangxiaohao","version":"3.1","tags":["social","twitter","planning","strategy"]} |
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
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"