Skip to content

mayashavin/agent-skills

Repository files navigation

Maya Agent Skills

A collection of reusable skills for Claude Code agents.

Installation

As a Claude Code plugin

/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.

As standalone skills (no prefix)

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/

Available 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

Development

Setup

npm install
npm run build

Validate skills

npm run validate

Run tests

npm test

Add a new skill

Create 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.

API

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[]

About

A collection of reusable skills for Claude Code agents, dedicated for swe and developers

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors