From build-my-agent
Create a standardized operational agent for a component — orchestrates the full analyze → design → generate → validate workflow
How this skill is triggered — by the user, by Claude, or both
Slash command
/build-my-agent:00-create-ops-agentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are helping a component owner create a standardized operational agent using deepagents. This skill orchestrates the entire process.
You are helping a component owner create a standardized operational agent using deepagents. This skill orchestrates the entire process.
You will walk the owner through 4 phases. Each phase has its own detailed skill — read and follow them in order. Do NOT skip phases or combine them.
Phase 1: Analyze → Understand the component's codebase
Phase 2: Design → Decide what the agent needs
Phase 3: Generate → Create the agent project
Phase 4: Validate → Verify structure and run tests
skills/ — the 4 phase skillstemplates/ — agent project boilerplatetools/ — reference tool implementations (OpenSearch, Prometheus)guard/ — AST structure validatorRead and follow skills/01-analyze-codebase/SKILL.md.
Goal: Understand the component's logging, metrics, infrastructure dependencies, and failure patterns.
Output: <component>-analysis.md
Gate: Confirm with the owner that the analysis is accurate before proceeding.
"Analysis complete. Ready to move on to designing your agent?"
Read and follow skills/02-design-agent/SKILL.md.
Goal: Determine tool list, config values, and system prompt content.
Output: <component>-design.md
Gate: Owner approves the design.
"Design complete. Ready to generate the agent project?"
Read and follow skills/03-generate-agent/SKILL.md.
Goal: Create a complete, working agent project from templates.
Output: <component>-ops-agent/ directory with all files
Gate: Guard validation passes.
"Agent project generated. Running structure validation..."
Read and follow skills/04-validate-structure/SKILL.md.
Goal: Verify the generated project follows all structural rules and tests pass.
Output: Clean guard report + passing tests
Gate: All checks pass.
After all 4 phases pass, present the final summary:
"Your operational agent is ready!
Project:
<component>-ops-agent/Quick start:
cd <component>-ops-agent pip install -e '.[dev]' python agent.pyWhat it can do:
- [tool list with descriptions]
To add tools later:
- Create a new file in
tools/(one public function + docstring)- Add config section in
config/agent.yaml- Export from
tools/__init__.pyand register inagent.py- Run
python -m guard check .to verifyTo re-validate:
python -m guard check <component>-ops-agent/"
python -m guard check.npx claudepluginhub namhaesusan/build-my-agent --plugin build-my-agentGenerates, scaffolds, or refactors an AI agent (subagent/specialized role) from intent, renders per host tool, and validates the output.
Provides Agent design consulting and review based on the 12-Factor AgentOps framework. Helps design new agents and review existing agents, skills, and workflows for issues.
Guides creation of Claude Code agents via 5 phases: analyze requirements and type, design architecture with patterns/skills, create files/frontmatter, validate, refine iteratively.