26 lines
922 B
Markdown
26 lines
922 B
Markdown
# Agent Factory Plugin
|
|
|
|
Plugin that guides users through building complete autonomous agent systems
|
|
using Claude Code. Installed via `/install` or `--plugin-dir`.
|
|
|
|
## What this plugin does
|
|
|
|
Guides users through building their own multi-agent system:
|
|
agents, skills, hooks, automation, and deployment config.
|
|
The `/agent-factory:build` command runs a 7-phase guided workflow.
|
|
|
|
## Plugin structure
|
|
|
|
- `commands/` -- 4 user-invoked slash commands
|
|
- `agents/` -- 2 plugin agents (builder, deployment-advisor)
|
|
- `skills/` -- 2 auto-triggering knowledge skills
|
|
- `scripts/templates/` -- file templates the builder copies
|
|
into the user's project
|
|
|
|
## Rules
|
|
|
|
- Never write files outside the user's project directory
|
|
- Always ask before overwriting existing files
|
|
- Hook templates must be bash 3.2 compatible (Intel Mac)
|
|
- Generated agents must have valid YAML frontmatter
|
|
- Use `${CLAUDE_PLUGIN_ROOT}` for all intra-plugin paths
|