recent_events
Read recent workspace activity events from the .nogra events log to inspect public activity recorded through post_event.
Instructions
Read recent workspace activity events.
Returns recent JSONL event entries from the configured workspace .nogra events log.
When to use:
- Inspect recent public workspace activity recorded through post_event.
- Build caller-driven views over the local event substrate without reading resources directly.
When NOT to use:
- Do not use this for run status history; use recent_runs for run updates.
- Do not use this to append events; use post_event for writes.
Examples:
>>> recent_events(limit=20)
{"workspaceId": "local", "events": [...]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of recent workspace events to return. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||