원클릭으로
team-setup
Set up RUBRIC Team — configure agent roster, roles, and skill mapping. Use when installing or configuring the Team template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Set up RUBRIC Team — configure agent roster, roles, and skill mapping. Use when installing or configuring the Team template.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up RUBRIC Agents — configure agent status monitoring, hooks, and the live dashboard. Use when installing or configuring the Agents template.
Set up RUBRIC Crons — configure cron registry paths and visualize scheduled tasks. Use when installing or configuring the Crons template.
Set up RUBRIC Flows — create workflow visualizations, configure pipeline steps, connect to live execution. Use when installing or configuring the Flows template.
Set up RUBRIC Scaffold — configure agents, tabs, status hooks, and the dashboard. Use when installing or configuring the Scaffold template.
Set up RUBRIC Skill Trees — configure workspace scanning, agent icons, and skill visualization. Use when installing or configuring the Skill Tree template.
Research competitors, compare features, pricing, and positioning. Output a structured comparison.
| name | team-setup |
| description | Set up RUBRIC Team — configure agent roster, roles, and skill mapping. Use when installing or configuring the Team template. |
Note: This skill is written for Claude Code. If the user runs a different agent framework, adapt these instructions to their setup.
Edit config.json. The lead object defines your orchestrator:
{
"lead": {
"id": "robo",
"name": "Robo",
"badge": "Lead",
"role": "Chief of Staff",
"description": "Orchestration, planning, memory, quick tasks",
"skills": ["Orchestration", "Planning", "Memory"],
"icon": "Crown",
"color": "#f5a623"
}
}
Add agents to the agents array:
{
"agents": [
{
"id": "devo",
"name": "Devo",
"role": "Dev Agent",
"description": "Coding, building, infra, debugging",
"skills": ["Building", "Debugging", "Infrastructure"],
"icon": "Spark",
"color": "#58abf5"
}
]
}
Set "mission": "Your team's mission here" in config.json. Displays as a header quote.
Set skillsRoot to the parent directory and serverLabel to identify the server. The dashboard scans .claude/skills/ under each agent's workspace to auto-discover skills. Skills in each agent's skills array display as tags.
If you use RUBRIC Scaffold, keep agent id, name, color, and icon consistent across both config files. This ensures the Team view and Scaffold tabs show the same identity.
agents array with id, name, role, description, skills, icon, colorcd /path/to/team && npm install && node server.js