clean up decision debug prints, add --with-refs to show
test / unit + widget + golden + a11y (push) Failing after 28s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped

Remove debug print statements. Pass --with-refs to pql decisions show
so cross-references render in the detail view.

The decision body text is not available from pql — it indexes metadata
only. The body section of the D-record lives in the markdown file.
Rendering it requires either a pql --with-context flag or direct file
read + section extraction.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jeroen Schweitzer
2026-04-27 09:55:30 +02:00
co-authored by Claude Opus 4.6
parent 63e15d99cf
commit 1f028b336d
2 changed files with 101 additions and 101 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ class PqlClient {
}
Future<Map<String, Object?>> decisionRead(String id) async {
return _runObject(['decisions', 'show', id]);
return _runObject(['decisions', 'show', id, '--with-refs']);
}
Future<List<Map<String, Object?>>> decisionCoverage() async {