Skip to main content
AAS

Core Concepts

Key terminology and concepts

Initiatives

An initiative is the fundamental unit of governance in AgentAAS OS. It represents any bounded effort that consumes capital — whether that is a multi-year digital transformation program, a quarterly product sprint, or a single cloud migration workload.

Initiatives have a lifecycle (planning, active, on-hold, completed, cancelled) and are associated with budgets, timelines, owners, and data source mappings. The platform tracks each initiative from inception through completion, maintaining a full history of health scores, cost actuals, and governance events.

Health Scores

Every initiative in AgentAAS OS receives a composite health score computed from five weighted dimensions:

  • Cost (25%) — Budget adherence, burn rate, and forecast accuracy.
  • Schedule (25%) — Timeline adherence, milestone completion, and velocity trends.
  • Scope (20%) — Scope stability, change request volume, and requirements coverage.
  • Risk (15%) — Open risk count, risk severity distribution, and mitigation progress.
  • Stakeholder (15%) — Engagement frequency, decision latency, and alignment signals.

Each dimension is scored on a 0-100 scale. The composite score uses configurable weights (the defaults above work well for most organizations). Scores are recomputed continuously as new data arrives.

// Health score response structure
{
  "initiative_id": "init_8f3k2m",
  "composite_score": 72,
  "dimensions": {
    "cost": { "score": 85, "trend": "stable", "weight": 0.25 },
    "schedule": { "score": 58, "trend": "declining", "weight": 0.25 },
    "scope": { "score": 90, "trend": "improving", "weight": 0.20 },
    "risk": { "score": 65, "trend": "stable", "weight": 0.15 },
    "stakeholder": { "score": 60, "trend": "declining", "weight": 0.15 }
  },
  "status": "amber",
  "computed_at": "2025-01-15T14:30:00Z"
}

Drift

Drift occurs when an initiative deviates from its planned trajectory. AgentAAS OS monitors three types of drift:

  • Cost Drift — Actual spend exceeding forecasted or budgeted amounts. Measured as a percentage deviation from the approved budget baseline.
  • Scope Drift — Changes to requirements, deliverables, or work packages that were not part of the original plan. Detected through change request analysis and integration with project management tools.
  • Timeline Drift — Slippage in milestone dates or delivery schedules. Computed by comparing planned vs. actual completion dates and velocity metrics.

Each type of drift has configurable thresholds. When a threshold is breached, the platform generates an alert and can optionally trigger an AI agent workflow to investigate the root cause and recommend corrective actions.

Portfolios

A portfolio is a logical grouping of related initiatives. Portfolios enable executives to view aggregate health scores, total capital allocation, and cross-initiative dependencies. Common portfolio structures include:

  • By business unit (e.g., "Engineering Initiatives", "Marketing Programs")
  • By strategic theme (e.g., "Digital Transformation", "Cost Optimization")
  • By fiscal quarter or year
  • By technology domain (e.g., "Cloud Infrastructure", "Data Platform")

Workspaces

A workspace is the top-level organizational boundary in AgentAAS OS. All data, users, integrations, and configurations are scoped to a workspace. Workspaces provide complete data isolation between tenants or organizational units. Most organizations use a single workspace, but multi-workspace configurations are supported for conglomerates or managed service providers.