The awesome collection of OpenClaw skills. 5,400+ skills filtered and categorized from the official OpenClaw Skills Registry.🦞
Production agent skills for Claude Code, Cursor, and SKILL.md
This repo packages production-tested agent skills that you can drop into supported harnesses. The skills cover Codex lane orchestration, external-model review bundles, video editing workflows, and blockchain lookup tasks, with shared files in `avenox-studio/` for the video pipeline.
Builders who want reusable skills for Claude Code, Cursor, Codex fleets, or other SKILL.md-based harnesses.
You can add proven workflows for fleet execution, review packaging, video production, and chain queries without building them from scratch.
What it does
Codex fleet runner
Runs standalone `codex exec` work and parallel multi-lane fleets with worktree isolation, plus image generation jobs.
Om My Pi fleet support
Provides the same fleet pattern for `omp`, including provider pinning and lane fan-out.
Multi-model delegation
Routes work between a top-tier model, cheaper sub-agents, and Codex lanes based on task difficulty.
Monorepo export for review
Packages a codebase into split, review-ready zip bundles and aborts on secret findings before export.
Review handoff workflow
Defines the prompt and verification flow for checking model reports against the live codebase before changes land.
Video production pipeline
Gives a local-first YouTube workflow with intake, rough cut, graphics, thumbnail, and export steps.
Multi-chain explorer
Queries contracts, transactions, logs, balances, and token data across 60+ chains through Etherscan V2 and `cast` fallbacks.
How to get it
- 1Copy any skill directory into your agent's skills folder
git clone https://github.com/avenoxai/avenoxskills.git cp -R avenoxskills/skills/codex-fleet ~/.claude/skills/
README
avenoxskills
Agent skills built and battle-tested in production by Avenox.
These aren't demos. Each one runs real work — shipping YouTube videos, driving Codex fleets, packaging codebases for external review — and each carries the gotchas that only show up after something breaks at 2am. That's the part worth having.
Compatible with Claude Code, Cursor, and any
harness that reads SKILL.md-style agent skills.
Install
Copy any skill directory into your agent's skills folder:
git clone https://github.com/avenoxai/avenoxskills.git
cp -R avenoxskills/skills/codex-fleet ~/.claude/skills/
Or take just the one file you want — every skill is self-contained except the
video trio, which shares avenox-studio/ (see below).
The skills
Agent operations
| Skill | What it does |
|---|---|
| codex-fleet | Standalone Codex CLI runner + fleet orchestrator. General codex exec tasks, gpt-image-2 image generation, and parallel multi-lane fleets with worktree isolation. Dependency-free — no control plane required. |
| omp-fleet | The same job for Oh My Pi (omp) — a second coding-agent CLI onto the same Codex subscription. Provider pinning so a lane can't fall through to a metered aggregator, a 25×-cheaper model tier for recon, and in-process subagent fan-out. Includes the measured RAM comparison that decides which harness you actually want. |
| fable-orchestration | Delegation policy for a multi-model stack: when the main loop runs on a scarce top-tier model, what goes to cheaper sub-agents, and what goes to Codex lanes. Routes on difficulty, not just task type. |
External model review
| Skill | What it does |
|---|---|
| gptpro | Export a monorepo into review-ready zip bundles for a non-agentic frontier model — node_modules-free, split by subsystem, with a secret scan that hard-aborts the export rather than shipping a key to a chat UI. |
| gptpro-handoff | The workflow around it: author the prompt, receive the report, verify every finding against the live codebase before implementing. Includes the prompt house style. |
Video production
A local-first, agent-operated YouTube pipeline. Nothing uploads to render.
| Skill | What it does |
|---|---|
| avenox-video | The router — read this first. 7-step pipeline from intake to export. |
| avenox-roughcut | Transcript-driven rough cut: silence removal and flub/retake removal, in the right order. |
| avenox-graphics | Brand-locked motion graphics via HyperFrames, composited onto the cut. |
| avenox-thumbnail | High-CTR thumbnail factory for a mascot-driven channel. Parallel gpt-image-2 jobs, hook-pattern playbook, hard safety rules. |
The three video skills share runtime files in avenox-studio/
— scripts, the edit.json template, and the brand spec:
export STUDIO_ROOT="$PWD/avenox-studio"
export STUDIO_JOBS="$HOME/video/projects" # heavy media — keep OUT of cloud sync
cp avenox-studio/brand/frame.template.md avenox-studio/brand/frame.md
cp avenox-studio/brand/caption-corrections.example.json avenox-studio/brand/caption-corrections.json
Blockchain
| Skill | What it does |
|---|---|
| chainscan | Multi-chain block explorer via the Etherscan V2 unified API + Foundry cast fallbacks. Contract ABI/source, txs, logs, balances, token info across 60+ chains. One key, one endpoint. |
Bring your own assets
Two skills expect files this repo deliberately doesn't ship:
avenox-thumbnailneeds your own mascot reference inassets/. The mascot is channel identity — yours should be yours. It also needs tool logos, which are third-party trademarks; the fetch recipe is included instead of the files. Seeskills/avenox-thumbnail/assets/README.md.avenox-graphicsreadsavenox-studio/brand/frame.md, which you create from the template. Lock it early — visual consistency compounds, and changing it mid-channel costs more than getting it slightly wrong at the start.
Requirements
Varies by skill; each SKILL.md states its own.
codex-fleet— Codex CLI 0.128+, authenticatedomp-fleet—omp(@oh-my-pi/pi-coding-agent), authenticated against a provider; budget ~0.5GB RAM per concurrent lane bare, ~1.7GB with a typical MCP set auto-discoveredgptpro—zip,rsync- video skills — macOS (hardware encode,
mlx-whisperon Apple Silicon),ffmpeg,python3, MLT/melt, Node. Most work on Linux withlibx264and a CUDA whisper build substituted in. chainscan— an Etherscan V2 API key; Foundry forcastfallbacks
A note on the gotchas
The sections labelled GOTCHAS are the highest-value part of this repo. A few that cost real hours:
auto-editorv29 leaks the last--cut-outrange as a positional input file. Use ffmpeg'sselectfilter for content cuts.- Codex's greedy
-iparse eats your prompt unless you put--before it. - An
omplane measures ~1700MB against a Codex lane's ~108MB — but ~75% of that is MCP servers omp auto-discovers and boots per lane, not the harness (~460MB). Everynpx-launched MCP server also keeps a residentnpm execparent, so you pay ~50% extra per server for nothing. omphas noexecsubcommand — non-interactive is-p. And its model ids fuzzy-match, so an unpinned lane can answer from a metered aggregator instead of your subscription.- Parallel
gpt-image-2jobs share an image cache and can return duplicate renders — md5 the batch, re-fire dupes solo. - SVG
feTurbulencegrain must use a fixed seed or rendered frames flicker. auto-editorandnpxboth need the certifi SSL fix or their downloads fail.
License
MIT — see LICENSE. Use them, fork them, improve them.
Issues and PRs welcome, especially "this broke on my setup" reports.
Files in the repo
- avenox-studio
- skills
- .gitignore
- LICENSE
- README.md
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More collections
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
PM Skills Marketplace: 100+ agentic skills, commands, and plugins — from discovery to strategy, execution, launch, and growth.
A collection of MCP servers.
Model Context Protocol Servers
Extracted system prompts from Anthropic - Claude Fable 5.1, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-6-Astra, Codex. Google - Gemini 3.8 Flash, 3.1 Pro, Antigravity. xAI - Grok, Grok Bot, Cursor, Kimi and more! Updated regularly.