Skip to main content
The security posture score gives you a single number (0-100) that reflects how well your organization governs its AI agent ecosystem. It is separate from the EU AI Act compliance readiness score — this score focuses on operational security, not regulatory compliance.

Score Dimensions

The score is calculated across 6 equally weighted dimensions:
DimensionWhat It MeasuresMax Points
Agent OwnershipPercentage of agents with at least one assigned owner16.7
Expiry CoveragePercentage of agents with an expiry date set16.7
Access ReviewsPercentage of agents with up-to-date reviews (not overdue)16.7
Quarantine HygieneNo unreviewed quarantined agents older than 7 days16.7
Kill Switch ReadinessAll high-risk agents have kill switch tested in the last 30 days16.7
Risk ClassificationPercentage of agents with a confirmed risk classification16.7

Get Security Posture

curl https://api.meshai.dev/security/posture \
  -H "Authorization: Bearer msh_YOUR_API_KEY"
{
  "success": true,
  "data": {
    "score": 72,
    "dimensions": {
      "agent_ownership": {
        "score": 14.2,
        "max": 16.7,
        "detail": "85% of agents have owners (34/40)"
      },
      "expiry_coverage": {
        "score": 10.0,
        "max": 16.7,
        "detail": "60% of agents have expiry dates (24/40)"
      },
      "access_reviews": {
        "score": 16.7,
        "max": 16.7,
        "detail": "All reviews up to date"
      },
      "quarantine_hygiene": {
        "score": 12.5,
        "max": 16.7,
        "detail": "1 quarantined agent pending review > 7 days"
      },
      "kill_switch_readiness": {
        "score": 8.3,
        "max": 16.7,
        "detail": "50% of high-risk agents tested (3/6)"
      },
      "risk_classification": {
        "score": 10.3,
        "max": 16.7,
        "detail": "62% of agents classified (25/40)"
      }
    },
    "agent_count": 40,
    "calculated_at": "2026-03-18T10:00:00Z"
  }
}

Score Ranges

RangeLabelInterpretation
90-100ExcellentFully governed agent ecosystem
70-89GoodMost governance controls in place
50-69FairSignificant gaps in agent governance
0-49PoorUrgent action needed

Security Posture vs Compliance Readiness

AspectSecurity Posture ScoreEU AI Act Readiness Score
ScopeOperational securityRegulatory compliance
Scale0-1000-120
FocusOwnership, reviews, quarantine, kill switchAudit trail, risk classification, HITL, documentation, data retention
EndpointGET /security/postureGET /compliance/readiness
Both scores are complementary. A high security posture score means your agents are well-governed day-to-day. A high compliance readiness score means you can demonstrate regulatory compliance.

Improving Your Score

Each dimension has clear, actionable steps:
  1. Agent Ownership — Assign owners to all agents using ABAC.
  2. Expiry Coverage — Set expiry dates via Agent Lifecycle.
  3. Access Reviews — Configure review schedules and complete overdue reviews.
  4. Quarantine Hygiene — Review and resolve quarantined agents within 7 days.
  5. Kill Switch Readiness — Test the kill switch on high-risk agents periodically.
  6. Risk Classification — Classify all agents using Risk Classification.