Unified skill library for Claude, Codex, Cursor, Antigravity & AI agents — 2,658 skills across 15 domains
> /plugin marketplace add sinhoneyy/master-skills> /plugin install master-skills@master-skills
FAQ
master-skills is a Claude Code plugin with 200 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes acceptance-orchestrator, accesslint-audit, activecampaign-automation. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: sinhoneyy/master-skills
⚡ Install · 🗂 Domains · 📦 Manifest · ▶️ Usage · ❓ FAQ
npx skills add sinhoneyy/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.
One command installs the skills into the path your host expects:
| Tool | Install | First use |
|---|---|---|
| Claude Code | npx master-skills --claude | /<skill> … (or the Claude plugin marketplace) |
| Cursor | npx master-skills --cursor | @<skill> … |
| Gemini CLI | npx master-skills --gemini | Use <skill> to … |
| Codex CLI | npx master-skills --codex | Use <skill> to … |
| Antigravity IDE | npx master-skills --antigravity | @<skill> … |
| Antigravity CLI (agy) | npx master-skills --agy | /<skill> … |
| Kiro | npx master-skills --kiro | @<skill> … |
| OpenCode | npx master-skills --opencode | opencode run @<skill> … |
| AdaL CLI | npx master-skills --adal | Use <skill> to … |
| Custom path | npx master-skills --path ./my-skills | depends 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. ✅
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.
| Platform | Manifest | Bundles? |
|---|---|---|
| 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.json | single full plugin (Codex uses one plugin; filter by category) |
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
| Bundle | Skills | Domains |
|---|---|---|
master-skills-integrations | 812 | integrations |
master-skills-ai-agent-builder | 388 | agents · ai-ml · prompt-engineering |
master-skills-backend-engineer | 310 | backend · data-db |
master-skills-frontend-designer | 227 | web-frontend · design-ux |
master-skills-devops-cloud | 160 | devops-cloud |
master-skills-marketing-growth | 123 | content-marketing |
master-skills-security-engineer | 98 | security |
master-skills-qa-testing | 53 | testing |
master-skills-productivity | 52 | productivity |
master-skills-mobile-developer | 14 | mobile |
The full master-skills plugin (all 2,658) remains installable on its own.
| Domain | Skills | What's inside | |
|---|---|---|---|
| 🔌 | integrations | 812 | App connectors, automation, webhooks |
| 🧰 | general | 421 | Cross-cutting, no single domain |
| ⚙️ | backend | 233 | APIs, servers, frameworks, GraphQL |
| 🧠 | prompt-engineering | 193 | Prompting, RAG, context, evaluation |
| ☁️ | devops-cloud | 160 | Docker, K8s, Terraform, AWS/Azure/GCP, CI/CD |
| 🤖 | agents | 154 | Multi-agent, orchestration, autonomous |
| 🎨 | web-frontend | 143 | React/Vue/Svelte/Angular, CSS, components |
| 📣 | content-marketing | 123 | SEO, copywriting, social, email |
| 🔐 | security | 98 | Pentest, vuln analysis, auth, crypto |
| 🖌️ | design-ux | 84 | Figma, canvas, brand, UI/UX |
| 🗄️ | data-db | 77 | SQL, Postgres/Mongo/Redis, pipelines |
| 🧪 | testing | 53 | Unit/E2E/TDD, Playwright, pytest |
| 📄 | productivity | 52 | PDF/XLSX/PPTX/DOCX, office, slides |
Live counts always reflect skills_index.json → categories.
A single JSON document, skills_index.json, describes the entire library.
| Field | Type | Description |
|---|---|---|
name | string | Always "master-skills" |
schemaVersion | string | Manifest schema version |
version | string | Library version |
generated | string | ISO-8601 UTC build timestamp |
skill_count | number | Total unique skills |
categories | object | { domain: count } |
skills | object[] | One entry per skill |
| Field | Type | Description |
|---|---|---|
id | string | Stable, slugified skill id |
name | string | Human-readable name |
version | string | Skill version (default 1.0.0) |
description | string | One-line summary |
category | string | Assigned domain |
tags | string[] | Tags, if any |
trigger | string | Slash trigger, /+id |
path | string | skills/<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"
}
]
}
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
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 payload — SKILL.md, references, scripts, examples — exactly
as published. Or just point your runtime's skill loader at the whole skills/ directory.
PRs are welcome! Good first contributions:
skills/<id>/SKILL.md (set the domain via frontmatter)generalEvery PR is automatically checked: the manifest is validated against the tree, and changed
SKILL.mdfiles are linted for structure — results posted right on your PR.
The Master Skills catalog tooling is MIT-licensed. Bundled skills retain their original
upstream licenses — full notices live in CREDITS.md.
⬆ back to top
.agents/
plugins/
marketplace.json
.claude-plugin/
marketplace.json
plugin.json
.codex-plugin/
plugin.json
.github/
ISSUE_TEMPLATE/
bug_report.yml
config.yml
new-skill.yml
PULL_REQUEST_TEMPLATE.md
scripts/
lint_skill.py
validate_manifest.py
workflows/
ci.yml
publish-package.yml
skill-lint.yml
bin/
cli.mjs
CREDITS.md
package.json
plugins/
master-skills-ai-agent-builder/
.claude-plugin/
plugin.json
skills/
acceptance-orchestrator/
SKILL.md
accesslint-audit/
SKILL.md
activecampaign-automation/
SKILL.md
adhx/
SKILL.md
advanced-evaluation/
SKILL.md
aegisops-ai/
SKILL.md
aeo/
.claude-plugin/
plugin.json
references/
aeo_eeat_canon.md
aeo_vs_seo.md
bot_access_and_monitoring.md
extractable_content_patterns.md
llm_citation_patterns.md
scripts/
aeo_audit.py
aeo_optimizer.py
citation_tracker.py
SKILL.md
agent-designer/
agent_evaluator.py
agent_planner.py
assets/
sample_execution_logs.json
sample_system_requirements.json
sample_tool_descriptions.json
expected_outputs/
sample_agent_architecture.json
sample_evaluation_report.json
sample_tool_schemas.json
README.md
references/
agent_architecture_patterns.md
evaluation_methodology.md
tool_design_best_practices.md
SKILL.md
tool_schema_generator.py
agent-evaluation/
SKILL.md
agent-framework-azure-ai-py/
SKILL.md
agent-mail-automation/
SKILL.md
agent-manager-skill/
SKILL.md
agent-memory-mcp/
SKILL.md
agent-memory-systems/
SKILL.md
agent-orchestration-improve-agent/
SKILL.md
agent-orchestration-multi-agent-optimize/
SKILL.md
agent-orchestrator/
references/
capability-taxonomy.md
orchestration-patterns.md
scripts/
match_skills.py
orchestrate.py
requirements.txt
scan_registry.py
SKILL.md
agent-protocol/
references/
invocation-patterns.md
SKILL.md
agent-tool-builder/
SKILL.md
agent-workflow-designer/
references/
workflow-patterns.md
scripts/
workflow_scaffolder.py
SKILL.md
agentflow/
SKILL.md
agentfolio/
SKILL.md
agenthub/
references/
agent-templates.md
coordination-strategies.md
dag-patterns.md
scripts/
board_manager.py
dag_analyzer.py
dry_run.py
hub_init.py
result_ranker.py
session_manager.py
SKILL.md
agentic-actions-auditor/
SKILL.md
agentmail/
SKILL.md
agentphone/
SKILL.md
agentql-automation/
SKILL.md
agents-md/
SKILL.md
agents-v2-py/
SKILL.md
agenttrace-session-audit/
SKILL.md
agenty-automation/
SKILL.md
ai-agent-development/
SKILL.md
ai-agents-architect/
SKILL.md
ai-dev-jobs-mcp/
SKILL.md
ai-engineer/
SKILL.md
ai-engineering-toolkit/
SKILL.md
ai-ml/
ai-ml-api-automation/
SKILL.md
SKILL.md
ai-native-cli/
SKILL.md
ai-security/
references/
atlas-coverage.md
scripts/
ai_threat_scanner.py
SKILL.md
ai-seo/
evals/
evals.json
references/
content-patterns.md
platform-ranking-factors.md
SKILL.md
airflow-dag-patterns/
resources/
implementation-playbook.md
SKILL.md
analyze-project/
examples/
sample_session_analysis_report.md
SKILL.md
andreessen/
assets/
blank_3x5_card.md
example_3x5_card.md
example_market_verdict.md
example_pmf_check.md
forcing_question_worksheet.md
README.md
references/
market_first_canon.md
operating_prompt.md
personal_productivity_system.md
pmf_and_build_canon.md
scripts/
anti_todo_card.py
market_first_evaluator.py
pmf_signal_scorer.py
SKILL.md
andrej-karpathy/
SKILL.md
antigravity-skill-orchestrator/
README.md
SKILL.md
antigravity-workflows/
resources/
implementation-playbook.md
SKILL.md
aomi-transact/
SKILL.md
api-fuzzing-bug-bounty/
SKILL.md
apify-actor-development/
references/
actor-json.md
dataset-schema.md
input-schema.md
key-value-store-schema.md
logging.md
output-schema.md
standby-mode.md
SKILL.md
app-builder/
agent-coordination.md
feature-building.md
project-detection.md
scaffolding.md
SKILL.md
tech-stack.md
templates/
astro-static/
TEMPLATE.md
chrome-extension/
TEMPLATE.md
cli-tool/
TEMPLATE.md
electron-desktop/
TEMPLATE.md
express-api/
TEMPLATE.md
flutter-app/
TEMPLATE.md
monorepo-turborepo/
TEMPLATE.md
nextjs-fullstack/
TEMPLATE.md
nextjs-saas/
TEMPLATE.md
nextjs-static/
TEMPLATE.md
nuxt-app/
TEMPLATE.md
python-fastapi/
TEMPLATE.md
react-native-app/
TEMPLATE.md
SKILL.md
appdeploy/
SKILL.md
appdrag-automation/
SKILL.md
architecture-decision-records/
SKILL.md
audio-transcriber/
CHANGELOG.md
examples/
basic-transcription.sh
README.md
references/
tools-comparison.md
scripts/
install-requirements.sh
transcribe.py
SKILL.md
audit-context-building/
SKILL.md
auri-core/
SKILL.md
autonomous-agent-patterns/
SKILL.md
autonomous-agents/
SKILL.md
autoresearch-agent/
references/
experiment-domains.md
program-template.md
scripts/
log_results.py
run_experiment.py
setup_experiment.py
SKILL.md
axiom/
examples/
walkthrough-en.md
walkthrough-zh.md
references/
assumption-types.md
scenarios.md
SKILL.md
azure-ai-agents-persistent-dotnet/
SKILL.md
azure-ai-agents-persistent-java/
SKILL.md
azure-ai-ml-py/
SKILL.md
azure-ai-openai-dotnet/
SKILL.md
azure-ai-projects-dotnet/
SKILL.md
azure-ai-projects-ts/
SKILL.md
azure-ai-textanalytics-py/
SKILL.md
azure-data-tables-java/
SKILL.md
azure-data-tables-py/
SKILL.md
azure-keyvault-py/
SKILL.md
azure-search-documents-dotnet/
SKILL.md
azure-search-documents-py/
SKILL.md
azure-search-documents-ts/
SKILL.md
azure-storage-blob-java/
SKILL.md
azure-storage-blob-py/
SKILL.md
azure-storage-blob-rust/
SKILL.md
azure-storage-blob-ts/
SKILL.md
azure-storage-file-datalake-py/
SKILL.md
azure-storage-file-share-py/
SKILL.md
azure-storage-file-share-ts/
SKILL.md
azure-storage-queue-py/
SKILL.md
azure-storage-queue-ts/
SKILL.md
backend-development-feature-development/
SKILL.md
bdi-mental-states/
SKILL.md
behavioral-modes/
SKILL.md
bigml-automation/
SKILL.md
bilig-workpaper/
SKILL.md
bill-gates/
SKILL.md
blueprint/
SKILL.md
board/
board-meeting/
references/
meeting-facilitation.md
SKILL.md
templates/
meeting-agenda.md
meeting-minutes.md
SKILL.md
bullmq-specialist/
SKILL.md
business-operations-skills/
SKILL.md
buywhere-product-catalog/
SKILL.md
c-level-agents/
SKILL.md
c-level-skills/
SKILL.md
c4-context/
SKILL.md
capacity-planner/
assets/
capacity_brief_template.md
references/
capacity_anti_patterns.md
ops_workforce_planning_canon.md
queueing_theory_canon.md
scripts/
capacity_modeler.py
hiring_sequencer.py
utilization_analyzer.py
SKILL.md
chief-customer-officer-advisor/
references/
cs_coverage_model.md
cs_team_org_evolution.md
customer_segmentation_strategy.md
retention_decomposition.md
scripts/
cs_coverage_calculator.py
customer_segmentation_designer.py
... 1600 moreShowing a partial view of a very large repo.
© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic
| 🧬 | ai-ml | 41 | Training, embeddings, vectors, NLP |
| 📱 | mobile | 14 | iOS, Android, Flutter, Swift, RN |