diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d9c5ddb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.DS_Store +.claude/ \ No newline at end of file diff --git a/plugins/example-plugin/README.md b/plugins/example-plugin/README.md index 1570b60..700e6c1 100644 --- a/plugins/example-plugin/README.md +++ b/plugins/example-plugin/README.md @@ -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: [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