# Twitter Planner

> [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

- Skill: `zhanlincui/twitter-planner` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add zhanlincui/twitter-planner`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zhanlincui/twitter-planner/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- License: MIT
- Author: ZhanlinCui (https://skillmd.com/u/zhanlincui)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zhanlincui/twitter-planner

---


# 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

```bash
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

1. Generate plan: `analyze_and_plan.py --duration 7`
2. Generate tweet content: `tweet-writer/generate_tweet.py "topic"`
3. Generate images (optional): `image-gen/generate_image.py "description"`
4. Post: `twitter/tweet_post.py "content"`

