1.2 KiB
1.2 KiB
name, description
| name | description |
|---|---|
| af-report | Generate a full process report for an ArcheFlow run. <example>User: "/af-report"</example> <example>User: "/af-report 2026-04-06-jwt-auth"</example> |
ArcheFlow Run Report
- Parse
run_idfrom args. If none provided, read the latest run_id from.archeflow/events/index.jsonl. - Run
./lib/archeflow-report.sh .archeflow/events/<run_id>.jsonlif the script exists. Display its output. - If the script does not exist, read
.archeflow/events/<run_id>.jsonland produce a markdown report:
# ArcheFlow Report: <run_id>
## Overview
| Field | Value |
|-------|-------|
| Task | ... |
| Workflow | fast/standard/thorough |
| Cycles | N |
| Duration | Xm Ys |
| Total Cost | $X.XX |
## Phase Summary
For each phase (Plan, Do, Check, Act): agents involved, duration, token cost, key outputs.
## Findings
Table of all findings: severity, category, description, archetype source, resolution (fixed/dismissed/deferred).
## Fixes Applied
List of fixes with before/after summary and which finding they addressed.
## Lessons Learned
Any new lessons extracted to memory during this run.
- If no events found for the run_id, say: "No events found for run
<run_id>."