A collection of reusable skills for Claude Code agents.
/plugin marketplace add mayashavin/agent-skills
/plugin install agent-skills@maya-agent-skills
Skills are then available as /agent-skills:code-review, /agent-skills:test-plan-generate, etc.
To use skills without the plugin prefix (e.g., /test-plan-generate), copy the skill directory into your project:
cp -r skills/test-plan-generate .claude/skills/| Skill | Description |
|---|---|
code-review |
Review code changes for correctness, style, and potential issues |
test-plan-generate |
Generate an automation-first test plan for a given feature |
npm install
npm run buildnpm run validatenpm testCreate a new directory in skills/ with a SKILL.md file:
skills/my-skill/
└── SKILL.md
The SKILL.md file requires a description in the frontmatter:
---
description: What the skill does
---
Instructions for the agent to follow when this skill is invoked.import { validateSkill, validateAllSkills } from "agent-skills";
const result = validateSkill("skills/code-review/SKILL.md");
// { valid: true, skill: "code-review", errors: [] }
const results = validateAllSkills("skills/");
// ValidationResult[]