videostand-skill
v1.7.0
Published
CLI to install the VideoStand skill for +15 agents.
Downloads
1,230
Readme
✨ Supported agents
| Agent | Target |
| -------------- | ------------- |
| OpenAI Codex | codex |
| Kiro | kiro |
| Claude Code | claude |
| Cline | cline |
| Cursor | cursor |
| Continue | continue |
| Roo | roo |
| OpenHands | openhands |
| Qwen | qwen |
| GitHub Copilot | copilot |
| Junie | junie |
| Kilocode | kilocode |
| CommandCode | commandcode |
| Kode | kode |
| Mux | mux |
| Openclaw | openclaw |
🚀 Installation
Global (recommended)
npm install -g videostand-skillWithout installing (npx)
npx videostand-skill init codex⚡ Quick Start
# Install for a specific agent (local)
videostand init codex
# Install globally (HOME)
videostand -g init claude
# Install for all agents at once
videostand init all
# Short alias — same behavior
vs init codex📖 Commands
videostand init <target|all> [--force] Install the skill
videostand -g init <target|all> [--force] Install globally
videostand remove <target|all> Remove the skill
videostand -g remove <target|all> Remove globally
videostand where <target|all> Show installation path
videostand -g where <target|all>
videostand doctor [target|all] [--strict] [--fix] [--json] Check dependencies
videostand -g doctor [target|all] [--strict] [--fix] [--json]
videostand --help
videostand --version | videostand -vAlias: all commands above work with
vsinstead ofvideostand.
📂 Where files are installed
| Mode | Path |
| ------------------------ | ------------------------------- |
| Local (without -g) | ./<target>/skills/videostand |
| Global (with -g) | ~/.<target>/skills/videostand |
Examples:
./.claude/skills/videostand ← local
~/.claude/skills/videostand ← global
./.codex/skills/videostand ← local
~/.codex/skills/videostand ← global🩺 Preflight check (doctor)
Check dependencies before running the skill:
videostand doctor # check general environment
videostand doctor codex # check specific target
videostand -g doctor claude --strict
videostand doctor all --fix # auto-install missing dependencies
videostand doctor all --json # machine-readable output for CI🔧 Practical examples
videostand init codex
videostand init kiro
videostand init claude
videostand init allvideostand -g init codex
videostand -g init kiro
videostand -g init claude
videostand -g init all --forcevideostand where codex
videostand -g where kiro
videostand where allvideostand init codex --force
videostand -g init claude --forcevideostand remove codex
videostand remove all
videostand -g remove all❗ Troubleshooting
| Error | Solution |
| ------------------------- | -------------------------------------- |
| Skill already exists... | Use --force to overwrite |
| Missing target... | Provide one of the 15 targets or all |
| Unknown option... | Run videostand --help |
