Skills
 skills · 6 AI tools · no clone

Agent skills,
shipped à la carte.

A skill is a folder with a SKILL.md file that teaches your coding agent one job — reviewing a PR, designing a schema, shipping to AWS. Drop it in, and Claude Code, Cursor, Copilot, Windsurf, OpenCode or Codex picks it up automatically.

One command. Three ways to aim it.

Every install is the same line — only the selector changes.

What are you working on?

Pick the closest job. You can widen or narrow it once you’re in.

Your tool
Category

Loading the catalog…

Local stdio MCP

Give agents the skills library without loading it all.

The local Skills MCP server lets an AI assistant browse categories, search skills, preview one skill, read the selected docs, and copy chosen skills into a workspace. It reads your local clone and keeps the agent context small.

Quick setup repo-skills
  1. Clone and index
    git clone https://github.com/mouadja02/skills.git
    cd skills
    npm install
    npm run build:manifest
  2. Add the local server to your MCP client
    {
      "mcpServers": {
        "repo-skills": {
          "command": "node",
          "args": ["C:/path/to/skills/scripts/skills-mcp.mjs"],
          "cwd": "C:/path/to/skills",
          "env": {
            "SKILLS_MCP_AUTO_REFRESH": "true"
          }
        }
      }
    }
  3. Tell the agent how to use it
    Use the repo-skills MCP server. Do not load the whole library.
    Call list_categories first, then list_skills or search_skills.
    Use get_skill for previews and read_skill_doc only for chosen skills.
    Install useful skills into this workspace's .claude/skills directory.

Context-safe workflow

list_categories -> list_skills or search_skills -> get_skill -> read_skill_doc only for the final selection.

Install into a workspace

install_skill copies one selected skill folder into .claude/skills, .codex/skills, or any destination your client allows.

Keep it local

No hosted service is required. The MCP process reads local files and writes only when the agent calls install_skill.

Auto-refresh

Before the first tool call, the server can run git pull --ff-only and reload the manifest. Disable with SKILLS_MCP_AUTO_REFRESH=false.