AI Workflows
Agenda Panda works with any model, but the most reliable workflow is still: gather real brand context, generate or edit a reviewable calendar.json, dry-run the changes, then open the dashboard before applying them.
Default calendar workflow
Section titled “Default calendar workflow”# Gather context firstap context --json > context.json
# Ask your model or agent to create or update calendar.jsonclaude "Use context.json to write next week's launch posts as CalendarItem JSON in calendar.json"
# Preview before applyingap calendar sync --file calendar.json --dry-runap dashboardEditing an existing calendar
Section titled “Editing an existing calendar”When the schedule already exists, pull first instead of reconstructing it:
ap calendar pull --file calendar.jsonap context --json > context.jsonclaude "Use context.json and calendar.json to update next week's LinkedIn and X posts"ap calendar sync --file calendar.json --dry-runap dashboardOne-off posts
Section titled “One-off posts”For a single post, ap post is still the right tool:
ap context --json | claude "Write one LinkedIn post in our voice"ap post create --content "Paste the approved caption here" --schedule 2026-03-15T14:00:00Z --connection linkedinNet-new visuals
Section titled “Net-new visuals”Generate or edit media first, then reuse the hosted result:
ap media generate "editorial product hero shot, soft daylight, no people" --aspect 4:5ap post "Launch visual" --media-id abc12345ap media edit abc12345 "same shot, darker background, warmer light"Brand Context
Section titled “Brand Context”Use ap context --json to give your AI model real context about your brand:
ap context --json | claude "Write a launch announcement in our voice"This pipes your soul file, art direction, channel info, and media workflow rules to the model.
Agent prompt pattern
Section titled “Agent prompt pattern”Good agent prompts ask for a whole reviewable workflow, not a loop of one-off posts. For example:
Use context.json to build calendar.json for next week's launch posts, preview it with ap calendar sync --file calendar.json --dry-run, and open ap dashboard for review. Do not create the calendar one post at a time.SKILL.md
Section titled “SKILL.md”Agenda Panda ships a SKILL.md reference file that AI coding agents (Claude Code, Cursor, Windsurf) can read to understand how to use the CLI.
cat SKILL.mdYour AI agent instantly knows the commands, JSON format, and the preferred workflow: gather context, generate media when needed, build calendar.json, dry-run sync, review in the dashboard, then apply.