A curated collection of OpenClaw agent skills โ tools that make AI agents smarter, faster, and more useful.
Skills โข Quick Start โข Installation โข Contributing โข ็ฎไฝไธญๆ
| Skill | Description | Docs | Status |
|---|---|---|---|
| conductor | Voice-driven AI coding orchestrator โ direct coding agents with spoken language instead of paths and commands | Why? ยท Guide (ไธญๆ) | โ Ready |
Talk to your code, not your terminal.
Conductor turns natural speech into coding agent commands. Say "Hey CC, fix the router bug in my player project" and it just works โ no paths, no flags, no context-switching.
Key features:
- ๐๏ธ Project Alias Registry (PAR) โ Register spoken nicknames for your projects. Say "weather" instead of typing
/Users/you/dev/projects/weather-app - ๐ค Multi-Agent Dispatch โ Route tasks to Claude Code, Codex, Gemini, or Kimi with natural language
- ๐ก Three Execution Modes โ Background (ACP), real-time relay (Telephone), or Discord threads โ auto-selected based on your platform
- โก Parallel Orchestration โ Run multiple agents simultaneously on different modules
- ๐ Environment Detection โ Auto-detects installed tools and guides you through setup
- ๐ Project Dashboard โ Quick status checks with a single voice command
- ๐ง Project Memory โ Persistent per-project history. Say "continue" and pick up right where you left off
- ๐ Workflow Templates โ Predefined multi-step workflows (release, test, start-day, cleanup, pr-ready). Say the name to run
- ๐ Code Review Mode โ Automatic or manual code review by a separate agent after task completion
- ๐ฐ Cost Tracker โ Track time spent per project and agent. Say "costs" to see a summary
- ๐ Voice Report โ Optional voice feedback for key results when TTS is available
# Copy a skill to your OpenClaw agent workspace
cp -r conductor/ ~/.openclaw/workspace-YOUR_AGENT/skills/conductor/
# That's it. Start talking to your agent:
# "Scan ~/dev for projects"
# "Let CC check the build status of my player project"
# "Run tests on the voice app, show me the progress"Copy this repo URL and send it to your OpenClaw agent:
"Install this skill: https://github.com/g00d-will/openclaw-skill-forge"
Your agent will clone it, install it, and guide you through setup automatically.
git clone git@github.com:g00d-will/openclaw-skill-forge.git
cp -r openclaw-skill-forge/conductor/ ~/.openclaw/workspace-YOUR_AGENT/skills/conductor/Download the .skill file from Releases and extract to your agent's skills directory.
Copy any skill folder directly into your OpenClaw agent workspace:
~/.openclaw/workspace-YOUR_AGENT/
โโโ skills/
โโโ conductor/
โโโ SKILL.md
โโโ references/
โโโ scripts/
| Requirement | Required | Notes |
|---|---|---|
| OpenClaw | โ | The agent runtime |
| At least one coding agent (Claude Code, Codex, etc.) | โ | Conductor will guide installation |
| acpx | Optional | Enables real-time "telephone" mode |
| Discord | Optional | Enables thread-based live streaming |
Each skill follows the OpenClaw AgentSkills spec:
skill-name/
โโโ SKILL.md # Main skill file (instructions + metadata)
โโโ references/ # Supporting documentation (loaded on demand)
โโโ scripts/ # Executable utilities
This is currently a personal skill collection. If you have ideas or want to collaborate, open an issue.
MIT โ use freely, attribution appreciated.
Built with ๐ฆ OpenClaw