From Planable SMM
Audit a Planable workspace's content calendar for a given period — surface what's scheduled, what's missing, what has no date, and what might have publishing issues. Use this skill whenever the user asks about upcoming content, wants to review the calendar, says things like "what's scheduled this week", "check the calendar for [client]", "what's going out next week", "any gaps in the schedule", "content audit", "what do we have planned", or wants a weekly/monthly content overview for a workspace. Always activate for calendar review and scheduling gap analysis in Planable.
How this skill is triggered — by the user, by Claude, or both
Slash command
/planable-smm:content-calendar-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review a Planable workspace's content schedule for a given period — what's ready, what's missing, what needs attention.
Review a Planable workspace's content schedule for a given period — what's ready, what's missing, what needs attention.
list_workspaces → find workspaceId
list_pages(workspaceId) → get pageIds for context
// Scheduled posts in window
list_posts(
workspaceId,
postStatus: ["SCHEDULED"],
scheduledAfter: [start of window],
scheduledBefore: [end of window]
)
// Posts with no date set (drafts that may be intended for this period)
list_posts(
workspaceId,
postStatus: ["NO_DATE_SET"]
)
// Posts with publishing errors
list_posts(
workspaceId,
postStatus: ["WITH_ERRORS"]
)
Also check for posts needing approval that are scheduled soon:
list_posts(
workspaceId,
approvalStatus: ["NOT_APPROVED", "PARTIAL_APPROVED"],
scheduledAfter: [start of window],
scheduledBefore: [end of window]
)
Show scheduled posts grouped by day. For each day:
Example format:
Monday, May 19
• LinkedIn — "Three things we learned running 50 client campaigns..." ✅
• Instagram — "Behind the scenes of our Q2 content sprint..." ⏳ pending approval
Tuesday, May 20
⚠️ Nothing scheduled
Wednesday, May 21
• Facebook — "Meet the team: this month we're spotlighting..." ✅
🔴 Instagram — Publishing error — needs attention
After the calendar view, add a short summary:
2–4 short, specific callouts. Examples:
Keep recommendations specific to what's in the data. Don't generate generic best-practice advice.
After the audit, offer:
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub planable/smm-skills --plugin planable-smm