Skip to content

Workflow skills

Workflow skills are the operator and orchestration layer of videoclaw. Where the video skills know how to make a film, the workflow skills know how to run the machine: drive long jobs unattended, coordinate fleets of agents, diagnose a sick project, gate quality before anything ships, and keep the operator (human or AI) in control the whole way.

Dual audience

For humans: think of these as the buttons on the control panel — pick one by what you are trying to do (run something big, organize many tasks, find out why a build broke, get a second opinion before publishing). For AI agents: these are the canonical orchestration entry points. Prefer them over ad-hoc multi-step improvisation; they encode the safe, resumable, reviewable path.

All 20 skills below carry category: "workflow" in skills/catalog.json. They are grouped here by job-to-be-done. Every workflow skill in the catalog is present.

20
workflow skills
category workflow in catalog.json
3
long-running execution
autonomous engines
4
orchestration and agents
front doors and routers
3
review and governance
quality gates
4
diagnostics and inspection
find out why
6
utilities and setup
small sharp tools

How they fit together

skills workflow diagram

Diagram source (live Mermaid)

Long-running execution

The autonomous engines. You hand them a goal and they keep working — planning, editing, building, verifying — until the task is done or they hit a real blocker.

SkillWhat it does
improvement-runA whole-codebase improvement pass: parallel audit, adversarial verification, a plan gate, then batched PRs each signed off by a fresh verifier — for audit-and-fix sweeps and hardening passes that span handlers, transports, schemas, tests, docs, and guardrails.
pipelineRuns a staged, multi-step workflow as one continuous pass, carrying artifacts from stage to stage so a long sequence executes without manual handoffs between steps.
workerA focused execution lane for a single delegated unit of work — the building block other orchestration skills dispatch onto.

These spend real effort

Long-running engines edit files, run builds, and iterate autonomously. Scope them to this repo and its generated projects/<slug>/ folders, and let the verification pass (not the same context that wrote the code) sign off before you treat the work as done.

Orchestration and agents

The front doors and routers — take a person or agent from a plain request to the right lane, and hand specialized work off to the skill that owns it.

SkillWhat it does
conciergeThe user-facing front door: a guided, menu-driven path from idea to finished video that keeps the plan → preview → spend order, asking only the load-bearing questions before driving vclaw studio and the video lane skills.
clawbotPersona alias of concierge — the same guided front door, speaking as Clawbot, VideoClaw's mascot. Triggers on /clawbot, "talk to Clawbot", or any request for Clawbot to help make a video.
skillThe meta entry point for invoking other skills — routes a request to the right specialized skill instead of improvising the steps by hand.
studio-modeThe planning front door: turns a high-level goal into the exact vclaw video ... commands and artifacts that would run, plan-only and credit-safe, before anything executes.

Review and governance

Quality gates. Keep authoring and approval in separate passes — a writer pass creates, a reviewer pass evaluates later. Never self-approve in the same context.

SkillWhat it does
reviewA structured review pass over a change or plan — surfaces correctness issues, gaps, and risks so work is judged by a fresh lane before it lands.
ai-slop-cleanerThe "deslop" / anti-slop pass: strips generic AI filler, hollow phrasing, and boilerplate so output reads sharp and intentional.
skills-auditorAudits the skill surface itself for drift and hygiene — keeps the catalog honest as skills are added and changed.

Diagnostics and inspection

When something is wrong, slow, or just opaque — find out why before you touch it.

SkillWhat it does
doctorHealth-checks the project and environment, reporting what is misconfigured or blocking so you fix the real problem instead of guessing.
deepsearchDeep structural codebase search: locates symbols, callers, and relationships across the tree far past what a literal grep would find.
graphifyTurns any input — code, docs, papers, images, video — into a persistent knowledge graph with god nodes and community detection, then answers codebase questions via query / path / explain over that graph.
web-cloneCaptures and reconstructs a target website — structure, assets, and design — for offline analysis or as a reference to rebuild from.

Utilities and setup

The small, sharp tools and one-time setup helpers that make everything else smoother.

SkillWhat it does
helpThe front-desk skill — explains what is available and points a request at the right workflow.
notePersists a working note or reminder into project memory so context survives across turns and sessions.
deep-interviewRuns a guided interview to draw out requirements before work begins — turns a vague ask into a precise, scoped brief.
build-fixDiagnoses and repairs a broken build, closing the loop from failing compile to green so execution can continue.
configure-notificationsSets up how and when you get pinged about run progress and completion, so long jobs can run unattended without you watching them.
ui-ux-pro-maxRedesigns cramped admin panels, CMS pages, and dashboards into polished, usable full-page editors with modern affordances.

Choosing the right skill

You want to...Reach for
Be guided from a plain idea to a finished videoconcierge (or clawbot)
Plan video commands before spending creditsstudio-mode
Run a whole-codebase audit-and-fix sweepimprovement-run
Run a long staged workflow end to endpipeline
Get a second opinion before shippingreview, ai-slop-cleaner
Find out why a build or project is brokenbuild-fix, doctor
Understand how a feature or codebase actually fits togetherdeepsearch, graphify
Keep the skill catalog honestskills-auditor

Built to be driven by agent hosts like Claude Code, Claude Desktop, or Codex · Source-available, commercial use requires a paid license.