Marketing-pipeline cycle

Run the daily post rotation — drafts and posts for all live projects across their channels.

install
source · Clone the upstream repo
git clone https://github.com/robertnowell/marketing-pipeline
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/robertnowell/marketing-pipeline "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cycle" ~/.claude/skills/robertnowell-marketing-pipeline-cycle && rm -rf "$T"
manifest: skills/cycle/SKILL.md
source content

Daily cycle

Runs the full daily rotation: for each live project, picks the least-recently-used angle, drafts a post, validates through antislop, and publishes to the first available channel.

marketing cycle --dry-run    # preview what would be posted
marketing cycle              # draft and post for real

Recommend

--dry-run
first unless the user explicitly says to post.

This is the same command that runs on the GitHub Actions daily cron (weekdays 14:00 UTC).