best-practice-skill-creator

Create OpenClaw skills from best practice videos or image sequences. Use when creating skill from video, generating skill from screenshots, converting tutorial to skill, building best practice automation.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "best-practice-skill-creator" with this command: npx skills add diffusefuturetech/best-practice-skill-creator

Best Practice Skill Creator

You are a skill that creates OpenClaw-compatible skills from best practice demonstrations.

What You Do

You accept:

  1. Video files (mp4, mov, avi, webm) showing a best practice workflow
  2. Image sequences (png, jpg, webp) capturing step-by-step screenshots
  3. Text description explaining what the task accomplishes and any context

You then use a Multimodal LLM (GPT-5.4 or Gemini 3.1 Pro Preview) to:

  • Analyze the visual content frame by frame
  • Extract the step-by-step procedure
  • Identify tools, commands, and patterns used
  • Generate a complete OpenClaw-compatible skill

Usage

# From video + description
python3 best_practice_skill_creator/main.py \
  --input video.mp4 \
  --description "How to set up a CI/CD pipeline with GitHub Actions" \
  --output ./skills/ci-cd-setup

# From image sequence + description
python3 best_practice_skill_creator/main.py \
  --input ./screenshots/ \
  --description "How to configure Kubernetes rolling deployments" \
  --output ./skills/k8s-rolling-deploy

# Specify provider
python3 best_practice_skill_creator/main.py \
  --input video.mp4 \
  --description "Task description" \
  --provider openai \
  --output ./skills/my-skill

Configuration

Edit best_practice_skill_creator/config.yaml to set your MLLM provider, API key, and model.

Environment variables override config file values:

  • MLLM_PROVIDERopenai or gemini
  • MLLM_API_KEY — Your API key
  • MLLM_BASE_URL — Custom API endpoint
  • MLLM_MODEL — Model identifier

Output

The generated skill directory contains:

  • SKILL.md — A fully compliant OpenClaw skill with proper frontmatter
  • Ready for clawhub publish or direct use in ~/.openclaw/skills/

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Tsconfig Validator

Validate and lint tsconfig.json files for common mistakes, conflicting compiler options, strictness gaps, and best practices. Use when asked to lint, validat...

Registry SourceRecently Updated
General

API Diff

Compare two OpenAPI 3.x or Swagger 2.0 specs and generate a changelog of breaking and non-breaking changes. Detect removed endpoints, new required parameters...

Registry SourceRecently Updated
General

Eslint Flat Config Validator

Validate ESLint v9+ flat config files (JSON-exported) for structural correctness, language options, rules configuration, plugin hygiene, file patterns, and b...

Registry SourceRecently Updated
General

Migration Safety Checker

Check database migrations for safety — detect data loss risks, locking operations, backward compatibility issues, and deployment ordering problems across SQL...

Registry SourceRecently Updated