My personal agent-skills marketplace.
This repository serves as a marketplace for agent skills that can be discovered and installed using the Agent Skills open standard.
To pull down skills from this marketplace, use:
npx skills add Tyler-R-Kendrick/agent-skillsOr to list available skills:
npx skills list Tyler-R-Kendrick/agent-skills.claude-plugin/
marketplace.json # Marketplace configuration / catalog
skills/
dotnet/ # .NET ecosystem skills (aspnet-core, blazor, …)
.agents/
skills/ # Advanced skills (AGENTS.md + rules/ pattern)
scripts/
validate.sh # Build / validation script
package.json
requirements.txt # Python dependencies (skills-ref)
AGENTS.md # Contributor guidance for AI agents and humans
Skills live under the skills/ directory. Each skill is a directory containing a SKILL.md file with required YAML frontmatter (name, description) and Markdown body content. See AGENTS.md for full authoring guidance.
Skills are validated against the Agent Skills specification using the skills-ref Python package.
- Python 3.11+
- Install dependencies:
pip install -r requirements.txtValidate all skills:
npm run validate
# or
bash scripts/validate.shValidate a single skill:
agentskills validate skills/dotnet/aspnet-core
# or
bash scripts/validate.sh skills/dotnet/aspnet-core| Script | Description |
|---|---|
npm run validate |
Validate all SKILL.md files |
npm test |
Alias for validate |
MIT