claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Developer Tools

ai-omni-skills

For AI enthusiasts who try every new tool and watch their skills fragment. One source of truth for AI agent skills (SKILL.md) + cross-tool sync toolkit: MCP…

// Developer Tools[ cli ][ api ][ desktop ][ claude ]#claude#ai#ai-agent#ai-agents#ai-tools#cli#codex#cursor#devtoolsMIT$open-sourceupdated 12 days ago
Actively maintained
100/100
last commit 8 days ago
last release 8 days ago
releases 19
open issues 0
// install
git clone https://github.com/moatazhamada/ai-omni-skills

Omni Skills

Omni Skills Banner

I try every AI tool. My skills scattered everywhere. This unifies them.

🎉 v1.4.0 is out — native binaries for macOS, Linux, and Windows; Homebrew and Winget support; and a skill compiler pipeline. Read the announcement →

A CLI + MCP server that takes the skills you've collected across all your AI coding tools and unifies them into a single canonical store. Then it syncs them into every tool you use — Claude, Codex, Kimi, Gemini, Cursor, Zed, Cline, Z.AI, and anything else that follows.

If you find this useful, please consider starring the repo — it helps us reach the criteria for inclusion in homebrew/core so users can run brew install omni-skills without the brew tap step.


The Problem This Solves

Every new AI coding tool wants its own instruction file, skill directory, and configuration. The result is fragmentation:

MessWhat I Found
Duplicate AGENTS.md files70 copies of the same template across 16 projects
Orphaned skills15 skills hidden in a tool's skills directory, invisible to other tools
Marketplace dumps203 generic skills cloned into a project
Stale templatesOld project-only rules in every repo
Private skills leakingProject-specific skills mixed with generic skills
Iron laws driftingA 98KB instruction file manually copy-pasted between repos
New tool = manual setupEvery new AI tool meant copying config files one by one

Omni Skills is a single-purpose tool: find all your skills, put them in one place, and wire them into every AI tool you use.

# One canonical store. Every tool sees it.
omni-skills sync all   # Claude, Codex, Kimi, Gemini, Cursor, Cline, Zed, etc.

Install

Choose one of the following. Native binaries do not require Node.js.

# macOS / Linux
brew tap moatazhamada/tap
brew install omni-skills

# Windows
winget install omni-skills

# npm
npm install -g ai-omni-skills

See docs/install.md for details on why brew tap is needed and how each distribution channel works.


Quick Start

You need your own private repository for your skills. This toolkit does not include skills — it connects the skills you already have to every AI tool you use.

# 1. Run the auto-scan setup
omni-skills setup
# Auto-detects your installed AI tools, finds your skill directories,
# suggests cleanup, and generates ~/.config/skills/config.json

# 2. Sync to every AI tool
omni-skills sync all

# 3. Verify health
omni-skills doctor

# 4. Run the verification suite
node verify.js

Override defaults without questions:

omni-skills setup --public=~/my-skills-public --private=~/my-skills-private
omni-skills setup --toolkit=/path/to/this/repo

What It Does

TierWhatMechanism
ASKILL.md skills + shared instructions + MCP serverSymlinks + local MCP server exposing list_skills / read_skill
BHooksCanonical hooks transpiled into each tool's native hook format
COther assetsSymlinks from your config repo to per-tool paths

When you run omni-skills sync, each SKILL.md is compiled on the fly into the format each target tool expects. You can also add executionBoundary guards in the YAML frontmatter to restrict file writing, network access, or require shell execution confirmations per tool.

See docs/architecture.md for the full compiler pipeline, execution boundaries, and MCP server details.


Supported AI Tools

ToolTypeConfigSkills DirMCP
Claude CodeCLI~/.claude/CLAUDE.md
OpenAI CodexCLI~/.codex/AGENTS.md
KimiCLI~/.kimi/AGENTS.md
Gemini CLICLI~/.gemini/GEMINI.md
CursorEditor~/.cursor/rules/
KilocodeVS Code~/.kilocode/rules/
OpenCodeCLI~/.config/opencode/
AiderCLI~/.aider.conf.yml
Continue.devVS Code~/.continue/config.yaml
ClineVS Code~/.cline/rules.md
Roo CodeVS Code~/.roo/rules.md
WindsurfEditor~/.windsurf/rules.md
ZedEditor~/.config/zed/settings.json
TabbySelf-hosted~/.tabby/config.toml
PearAIEditor~/.pearai/config.json
VoidEditor~/.void/config.json
JetBrains JunieIDE.junie/guidelines.md
JetBrains AI AssistantIDE.aiassistant/rules/
Claude DesktopDesktop~/Library/…/Claude/…
DevinDesktop
Factory DroidCLI
Z.AI (GLM 5.2)Model API—¹

¹ Z.AI works through existing tools. Point Claude Code, Cline, or Zed at the GLM Coding Plan endpoint. For VS Code Copilot, install the glm-copilot extension.


CLI Commands

Core commands are the ones you run every day. Secondary commands are grouped under manage to keep the main surface small.

Core commands

CommandDoes
omni-skills sync [tool|all] [--dry-run] [--no-backup]Wire instructions, skills dirs, MCP config, hooks, assets.
omni-skills setupAuto-scan, detect tools, generate config.
omni-skills doctorHealth check symlinks, config, indexes, skill counts.
omni-skills restore [index] [--prune[=N]] [--empty-trash]List or restore trashed files, prune old trash.
omni-skills update [--check]Check for updates.
omni-skills helpShow help.

Secondary commands (omni-skills manage <subcommand>)

SubcommandDoes
manage mcpRun the MCP server over stdio.
manage indexRegenerate INDEX.md and managed SHARED.md.
manage workflow [list|run <name>]List or run chainable skill workflows.
manage check [--move] [--dry-run]Find orphaned skills and dangling symlinks.
manage classify [path] [--depth=N] [--dry-run]Scan and sort instruction files public/private.
manage discoverScan system for AI tools, instruction files, skill dirs.
manage report [--enhance]Usage statistics and improvement tips.
manage init [--dry-run]Interactive setup: scan, classify, route, wire.
manage security [scan]SkillSpector vulnerability scanning.
manage create [name]Create a new skill with a wizard.
manage create from <file>Convert an existing file into a skill.
manage uninstallRemove omni-skills wiring.

Legacy top-level commands (e.g., omni-skills check) still work for backward compatibility, but new scripts should prefer omni-skills manage check.

See docs/usage.md for detailed usage, real stats, health checks, verification, and tests.


Why These CLI Changes?

The original CLI had ~15 top-level commands. That made the tool look heavier than it is and increased the chance of running the wrong thing. The refactor keeps the daily surface tiny (sync, setup, doctor, restore) and moves everything else behind manage. The goal is less friction, not more features.


Automatic Pre-Sync Backup

omni-skills sync can rewrite instruction files, MCP configs, hooks, and skill directories. Before it writes anything, it copies the current versions to:

~/.config/skills/backups/<ISO-timestamp>/

If a sync ever breaks a tool config, you can restore manually from that directory. Backups are skipped with --dry-run (nothing is changed) or --no-backup (you know what you're doing). Old backups are pruned after 30 days automatically.


Several commands (sync, setup, check, classify, init) default to a dry-run preview before they write anything. If you run several of them in a row, re-confirming every time is tedious; --yes is risky because it persists for only that single invocation. Use the environment variable instead:

export OMNI_SKILLS_SESSION_YES=1
omni-skills setup
omni-skills sync all
omni-skills doctor

This skips confirmations for the current shell session only. When the shell closes, the override disappears.


Picking the Right AI Tool for the Task

Omni Skills keeps your skills in one place; it does not tell you which AI agent to use for a given task. For that, see ai-tool-router — a separate, zero-dependency skill that scans your installed agents, remembers their costs and strengths, and suggests the cheapest capable tool (plus a fallback).


Documentation


License

MIT — see LICENSE.

// compatibility

Platformscli, api, desktop
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageJavaScript

// faq

What is ai-omni-skills?

For AI enthusiasts who try every new tool and watch their skills fragment. One source of truth for AI agent skills (SKILL.md) + cross-tool sync toolkit: MCP server, shared instructions, and one-command wiring for Claude Code, Codex, Gemini, Kimi, Cursor, Kilocode, OpenCode.. It is open-source on GitHub.

Is ai-omni-skills free to use?

ai-omni-skills is open-source under the MIT license, so it is free to use.

What category does ai-omni-skills belong to?

ai-omni-skills is listed under devtools in the Claudeers registry of Claude-compatible tools.

0 views
10 stars
unclaimed
updated 12 days ago

// embed badge

ai-omni-skills on Claudeers
[![Claudeers](https://claudeers.com/api/badge/ai-omni-skills.svg)](https://claudeers.com/ai-omni-skills)

// retro hit counter

ai-omni-skills hit counter
[![Hits](https://claudeers.com/api/counter/ai-omni-skills.svg)](https://claudeers.com/ai-omni-skills)

// reviews

// guestbook

0/500

// related in Developer Tools

🔓

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Curs…

// devtoolsaffaan-m/JavaScript225,699MIT[ claude ]
🔓

Use Garry Tan's exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA

// devtoolsgarrytan/TypeScript119,234MIT[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// devtoolssafishamsi/Python80,484MIT[ claude ]
🔓

🙌 OpenHands: AI-Driven Development

// devtoolsOpenHands/Python79,324NOASSERTION[ claude ]
→ see how ai-omni-skills connects across the ecosystem