Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugins/plugin-dev/skills/agent-development/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Agents are autonomous subprocesses that handle complex, multi-step tasks indepen
| **Commands** | User-initiated actions | Explicit `/command` invocation | `/deploy production` |
| **Skills** | Knowledge and guidance | Model-invoked based on context | Domain expertise for PDF processing |

> **See also:** For command development, load the `command-development` skill. For skill development, load the `skill-development` skill.

### Choose Agents When

- Task requires autonomous, multi-step execution
Expand All @@ -38,13 +40,17 @@ Agents are autonomous subprocesses that handle complex, multi-step tasks indepen
- Action should not happen automatically
- Workflow requires user confirmation at each step

For command development guidance, see the `command-development` skill.

### Choose Skills When

- Providing knowledge or procedural guidance
- Extending Claude's domain expertise
- No autonomous execution needed
- Information should be available contextually on-demand

For skill development guidance, see the `skill-development` skill.

## Agent File Structure

### Complete Format
Expand Down
Loading