|
|
@@ -11,8 +11,6 @@ example-plugin/
|
|
|
├── .mcp.json # MCP server configuration
|
|
|
├── commands/
|
|
|
│ └── example-command.md # Slash command definition
|
|
|
-├── agents/
|
|
|
-│ └── example-agent.md # Agent definition
|
|
|
└── skills/
|
|
|
└── example-skill/
|
|
|
└── SKILL.md # Skill definition
|
|
|
@@ -30,21 +28,6 @@ description: Short description for /help
|
|
|
argument-hint: <arg1> [optional-arg]
|
|
|
allowed-tools: [Read, Glob, Grep]
|
|
|
---
|
|
|
-```
|
|
|
-
|
|
|
-### Agents (`agents/`)
|
|
|
-
|
|
|
-Agents are spawned by Claude via the Task tool. Define them as markdown files:
|
|
|
-
|
|
|
-```yaml
|
|
|
----
|
|
|
-name: agent-name
|
|
|
-description: When to use this agent
|
|
|
-tools: Glob, Grep, Read, Write
|
|
|
-model: sonnet
|
|
|
-color: blue
|
|
|
----
|
|
|
-```
|
|
|
|
|
|
### Skills (`skills/`)
|
|
|
|
|
|
@@ -71,12 +54,8 @@ Configure external tool integration via Model Context Protocol:
|
|
|
}
|
|
|
```
|
|
|
|
|
|
-## Installation
|
|
|
-
|
|
|
-Copy or symlink this plugin directory to your Claude Code plugins location.
|
|
|
-
|
|
|
## Usage
|
|
|
|
|
|
- `/example-command [args]` - Run the example slash command
|
|
|
-- The example agent is available for Claude to spawn when relevant
|
|
|
- The example skill activates based on task context
|
|
|
+- The example MCP activates based on task context
|