Home>>Configure QUAD
⚙️

QUAD Configurator

Set up your organization, connect integrations, and configure ticket labels. Export as quad.config.yaml.

1. Adoption Level

Choose how fast you want to transform

0D1D2D3D4D
Hyperspace2 months

Guardrails + self-improving

0D
12 months
1D
9 months
2D
6 months
3D
4 months
4D
2 months

2. Estimation Scheme

3. Type Abbreviation

4. Label Format

Live Preview

Your ticket labels will look like:

C1-D4-DOC
Circle 1 + Tetrahedron + Documentation
C2-D8-FEAT
Circle 2 + Octahedron + Feature
C3-D6-BUG
Circle 3 + Hexahedron + Bug
C4-D12-SEC
Circle 4 + Dodecahedron + Security

Configuration Summary

Adoption Level:Hyperspace (4D)
Estimation:Platonic Solids
Type Style:Short
Label Format:Mathematical
Timeline:2 months
# QUAD Configuration
# Generated by QUAD Configurator
# Organization: Your Company

version: "1.0"

# Organization
organization:
  id: "org_xxxxx"
  name: "Your Company"
  admin_email: "admin@yourcompany.com"
  plan: "medium"

# API Keys (reference to vault or env vars)
credentials:
  quad_api_key: ${QUAD_API_KEY}  # from environment
  quad_org_id: ${QUAD_ORG_ID}
  jira_oauth: ${JIRA_OAUTH_TOKEN}
  github_app_id: ${GITHUB_APP_ID}
  slack_bot_token: ${SLACK_BOT_TOKEN}

# Adoption Level
adoption:
  level: "hyperspace"
  name: "Hyperspace"
  dimension: "4D"
  timeline: "2 months"

# Integrations
integrations:
  enabled: ["jira", "github", "slack"]
  
  jira:
    instance: "yourcompany.atlassian.net"
    project_key: "QUAD"
  
  github:
    org: "yourcompany"
    default_branch: "main"
  
  slack:
    workspace: "yourcompany"
    channels:
      alerts: "#quad-alerts"
      updates: "#project-updates"

# Team Structure
team:
  directors: 2
  projects_per_director: 3
  total_projects: 6

# Circles
circles:
  - { id: "C1", name: "Management", focus: "B80/T20", enabled: true }
  - { id: "C2", name: "Development", focus: "B30/T70", enabled: true }
  - { id: "C3", name: "QA", focus: "B30/T70", enabled: true }
  - { id: "C4", name: "Infrastructure", focus: "B20/T80", enabled: true }

# Ticket Labels
ticket_labels:
  format: "{circle}-{estimate}-{type}"

  estimation:
    preset: "platonic"
    values: ["D4", "D6", "D8", "D12", "D20"]

  types:
    preset: "short"
    values: ["FEAT", "BUG", "SEC", "DEBT", "INFRA", "DOC", "SPIKE"]

# Webhooks (auto-configured by QUAD Platform)
webhooks:
  jira: "https://quad.platform/hooks/jira/${ORG_ID}"
  github: "https://quad.platform/hooks/github/${ORG_ID}"
  slack: "https://quad.platform/hooks/slack/${ORG_ID}"

# Agent Configuration
agents:
  enabled:
    - story-agent
    - dev-agent-ui
    - dev-agent-api
    - test-agent
    - review-agent
    - deploy-agent-dev
  requires_approval:
    - deploy-agent-prod

Related Documentation

View Demo Dashboard →