Hires specialist agents — finds, installs skills, MCPs, and agents from registry, generates agent files.
This command analyzes your tech stack, discovers available specialist agents and skills from the awos registry, installs them, and generates agent configuration files. It bridges the gap between your architecture decisions and the specialist agents needed to execute them. Output:
- New or updated agent files in
.claude/agents/ - Installed skills in
.claude/skills/ - Configured MCP servers in
.mcp.json
context/product/architecture.mdmust exist. Run/awos:architecturefirst.
Optionally reads the latest technical-considerations.md for additional technology context.
- Extracts technologies from your architecture (and tech spec, if available) — every framework, language, database, and cloud service.
- Groups into domains — Frontend, Backend, Database, Infrastructure, Testing, Documentation.
- Maps to agent roles — proposes a specialist agent for each domain (e.g.,
react-frontend,python-backend). - Checks what exists — scans your current agents and skills to classify coverage as Covered, Partially Covered, or Missing.
- Searches the registry — queries the
awos-recruitmentMCP server for skills, MCPs, and pre-built agents matching your gaps. - Installs components — runs installation commands for confirmed skills, MCPs, and agents.
- Generates agent files — for any remaining gaps, creates agent files from the template with proper configuration.
- Reports gaps — warns about technologies that couldn't be covered by registry components and suggests creating custom skills.
- "This writes my application code." No. It sets up the specialist agents that will later write code when you run
/awos:implement. - "I only need to run this once." Run it again after
/awos:techif your technical spec introduces new technologies not covered by your current agents. - "It replaces manual agent configuration." It automates what it can, but warns about gaps. You may still need to create custom skills for project-specific patterns.
# Good — let it analyze your architecture automatically:
> /awos:hire
# Good — focus on specific technologies:
> /awos:hire cover need OAuth2, JWT, Redis session management
# Good — after /awos:tech flags new capabilities:
> /awos:hire cover 002-file-upload: need AWS S3, image processingYou're ready to start the feature cycle. Run /awos:spec to create a functional specification for your next feature.