Install
openclaw skills install tweet-pipelineNotion-to-Twitter automation — pull approved tweets from a Notion database, schedule one-shot crons for exact post times, and post via X/Twitter OAuth2 API....
openclaw skills install tweet-pipelineAutomate tweet posting from a Notion content calendar. Draft tweets in Notion, set status to "Approved" with a scheduled time, and this pipeline handles the rest.
Notion DB (Tweet Pipeline)
├── Status: Pending → Agent drafts tweet
├── Status: Approved → Heartbeat picks up
│ ├── Future time → Schedules one-shot cron
│ └── Past due → Posts immediately
└── Status: Posted → Done (updated by poster)
| Property | Type | Values |
|---|---|---|
| Title | title | Tweet text |
| Status | select | Pending, Approved, Posted, Failed |
| Scheduled | date | ISO datetime with timezone |
| Platform | select | Twitter, LinkedIn |
| Posted At | date | Filled after posting |
python3 scripts/tweet_poster.py # Check and schedule
python3 scripts/tweet_poster.py --dry-run # Preview without scheduling
scripts/tweet_poster.py — Scheduler (reads Notion, creates crons)scripts/tweet_post_one.py — Poster (called by each cron job)