actiond_run_report
Generate a structured goal run report for a repository, summarizing commits, CI job verdicts, task handoff status, and recovery points with verifier provenance.
Instructions
Generate a goal run report for a repository: one structured JSON that reconstructs what a run changed and how well it was verified, without writing any new state. Aggregates git log, ActionD CI/CD job verdicts, and — when a task management system report is available — the task's handoff status into sections that answer: what changed (commits), why (declared task intent), did it work (per-job verdicts pass/fail/unknown), how trustworthy the results are (verification depth and verifier provenance), can someone else continue the work, and can it be rolled back (recovery points with evidence levels). Anything not knowable is reported as an explicit "unknown" — never silently converted to pass/fail — and a Limitations list states what the report cannot yet guarantee. Optional path (defaults to the current directory), commit (focus the report on one commit), task_id/project_id (look up the task report), and limit (commits to include, default 10).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Repository path (defaults to the current directory) | |
| limit | No | Number of git log commits to include (default 10) | |
| commit | No | Focus the report on a specific commit (default: the most recent N commits) | |
| task_id | No | Task ID; when provided, the report also looks up the task report and its handoff status | |
| project_id | No | Project ID in the task management system (defaults to the repository name) |