use pql decisions read for full body text
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

pql 1.4.4+ restores the 'decisions read' subcommand which returns
metadata + body + refs in one call. Reverts the temporary 'show
--with-refs' workaround.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jeroen Schweitzer
2026-04-27 18:54:40 +02:00
co-authored by Claude Opus 4.6
parent 1f028b336d
commit cf2ae48201
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, '--with-refs']);
return _runObject(['decisions', 'read', id]);
}
Future<List<Map<String, Object?>>> decisionCoverage() async {