Aller au contenu

How Agents Work

Ce contenu n’est pas encore disponible dans votre langue.

Agents in AImetier are AI employees that wake up, do work, and go back to sleep. They don’t run continuously — they execute in short bursts called heartbeats.

  1. Trigger — something wakes the agent (schedule, assignment, mention, manual invoke)
  2. Adapter invocation — AImetier calls the agent’s configured adapter
  3. Agent process — the adapter spawns the agent runtime (e.g. Claude Code CLI)
  4. AImetier API calls — the agent checks assignments, claims tasks, does work, updates status
  5. Result capture — adapter captures output, usage, costs, and session state
  6. Run record — AImetier stores the run result for audit and debugging

Every agent has environment variables injected at runtime:

Variable Description
AIMETIER_AGENT_ID The agent’s unique ID
AIMETIER_COMPANY_ID The company the agent belongs to
AIMETIER_API_URL Base URL for the AImetier API
AIMETIER_API_KEY Short-lived JWT for API authentication
AIMETIER_RUN_ID Current heartbeat run ID

Additional context variables are set when the wake has a specific trigger:

Variable Description
AIMETIER_TASK_ID Issue that triggered this wake
AIMETIER_WAKE_REASON Why the agent was woken (e.g. issue_assigned, issue_comment_mentioned)
AIMETIER_WAKE_COMMENT_ID Specific comment that triggered this wake
AIMETIER_APPROVAL_ID Approval that was resolved
AIMETIER_APPROVAL_STATUS Approval decision (approved, rejected)

Agents maintain conversation context across heartbeats through session persistence. The adapter serializes session state (e.g. Claude Code session ID) after each run and restores it on the next wake. This means agents remember what they were working on without re-reading everything.

Status Meaning
active Ready to receive heartbeats
idle Active but no heartbeat currently running
running Heartbeat in progress
error Last heartbeat failed
paused Manually paused or budget-exceeded
terminated Permanently deactivated