> ## 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 projects

> List a cursor-paginated page of filtered Linear projects.

`listProjects` filters projects by access, ownership, membership, status, state, or text.

```ts automations/list-linear-projects.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listProjects } from "automate.ax/linear"

export default automation("List Linear projects", () => {
  onHttpRequest({ scope: "automation" })
  listProjects({
    accessibleTeamId: "team-uuid",
    orderBy: "updatedAt",
    limit: 50,
  })
})
```

Optional filters are `accessibleTeamId`, `leadId`, `memberId`, `search`, legacy `state`, and `statusId`. `orderBy` is `"createdAt"` or `"updatedAt"` and defaults to `"updatedAt"`. Common page fields are `limit` (1–50, default 50), `after`, and `includeArchived`; optional `account` defaults to the project binding.

Returns `{ projects: LinearProject[]; pageInfo: LinearPageInfo }`.
