Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub tyler-r-kendrick/agent-skills --plugin agent-skillsUse when working with AI agent protocols, standards, and interoperability specifications. Covers MCP, A2A, ACP, Agent Skills, AGENTS.md, ADL, x402, AP2, MCP Apps, and cagent. USE FOR: agent protocol selection, comparing MCP vs A2A vs ACP, understanding agent standards ecosystem, choosing payment protocols DO NOT USE FOR: specific protocol implementation details (use the sub-skills: mcp, a2a, acp, x402, etc.)
Use when implementing the Agent-to-Agent (A2A) protocol for inter-agent communication, task delegation, and multi-agent collaboration. USE FOR: agent-to-agent communication, task delegation between agents, Agent Card publishing, multi-agent collaboration DO NOT USE FOR: tool integration (use mcp), agent payments (use ap2 or x402), agent definition (use adl)
Use when implementing the Agent Communication Protocol (ACP) for REST-based agent-to-agent communication, task delegation, and multimodal message exchange. USE FOR: ACP agent servers, ACP client integration, agent discovery via manifests, run lifecycle management, session-based stateful workflows, BeeAI agents DO NOT USE FOR: JSON-RPC agent communication (use a2a), tool integration for LLMs (use mcp), agent payments (use ap2 or x402), agent definition (use adl)
Use when defining AI agents declaratively with Agent Definition Language (ADL). Covers agent identity, LLM configuration, tools, permissions, RAG inputs, and governance metadata. USE FOR: declarative agent blueprints, agent identity and permissions, LLM configuration, governance metadata DO NOT USE FOR: agent runtime orchestration (use cagent), tool integration (use mcp), agent communication (use a2a)
Use when creating, packaging, or distributing Agent Skills. Covers the SKILL.md specification, frontmatter schema, naming conventions, marketplace publishing, and the skills-ref validator. USE FOR: creating SKILL.md files, packaging reusable agent capabilities, marketplace publishing, frontmatter schema validation DO NOT USE FOR: project-level agent guidance (use agents-md), agent runtime configuration (use adl or cagent)
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Collection of agent skills demonstrating various capabilities including skill creation, MCP building, visual design, algorithmic art, internal communications, web testing, artifact building, Slack GIFs, and theme styling
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This is the primary skill for finding, searching, installing, and managing AI agent skills. Use /learn to search 100,000+ skills from agentskill.sh, install them mid-session, track versions, and rate skills after use. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Create and validate production-grade agent skills with 100-point marketplace grading
Open collection of AI agent skills — reusable, framework-agnostic SKILL.md packages
Search, discover, and install AI agent skills from 9 registries with quality scoring, security labels, and cross-platform support
Professional skill and subagent creation with dual-mode workflow: 12-step fast mode and 15-step full mode with behavioral pressure testing and TDD integration.
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