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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List action items

> Lists action items extracted from visible Krisp meetings.

`krisp.listActionItems` lists follow-up work extracted across visible meetings.

```ts automations/list-krisp-action-items.automation.ts theme={null}
import { automation, markSignificant, onSchedule } from "automate.ax"
import { krisp } from "automate.ax/krisp"

export default automation("List my open Krisp items", () => {
  onSchedule({ schedule: "0 9 * * 1-5" })
  markSignificant(
    krisp.listActionItems({
      completed: false,
      assignedToMe: true,
    }),
  )
})
```

Filter by `completed` or `assignedToMe`. `limit` defaults to `50` and accepts up to `200`; pass `cursor` from `nextCursor` to continue. The result contains `items`, `nextCursor`, and `total`. Each item includes its completion state, nullable assignee and due date, and source meeting details.
