mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
2. Multi-image Docker architecture - Created role-specific Dockerfiles: - agent-base.Dockerfile (shared foundation) - agent-pm.Dockerfile, agent-dev-be.Dockerfile, agent-dev-fe.Dockerfile - agent-qa-be.Dockerfile, agent-qa-fe.Dockerfile, agent-doc.Dockerfile, agent-ux.Dockerfile 3. Orchestrator updates - roboco/runtime/orchestrator.py: - Added AGENT_IMAGES mapping and get_agent_image() function - Updated _ensure_agent_image() to build base + specialized images - Updated _spawn_container() to use role-specific image - Made _generate_mcp_config() role-aware (though kept notify for all since they need to receive)
13 lines
295 B
Docker
13 lines
295 B
Docker
# UX/UI Agent
|
|
# Design tools - future: Figma MCP, image generation
|
|
|
|
FROM roboco-agent-base
|
|
|
|
# Future additions:
|
|
# - Figma MCP server integration
|
|
# - Image generation tools
|
|
# - Design token management
|
|
|
|
LABEL role="ux-designer"
|
|
LABEL description="UX/UI agent - design, prototyping, design system"
|