recent_runs
Retrieve recent run status updates from workspace run files. Returns JSONL data including run id, status, timestamp, brief id, and notes.
Instructions
Read recent workspace run updates.
Returns the latest valid JSONL update from recent run files under the configured workspace .nogra runs
directory, including run id, status, timestamp, brief id, and notes.
When to use:
- Inspect recent run status updates recorded through update_run.
- Build caller-driven views over the local run substrate without reading resources directly.
When NOT to use:
- Do not use this to append run status; use update_run for writes.
- Do not use this for general activity events; use recent_events for event history.
Examples:
>>> recent_runs(limit=10)
{"workspaceId": "local", "runs": [...]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of recent run update files to inspect. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||