> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check Protocol • AI Agent SDK

> HealthCheckProtocol: Minimum protocol implemented by runtime health checks.

# HealthCheckProtocol

> Defined in the [**Health Check**](../modules/health_check) module.

<Badge color="blue">AI Agent</Badge>

Minimum protocol implemented by runtime health checks.

A check may additionally expose `repair(context, findings)`.  Keeping
repair outside the required protocol lets diagnostic-only integrations
participate without pretending that every problem is safe to automate.

## Methods

<CardGroup cols={2}>
  <Card title="check_id()" icon="function" href="../functions/HealthCheckProtocol-check_id">
    Stable namespaced identifier for this check.
  </Card>

  <Card title="detect()" icon="function" href="../functions/HealthCheckProtocol-detect">
    Return current health findings without mutating external state.
  </Card>
</CardGroup>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/runtime/health_check.py#L65">
  `praisonaiagents/runtime/health_check.py` at line 65
</Card>
