divisions.json 2.4 KB

12345678910111213141516171819202122
  1. {
  2. "_note": "Source of truth for the agent division set. Each division (a top-level agent directory) maps to a display label, a Lucide icon name (PascalCase), and a brand color (hex). Consumed by the Agency Agents app and any other catalog tooling. scripts/check-divisions.sh (CI: check-divisions.yml) fails the build if this list disagrees with the directories on disk, the AGENT_DIRS arrays in scripts/convert.sh and scripts/lint-agents.sh, or the path filters in lint-agents.yml. To add a division: create its directory, add an entry here, then run scripts/check-divisions.sh and update wherever it points. NOT every top-level directory is a division: integrations/ holds per-tool conversion OUTPUTS written by scripts/convert.sh (not source agents); strategy/ holds playbooks and runbooks with no agent frontmatter; both — plus examples/ and scripts/ — are excluded via NON_DIVISION_DIRS in check-divisions.sh. A division must contain at least one frontmatter agent file.",
  3. "divisions": {
  4. "academic": { "label": "Academic", "icon": "GraduationCap", "color": "#8B5CF6" },
  5. "design": { "label": "Design", "icon": "PenTool", "color": "#EC4899" },
  6. "engineering": { "label": "Engineering", "icon": "Code", "color": "#3B82F6" },
  7. "finance": { "label": "Finance", "icon": "DollarSign", "color": "#22C55E" },
  8. "game-development": { "label": "Game Development", "icon": "Gamepad2", "color": "#A855F7" },
  9. "gis": { "label": "GIS", "icon": "Map", "color": "#14B8A6" },
  10. "healthcare": { "label": "Healthcare", "icon": "Stethoscope", "color": "#0D9488" },
  11. "marketing": { "label": "Marketing", "icon": "Megaphone", "color": "#F97316" },
  12. "paid-media": { "label": "Paid Media", "icon": "Target", "color": "#EAB308" },
  13. "product": { "label": "Product", "icon": "Box", "color": "#D946EF" },
  14. "project-management": { "label": "Project Management", "icon": "ClipboardList", "color": "#0EA5E9" },
  15. "sales": { "label": "Sales", "icon": "TrendingUp", "color": "#10B981" },
  16. "security": { "label": "Security", "icon": "ShieldCheck", "color": "#EF4444" },
  17. "spatial-computing": { "label": "Spatial Computing", "icon": "Boxes", "color": "#06B6D4" },
  18. "specialized": { "label": "Specialized", "icon": "Sparkles", "color": "#6366F1" },
  19. "support": { "label": "Support", "icon": "LifeBuoy", "color": "#84CC16" },
  20. "testing": { "label": "Testing", "icon": "FlaskConical", "color": "#F59E0B" }
  21. }
  22. }