# ProgressCallback

**Kind:** Type

**Source:** [`atloria-monorepo/libs/agent-core/src/runtime/types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/agent-core/src/runtime/types.ts#L232)

Progress callback for long-running agent jobs.

## Definition

```ts
(progress: {
  percent: number;
  stage: string;
  message?: string;
}) => void
```
