New:Socket for Asana Is Now Available.Learn more
Get Started

master-skills

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

master-skills

Install 2,658 AI-agent skills into Claude, Cursor, Gemini, Codex, Antigravity, Kiro and more — one command, 15 domains.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source


Master Skills

Master Skills

The unified skill library for Claude, Codex, Cursor, Antigravity & every AI agent.

2,658 skills · 15 domains · one machine-readable catalog · zero dependencies


CI Release npm License Skills Domains PRs welcome


⚡ Install  ·  🗂 Domains  ·  📦 Manifest  ·  ▶️ Usage  ·  ❓ FAQ


npx skills add sinhoneyy/master-skills

✨ What is Master Skills

One source of truth for agent skills. Instead of juggling scattered, inconsistent collections, you get a single clean catalog — deduplicated, domain-organized, and indexed.

Master Skills is a standardized catalog of 2,658 AI-agent skills, sorted into 15 normalized domains. Every skill is runtime-agnostic — it works with Claude, Codex, Cursor, Antigravity, and anything else that loads SKILL.md skills. Each one has a stable id, version, domain, and slash trigger, all described in one authoritative manifest: skills_index.json.

2,658
unique skills
15
domains
0
dependencies
1
manifest file

⚡ Install — choose your tool

One command installs the skills into the path your host expects:

ToolInstallFirst use
Claude Codenpx master-skills --claude/<skill> … (or the Claude plugin marketplace)
Cursornpx master-skills --cursor@<skill> …
Gemini CLInpx master-skills --geminiUse <skill> to …
Codex CLInpx master-skills --codexUse <skill> to …
Antigravity IDEnpx master-skills --antigravity@<skill> …
Antigravity CLI (agy)npx master-skills --agy/<skill> …
Kironpx master-skills --kiro@<skill> …
OpenCodenpx master-skills --opencodeopencode run @<skill> …
AdaL CLInpx master-skills --adalUse <skill> to …
Custom pathnpx master-skills --path ./my-skillsdepends on your tool

Filter what gets installed:

npx master-skills --claude --category security,backend   # only those domains
npx master-skills --cursor --risk safe,none              # only low-risk skills
npx master-skills --list                                 # show all categories
npx master-skills --path ./skills --dry-run              # preview, write nothing

Default tool paths are best-effort — if your host stores skills elsewhere, use --path.

Or clone and point your agent's loader at skills/ directly. No build step, no dependencies. ✅

🧩 Install as a plugin (Claude · Codex · Antigravity)

Master Skills ships as one plugin with a manifest for each platform, so the same catalog installs everywhere:

Claude Code

/plugin marketplace add sinhoneyy/master-skills
/plugin install master-skills@master-skills

Codex — point Codex at the repo; it reads .codex-plugin/plugin.json (skills → ./skills/).

Antigravity — add the repo as a plugin source; it reads .agents/plugins/marketplace.json.

PlatformManifestBundles?
Claude Code.claude-plugin/marketplace.json + plugin.json✅ all-skills + 10 themed
Antigravity.agents/plugins/marketplace.json✅ all-skills + 10 themed
Codex.codex-plugin/plugin.jsonsingle full plugin (Codex uses one plugin; filter by category)

Themed bundles

Prefer a focused set over all 2,658? Install just the role bundle you need (Claude & Antigravity):

/plugin install master-skills-security-engineer@master-skills
/plugin install master-skills-frontend-designer@master-skills
BundleSkillsDomains
master-skills-integrations812integrations
master-skills-ai-agent-builder388agents · ai-ml · prompt-engineering
master-skills-backend-engineer310backend · data-db
master-skills-frontend-designer227web-frontend · design-ux
master-skills-devops-cloud160devops-cloud
master-skills-marketing-growth123content-marketing
master-skills-security-engineer98security
master-skills-qa-testing53testing
master-skills-productivity52productivity
master-skills-mobile-developer14mobile

The full master-skills plugin (all 2,658) remains installable on its own.

🗂 The 15 domains

DomainSkillsWhat's inside
🔌integrations812App connectors, automation, webhooks
🧰general421Cross-cutting, no single domain
⚙️backend233APIs, servers, frameworks, GraphQL
🧠prompt-engineering193Prompting, RAG, context, evaluation
☁️devops-cloud160Docker, K8s, Terraform, AWS/Azure/GCP, CI/CD
🤖agents154Multi-agent, orchestration, autonomous
🎨web-frontend143React/Vue/Svelte/Angular, CSS, components
📣content-marketing123SEO, copywriting, social, email
🔐security98Pentest, vuln analysis, auth, crypto
🖌️design-ux84Figma, canvas, brand, UI/UX
🗄️data-db77SQL, Postgres/Mongo/Redis, pipelines
🧪testing53Unit/E2E/TDD, Playwright, pytest
📄productivity52PDF/XLSX/PPTX/DOCX, office, slides
🧬ai-ml41Training, embeddings, vectors, NLP
📱mobile14iOS, Android, Flutter, Swift, RN

Live counts always reflect skills_index.jsoncategories.

📦 The manifest

A single JSON document, skills_index.json, describes the entire library.

📋 Schema — top level
FieldTypeDescription
namestringAlways "master-skills"
schemaVersionstringManifest schema version
versionstringLibrary version
generatedstringISO-8601 UTC build timestamp
skill_countnumberTotal unique skills
categoriesobject{ domain: count }
skillsobject[]One entry per skill
🧩 Schema — per-skill entry
FieldTypeDescription
idstringStable, slugified skill id
namestringHuman-readable name
versionstringSkill version (default 1.0.0)
descriptionstringOne-line summary
categorystringAssigned domain
tagsstring[]Tags, if any
triggerstringSlash trigger, /+id
pathstringskills/<id>
{
  "name": "master-skills",
  "schemaVersion": "1.0",
  "skill_count": 2658,
  "categories": { "integrations": 812, "general": 421, "backend": 233, "…": 0 },
  "skills": [
    {
      "id": "api-design-principles",
      "name": "API Design Principles",
      "version": "1.0.0",
      "description": "Guidelines for designing clean, consistent APIs…",
      "category": "backend",
      "trigger": "/api-design-principles",
      "path": "skills/api-design-principles"
    }
  ]
}

📁 Repository layout

master-skills/
├─ 📂 skills/                    # 2,658 skills, flat (domain lives in the manifest)
│   ├─ api-design-principles/SKILL.md
│   ├─ adversarial-reviewer/SKILL.md
│   └─ …
├─ 🧩 .claude-plugin/            # Claude Code plugin + marketplace manifest
├─ 🧩 .codex-plugin/             # Codex plugin manifest
├─ 🧩 .agents/plugins/           # Antigravity marketplace manifest
├─ 🗂️ skills_index.json          # the manifest (id, version, category, trigger, path)
├─ 📜 CREDITS.md                  # license/source notes + full upstream notices
└─ 📖 README.md

▶️ Using a skill

1.  Find it      →  search skills_index.json by id / trigger / category
2.  Open it      →  go to its "path", e.g. skills/api-design-principles/
3.  Invoke it    →  use its "trigger" (/api-design-principles) in your agent

Each skill keeps its full payloadSKILL.md, references, scripts, examples — exactly as published. Or just point your runtime's skill loader at the whole skills/ directory.

❓ FAQ

How are skills organized?
Into 15 normalized domains. A skill's domain comes from its frontmatter when it maps to a known domain, otherwise a keyword heuristic, falling back to general.
How do I find a specific skill?
Search skills_index.json by id, category, or trigger — it's a flat list designed to be grepped or loaded programmatically.
Is the catalog self-contained?
Yes. After cloning, everything you need is in skills/ and the manifest — no network access or build step required to use it.

🤝 Contributing

PRs are welcome! Good first contributions:

  • ➕ Add new skills as skills/<id>/SKILL.md (set the domain via frontmatter)
  • 🏷️ Improve domain classification so fewer skills land in general
  • 🧪 Add manifest validation or search tooling

Every PR is automatically checked: the manifest is validated against the tree, and changed SKILL.md files are linted for structure — results posted right on your PR.

📜 License

The Master Skills catalog tooling is MIT-licensed. Bundled skills retain their original upstream licenses — full notices live in CREDITS.md.


Built as one unified catalog. No dependencies. No lock-in.

⬆ back to top

Keywords

claude

FAQs

Package last updated on 12 Jun 2026

Related posts