Quick Start
This is the fastest end-to-end Agenda Panda workflow: install the CLI, authenticate, connect a platform, preview a calendar, and open the dashboard before applying anything.
1. Onboard your AI agent
Section titled “1. Onboard your AI agent”Agenda Panda is built for agents. Instead of narrating each step manually, hand one prompt to Claude Code, Cursor, Codex, or OpenClaw:
claude "Fetch https://agendapanda.com/SKILL.md to learn how to use Agenda Panda. Then connect my X and LinkedIn accounts, run ap context --json, build a calendar.json for next week's launch posts, preview it with ap calendar sync --file calendar.json --dry-run, and open ap dashboard for my review. Do not create the calendar one post at a time."If you are doing the setup yourself, use the hosted installer:
curl -fsSL https://agendapanda.com/install.sh | bash && ap init2. Authenticate
Section titled “2. Authenticate”ap init will start auth for you, or you can run it directly:
ap auth loginIn interactive shells, Agenda Panda uses a device-auth flow:
Press Enter to open your browser and log in Yes
Your code: D8Z3869GF3NF
Paste this code in the browser tab that just opened.Link: https://agendapanda.com/cli/authorize?code=D8Z3869GF3NFOpen the exact URL, approve the session, and the CLI resumes automatically.
For CI/CD or a fully headless environment, export an API key instead:
export AP_API_KEY=ap_your_key_hereap auth status3. Connect a platform
Section titled “3. Connect a platform”ap connections add xap connections add linkedinIf your shell cannot open a browser, print the auth URL instead:
ap connections add x --no-open --jsonAgenda Panda currently supports X, LinkedIn, Facebook Pages, Instagram, Threads, Bluesky, and TikTok.
4. Review your first calendar
Section titled “4. Review your first calendar”ap calendar sync --file calendar.json --dry-runap dashboardOnce the calendar looks right in both the dry-run and the dashboard, apply it:
ap calendar sync --file calendar.json5. Post to multiple platforms
Section titled “5. Post to multiple platforms”# Post to all connected platformsap post "Hello everywhere!" --all
# Post to specific platformsap post "Hello X and LinkedIn" --connection x,linkedin6. Add AI media when you need it
Section titled “6. Add AI media when you need it”ap media generate "cinematic product launch hero shot" --aspect 16:9ap post "Shipping today" --media-id abc12345What’s next
Section titled “What’s next”- CLI Overview for flags, config, and the full command map
- Calendar as Code for the JSON format and sync rules
- AI Workflows for agent prompts, media generation, and review flow
- CI/CD Integration to automate posting in pipelines