Review and manage the hairglasses-studio content publishing queue. Show what's been posted, what's next, the full 14-day calendar, and progress stats. Use when checking content status, reviewing past GitHub posts and gists, asking what to post next, or managing the publishing schedule. Also triggers on "content calendar", "what have we posted", "content status", or "what's next to publish".
Manage the 14-day content publishing calendar stored at ~/hairglasses-studio/docs/strategy/launch-content/content-calendar.json.
~/hairglasses-studio/docs/strategy/launch-content/content-calendar.json — JSON with marathon_start, marathon_end, and items[] array. Each item has: day, date, slot (morning/evening), item_number, title, platform, source_file, status (ready/drafted/posted/skipped), effort (R/E/W), est_minutes, posted_url, posted_at.
Read content-calendar.json. If absent, report "No calendar initialized. Run /content-marathon start to create one."
Parse $ARGUMENTS:
status (default if no args):
review:
gh gist list --limit 20gh pr list --author hairglasses --state allnext:
calendar:
mark <item#> posted <url>:
skip <item#> <reason>:
reschedule <item#> <new_day>:
After any mutation, commit content-calendar.json to the docs repo:
cd ~/hairglasses-studio/docs && git add strategy/launch-content/content-calendar.json && git commit -m "content: update calendar state" && git push origin main