Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions plugins/plugin-dev/agents/agent-creator.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ Plugin development with agent addition, trigger agent-creator.
</commentary>
</example>

# Explicit sonnet for complex agent generation reasoning
model: sonnet
color: magenta
tools: ["Write", "Read"]
tools: Write, Read
---

You are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.
Expand Down Expand Up @@ -116,7 +117,7 @@ When a user describes what they want an agent to do, you will:
description: [Use this agent when... Examples: <example>...</example>]
model: inherit
color: [chosen-color]
tools: ["Tool1", "Tool2"] # Optional
tools: Tool1, Tool2 # Optional
---

[Complete system prompt]
Expand Down
6 changes: 3 additions & 3 deletions plugins/plugin-dev/agents/plugin-validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ assistant: "I'll use the plugin-validator agent to check the marketplace."

model: inherit
color: yellow
tools: ["Read", "Grep", "Glob", "Bash"]
tools: Read, Grep, Glob, Bash
---

You are an expert plugin and marketplace validator specializing in comprehensive validation of Claude Code plugin structure, configuration, components, and plugin marketplaces.
Expand Down Expand Up @@ -106,7 +106,7 @@ First, determine what type of validation is needed:
5. **Validate Agents** (if `agents/` exists):
- Use Glob to find `agents/**/*.md`
- For each agent file:
- Use the validate-agent.sh utility from agent-development skill
- Use `./skills/agent-development/scripts/validate-agent.sh` utility
- Or manually check:
- Frontmatter with `name`, `description`, `model`, `color`
- Name format (lowercase, hyphens, 3-50 chars)
Expand All @@ -125,7 +125,7 @@ First, determine what type of validation is needed:
- Validate referenced files exist

7. **Validate Hooks** (if `hooks/hooks.json` exists):
- Use the validate-hook-schema.sh utility from hook-development skill
- Use `./skills/hook-development/scripts/validate-hook-schema.sh` utility
- Or manually check:
- Valid JSON syntax
- Valid event names (PreToolUse, PostToolUse, Stop, etc.)
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-dev/agents/skill-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Skill description modified, review for triggering effectiveness.

model: inherit
color: cyan
tools: ["Read", "Grep", "Glob"]
tools: Read, Grep, Glob
---

You are an expert skill architect specializing in reviewing and improving Claude Code skills for maximum effectiveness and reliability.
Expand Down
Loading