Delimit Ledger List
delimit_ledger_listFilter and page through ledger items by status, priority, tags, text, time range, or external link. Sort results by updated date, created date, or priority to pinpoint the records you need.
Instructions
List ledger items with rich filters, sort, and pagination (LED-1145).
When to use: to query a venture's ledger with filters — by status, priority, tags, text, time window, or external link. When NOT to use: for a top-N summary (use delimit_ledger_context) or to fetch a single item (delimit_ledger_query).
Sibling contrast: delimit_ledger_context is the top-5 summary; delimit_ledger_query fetches one; this is the powerful list call.
Side effects: read-only. Calls ai.ledger_manager.list_items.
Single-value status / priority are kept for back-compat.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | "updated_at" (default), "created_at", or "priority". | updated_at |
| text | No | Case-insensitive substring match on title + description. | |
| limit | No | Page size. Default 20. | |
| order | No | "asc" or "desc" (default). | desc |
| cursor | No | Opaque pagination token from prior next_cursor. Becomes invalid if filters change between calls. | |
| fields | No | Response projection. "" / "*" = full; "slim" = subset; CSV = those fields only. Unknown names ERROR. | |
| ledger | No | "ops", "strategy", or "both" (default). | both |
| status | No | Single-value status filter (back-compat). | |
| venture | No | Project name/path. Empty = auto-detect. | |
| priority | No | Single-value priority filter (back-compat). | |
| status_in | No | Comma-separated statuses (e.g. "open,blocked"). | |
| priority_in | No | Comma-separated priorities (e.g. "P0,P1"). | |
| created_after | No | ISO-8601 timestamp lower bound on creation time. If omitted, no lower bound is applied. | |
| updated_after | No | ISO-8601 timestamp lower bound on last-update time. If omitted, no lower bound is applied. | |
| created_before | No | ISO-8601 timestamp upper bound on creation time. If omitted, no upper bound is applied. | |
| updated_before | No | ISO-8601 timestamp upper bound on last-update time. If omitted, no upper bound is applied. | |
| tags_contains_all | No | Comma-separated tags; item must contain ALL. | |
| linked_external_id | No | Substring match in description / tags / context (github URL, Linear id, Discord thread). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||