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

# Agents

> Detected AI agent registry

# Agents API

Quint automatically detects AI agents running on enrolled machines using code signing identification. The agents API provides a registry of all detected agent platforms across your fleet.

## Endpoints

<CardGroup cols={2}>
  <Card title="GET /v1/agents" href="/api/endpoint/get-agents">
    List all detected agents across the fleet.
  </Card>

  <Card title="GET /v1/agents/{id}" href="/api/endpoint/get-agent-detail">
    Get detail for a specific detected agent.
  </Card>
</CardGroup>

## Agent Detection

The Quint daemon identifies AI agents through multiple signals:

* **Code signing** -- Primary detection method. The daemon inspects the code signing identity of processes to identify known agent binaries (e.g., `com.anthropic.claude-code`, `com.todesktop.cursor`).
* **Process name** -- Fallback matching against known agent binary names.
* **Behavioral fingerprinting** -- Activity patterns used to identify agent-driven (versus human) activity. This is an attribution signal for detecting agents, not a behavioral baseline used for enforcement.

## Supported Agents

Quint detects major AI coding assistants and agent frameworks out of the box:

| Agent          | Detection Method    |
| -------------- | ------------------- |
| Claude Code    | Code signing        |
| Cursor         | Code signing        |
| Windsurf       | Code signing        |
| Cline          | Extension detection |
| GitHub Copilot | Extension detection |
