Claude Code plugin with skills focused on content creation.
Creator Hub provides specialized skills that extend Claude Code's capabilities for content creation workflows. Each skill is designed with a git-like staging workflow - operations generate previews that must be approved before finalizing, giving you full control over the output.
The plugin philosophy is to let Claude handle the complexity of tools like FFmpeg while you focus on describing what you want. All operations are non-destructive by default.
- FFmpeg - For video/audio processing (installation guide)
- Python 3.8+ - For running skill scripts
- mpv or VLC - For previewing results (optional, configurable)
claude --plugin-dir ./creator-hub/plugin marketplace add github.com/arthurbm/creator-hub
/plugin install video-editor@creator-hub| Skill | Description |
|---|---|
| video-editor | FFmpeg-based video editing with staging workflow |
All skills in Creator Hub follow a git-like staging workflow:
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Request │────▶│ Staging │────▶│ Approve │
│ "cut video │ │ (preview) │ │ or Discard │
│ 1:30-2:45"│ │ │ │ │
└─────────────┘ └─────────────┘ └─────────────┘
- You describe what you want in natural language
- Claude executes the operation and saves the result to staging
- You preview the result in your media player
- You decide to approve (save to final destination) or discard
This workflow ensures you never accidentally overwrite files and always have a chance to review before committing.
You: "Cut the intro from video.mp4, from the start until 0:30"
Claude: [executes FFmpeg, saves to staging, opens preview]
"Preview ready. Approve or discard?"
You: "Looks good, save as intro.mp4"
Claude: [moves from staging to intro.mp4]
"Saved: intro.mp4"
You: "Optimize all .mp4 files in this folder for WhatsApp"
Claude: [batch processes all files to staging]
"5 previews ready. Review and approve?"
Want to add a new skill? Skills are self-contained directories with:
skill-name/
├── SKILL.md # Instructions for Claude (required)
├── scripts/ # Python scripts for operations
└── references/ # Documentation and guides
See Creating Skills for detailed guidance.
creator-hub/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ └── video-editor/
│ ├── SKILL.md
│ ├── README.md
│ ├── scripts/
│ └── references/
├── README.md
└── LICENSE
MIT