Help us improve
Share bugs, ideas, or general feedback.
Marketplace for Tyler-R-Kendrick agent skills
npx claudepluginhub tyler-r-kendrick/agent-skillsCollection of agent skills
Share bugs, ideas, or general feedback.
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-skills
Or 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.
pip install -r requirements.txt
Validate all skills:
npm run validate
# or
bash scripts/validate.sh
Validate 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