docs: add thesis report workflow evidence

This commit is contained in:
lda
2026-06-14 17:16:40 +07:00 Verified
parent 03762b1aa9
commit 1aa40285b1
10 changed files with 328 additions and 3 deletions
+3
View File
@@ -59,6 +59,9 @@ The case study should exist as a runnable example, not only prose. Target shape:
`examples/report_workflow/ops.py`, `input.md`, `wf.config.json`, a short
`README.md`, and commands for config validation, server startup, capability
calls, draft/artifact/deployment creation, run, inspect, and trace.
The runnable evidence bundle for this case study lives at
`examples/report_workflow/README.md`.
Keep the thesis-critical path deterministic. Do not require an LLM call inside
the case-study workflow. LLM nodes can be discussed as future work or an
+3
View File
@@ -180,6 +180,9 @@ stable.
- `wf run watch` provides polling-based progress UX.
- CLI expected errors are compact by default; `wf --verbose ...` preserves raw
tracebacks for debugging.
- Completed thesis case-study evidence bundle: `examples/report_workflow/`
provides a deterministic report workflow with Python source, fixture input,
config, runbook, and tests.
## Historical References
@@ -243,7 +243,7 @@ Create `examples/report_workflow/wf.config.json` with this exact JSON:
Run from repo root:
```powershell
uv run wf --config examples/report_workflow/wf.config.json config validate
uv run wf config validate examples/report_workflow/wf.config.json
```
Expected: command exits `0` and reports a valid config. If this command name differs in current code, inspect `uv run wf config --help` and update the runbook to the real command.
@@ -450,7 +450,7 @@ remote OAuth, LLM calls, or provider quota.
From the repository root:
```powershell
uv run wf --config examples/report_workflow/wf.config.json config validate
uv run wf config validate examples/report_workflow/wf.config.json
uv run wf-rpc-server --config examples/report_workflow/wf.config.json
```
@@ -12,7 +12,9 @@
## Dependency
This plan should run after `docs/superpowers/plans/2026-06-14-thesis-case-study-evidence.md` or after an equivalent report-workflow example exists at `examples/report_workflow/`.
This plan should run after the completed case-study evidence plan archived at
`docs/historical/superpowers/plans/2026-06-14-thesis-case-study-evidence.md` or
after an equivalent report-workflow example exists at `examples/report_workflow/`.
If `examples/report_workflow/README.md` does not exist, stop and implement the evidence plan first.