updated readme

This commit is contained in:
Noah Zweben MacBook
2025-11-20 14:26:30 -08:00
parent 0f1535a523
commit 6ba8050494
2 changed files with 3 additions and 22 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.DS_Store
.claude/

View File

@@ -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