Video Content Operator
by @fischerlam
Help creators decide what video content to make, how to package it for platforms, select source material, and plan their next content moves.
clawhub install video-content-operatorπ About This Skill
name: video-content-operator description: Use when a user wants help deciding what video/social content to make, how to package it for different platforms, which source materials or ideas are worth using, or what the next content move should be. This skill is for creator operating decisions above editing execution. It should be used for requests like: plan this week's content, decide which clips are worth turning into posts, package an idea for Xiaohongshu/Shorts/YouTube, generate draft content directions, compare angles, recommend the next post, or analyze a creator's current content situation. Before giving recommendations, first understand the user's current state: who they are, which platforms they are already using, what kinds of content they usually publish, and what problem they are trying to solve. In OpenClaw main sessions, proactively use memory files to understand the user before making recommendations. Do NOT use this skill for pure execution when the user already knows exactly what to edit; defer actual editing to sparki-video-editor or other execution tools.
Video Content Operator
This skill sits above video editing.
Its job is to help the user decide:
It is not the video renderer itself.
If the user already knows exactly what to edit and only needs execution, use sparki-video-editor or the execution tool directly instead.
Core idea
Treat this as a content operating layer, not just an editing helper.
Minimum loop: 1. understand the creator's current state 2. clarify the real goal 3. evaluate candidate materials / ideas 4. recommend one best content direction 5. generate 1-3 draft content packages 6. recommend next action 7. if approved, hand off execution cleanly
First step: understand the creator before advising
Do not jump into content advice without first understanding the user's current situation.
You should first determine:
In OpenClaw main sessions
If you are in the user's main/private session, proactively use available memory/context before asking questions.
Look for signals about:
Do not ask questions that memory already answers.
Ask only what is still decision-critical
After checking memory/context, only ask for missing information that materially changes the recommendation.
Good examples:
Bad examples:
When to use this skill
Use this skill when the user asks things like:
Do not use this skill when the request is only:
Required output structure
Unless the user explicitly asks for something else, produce output in this structure:
1. Current state
2. Operating goal
3. Best content direction
4. Recommended source material
5. Draft packages
Provide 1-3 options. For each option include:6. Next action
Choose one:Keep it concise. Only include information that changes the decision.
First-principles rules
Operating questions
Before recommending content directions, anchor on these questions:
If any of these are unclear and materially affect the answer, ask briefly before proceeding.
Platform framing
Use these defaults unless the user says otherwise:
Do not overfit to stereotypes. Use them only as starting priors.
Draft package format
When generating draft options, keep each one structured like this:
Hand-off to execution
If the user approves one direction and wants the content made, hand off cleanly to the right execution layer.
When handing off to sparki-video-editor or another video execution tool, convert the chosen package into an execution brief with:
Suggested hand-off shape:
Scripts
scripts/extract_creator_context.py
Use this first when you are in an OpenClaw workspace and need a fast draft of creator state from local memory files.It extracts a lightweight JSON context from:
MEMORY.mdUSER.mdUse it to avoid asking questions that local context already answers.
Example:
python3 scripts/extract_creator_context.py --workspace /Users/fischer/.openclaw/workspace
scripts/content_operator.py
Use this to turn creator context + goal + materials into a structured operating recommendation package.Example:
python3 scripts/content_operator.py --input /path/to/input.json
scripts/build_execution_brief.py
Use this after a content package is accepted and you want a clean hand-off to a video execution skill.Example:
python3 scripts/build_execution_brief.py --input /path/to/operator-output.json
References
If you need more structure, read:
references/mvp.md for MVP scope and boundariesreferences/mvp-spec.md for product/spec framingreferences/output-examples.md for example responses and hand-off patternsreferences/input-schema.md for JSON input shapereferences/implementation-notes.md for current implementation status
scripts/build_execution_brief.py
Use this after a content package is accepted and you want a clean hand-off to a video execution skill.Example:
bash
python3 scripts/build_execution_brief.py --input /path/to/operator-output.json
``References
If you need more structure, read:
references/mvp.md for MVP scope and boundaries
references/output-examples.md for example responses and hand-off patterns
references/input-schema.md for JSON input shape
references/implementation-notes.md` for current implementation status