Your AI skills,
everywhere
at once

You prompt naturally. Your installed skills activate automatically — same result, every project, every time.

metaskill is a manager for your AI instructions. One reference file catalogs where they all live. Six commands keep them organized, synced, and installable — across every project, device, and team member.

First: what are skills, prompts, and agents?

AI coding tools (Claude Code, Cursor, Windsurf, Copilot) can be extended with custom instruction files. These are just text files that tell the AI how to do specific tasks — your way. There are three types:

You already get this
A Figma library
References shared design components stored in team files. One library keeps everything consistent across projects.
=
Same idea, for AI tools
library.yaml
References skills, prompts, and agents stored in repos. One file keeps all your AI instructions consistent across projects.

What actually changes

The before and after of having a central place for your AI instructions.

Who is this for

Built for anyone who
works with AI tools

If you're using AI coding tools across multiple projects and you've started building custom instructions, this is for you — no matter your role.

The Problem

Your AI instructions are
everywhere. And nowhere.

You've built great skills and prompts. But across multiple projects, they're scattered, duplicated, and impossible to keep in sync. Sound familiar?

One reference file.
That's the whole trick.

Your library.yaml file doesn't contain your skills — it points to them. Like a playlist doesn't contain music — it references where the songs live. Your library references where your skills, prompts, and agents live.

Sources can be local folders (just for you), private repos (shared with your team), or public repos (available to anyone). You control who has access by controlling who has access to the repo. When you run a command, metaskill reads this file, fetches what's needed, and places it exactly where your AI tools expect.

library.yaml your single source of truth
# Where to install things defaults: skills_dir: .claude/skills agents_dir: .claude/agents commands_dir: .claude/commands # Team skill (private repo) skills: meta-agent: source: github.com/team/agentics path: skills/meta-agent private: true # Public skill (anyone can pull) css-carousel: source: github.com/community/frontend path: skills/css-carousel # Agents: autonomous workers agents: review-agent: source: github.com/team/agentics path: agents/review private: true # Prompts: structured templates prompts: orchestrator: source: /local/path/prompts path: orchestrator.md
Workflow

Build. Catalog. Install. Sync.

Four steps from scattered files to a coordinated system. Works the same whether you're working solo or in a team of fifty.

Commands

Six commands. That's it.

Type these inside Claude Code (or any AI tool that supports skills). That's the entire interface.

Stop copy-pasting skills.
Start managing them.

Three steps. Takes about 30 seconds. After this, you'll have the /library command available in Claude Code.

install metaskill
# Step 1: Download metaskill
$ git clone https://github.com/fliptation/metaskill.git
 
# Step 2: Copy the skill files into Claude Code's skill directory
$ mkdir -p ~/.claude/skills/library/cookbooks
$ cp metaskill/SKILL.md ~/.claude/skills/library/
$ cp metaskill/cookbooks/*.md ~/.claude/skills/library/cookbooks/
 
# Step 3: Create your library (includes 5 bundled skills)
$ cp metaskill/library.yaml.example ~/.claude/library.yaml
 
# Done! Open Claude Code and type /library list

Your library comes with 5 ready-to-use frontend skills: css-carousel, design-tokens, bem, smooth-hash-scrolling, and css-variables. Run /library use css-carousel to install one.

View on GitHub

Inspired by

indiedevdan

The idea of organizing AI skills as structured, reusable files was inspired by indiedevdan's video on AI agent skills.