delimit_ledger_list
List ledger items with filters for status, priority, tags, text, time window, or external link. Supports sorting and pagination.
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 |
|---|---|---|---|
| venture | No | Project name/path. Empty = auto-detect. | |
| ledger | No | "ops", "strategy", or "both" (default). | both |
| status | No | Single-value status filter (back-compat). | |
| 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"). | |
| tags_contains_all | No | Comma-separated tags; item must contain ALL. | |
| text | No | Case-insensitive substring match on title + description. | |
| linked_external_id | No | Substring match in description / tags / context (github URL, Linear id, Discord thread). | |
| created_before | No | ISO-8601 timestamp upper bound on creation time. If omitted, no upper bound is applied. | |
| created_after | No | ISO-8601 timestamp lower bound on creation time. If omitted, no lower bound is applied. | |
| updated_before | No | ISO-8601 timestamp upper bound on last-update time. If omitted, no upper bound is applied. | |
| updated_after | No | ISO-8601 timestamp lower bound on last-update time. If omitted, no lower bound is applied. | |
| sort | No | "updated_at" (default), "created_at", or "priority". | updated_at |
| order | No | "asc" or "desc" (default). | desc |
| fields | No | Response projection. "" / "*" = full; "slim" = subset; CSV = those fields only. Unknown names ERROR. | |
| limit | No | Page size. Default 20. | |
| cursor | No | Opaque pagination token from prior next_cursor. Becomes invalid if filters change between calls. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||