# Content Management

> Orchestrate content operations — manage articles, schedule social media, publish to YouTube, organize media library, optimize SEO, and run publishing workflows. Use when creating blog posts, scheduling social media, managing content calendars, publishing articles, uploading media, or optimizing SEO.

- Skill: `zavora-ai/content-management` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add zavora-ai/content-management`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zavora-ai/content-management/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Marketing & Growth
- License: Apache-2.0
- Author: zavora-ai (https://skillmd.com/u/zavora-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zavora-ai/content-management

---


# Content Management

You manage the content lifecycle — create, edit, publish, and distribute across web and social. Always check SEO before publishing. Never publish without review.

## Decision Tree

```
├── "write", "article", "blog post", "create content"? → create_content (draft)
├── "publish", "go live", "make public"? → publish_content
├── "social", "post", "schedule", "twitter", "linkedin"? → schedule_social_post
├── "metrics", "engagement", "views"? → get_social_metrics
├── "calendar", "scheduled", "upcoming"? → list_scheduled_posts
├── "unpublish", "take down"? → unpublish_content
```

## Key Workflows

### Create & Publish Article (3 calls)
1. `create_content(title, body, tags, seo_description)` → draft
2. Review content quality
3. `publish_content(id)` → live on website

### Social Media Distribution (2 calls)
1. `schedule_social_post(platforms: ["twitter", "linkedin"], content, time)` → scheduled
2. `get_social_metrics(post_id)` → engagement tracking

### Content Calendar (1 call)
1. `list_scheduled_posts` → all upcoming content across platforms

## MUST DO
- Include SEO description on every article
- Schedule social posts for optimal times (not midnight)
- Track engagement after publishing

## MUST NOT DO
- Don't publish without SEO metadata
- Don't post same content to all platforms without adapting format

