This directory contains AI agents that can be used across all projects via the `--plugin-dir` flag.
/plugin marketplace add judigot/ai/plugin install judigot-ai@judigot/aiThis directory contains AI agents that can be used across all projects via the --plugin-dir flag.
| Agent | Purpose |
|---|---|
code-reviewer | Git-based PR review with enterprise-grade analysis |
task-master | Worktree task execution with scope enforcement |
multitasker | Parallel worktree management |
agentic-workflow | Multi-agent coordination architecture |
All agents follow the Claude Code standard format with YAML frontmatter:
---
name: agent-identifier
description: Use this agent when [conditions]. Examples:
<example>
Context: [Situation]
user: "[Request]"
assistant: "[Response]"
<commentary>
[Why this agent triggers]
</commentary>
</example>
model: inherit
color: blue
tools: ["Read", "Write", "Bash", "Grep"]
---
[System prompt content]
| Field | Description |
|---|---|
name | Lowercase identifier with hyphens (e.g., code-reviewer) |
description | Starts with "Use this agent when..." with examples |
model | Usually inherit to use parent model |
color | Visual identifier: blue, green, orange, red, purple |
| Field | Description |
|---|---|
tools | Array of allowed tools: ["Read", "Write", "Bash", "Grep", "Glob"] |
.md file in this directory<example> blocks showing when the agent triggersThe agent is immediately available in all projects using this plugin.
Agents are auto-discovered when using the plugin:
claude --plugin-dir ~/ai
Claude Code will automatically invoke agents based on their description field, or you can reference them explicitly.
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.