update docs for --with-context consolidation
test / unit + widget + golden + a11y (push) Failing after 26s
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / integration_test (xvfb) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped

Pql skill: ticket show flags updated to reflect --with-context
replacing --with-decision and --with-children.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-04-24 11:29:24 +02:00
co-authored by Claude
parent 054808c634
commit 41a94b043d
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ Always `pql decisions sync` before querying if decisions/*.md may have changed.
|---|---|
| `pql ticket new <type> "title" [--decision D-NNN] [--priority P]` | Create (emits T-NNN) |
| `pql ticket list [--status S] [--team T] [--assigned A] [--label L]` | List with filters |
| `pql ticket show <id> [--with-decision] [--with-blockers] [--with-children]` | Show with joins |
| `pql ticket show <id> [--with-context] [--with-blockers]` | Show with joins (context = ancestors + decisions + children) |
| `pql ticket status <id[,id,...]> <new-status>` | Transition (batch via comma-separated IDs) |
| `pql ticket assign <id> <agent>` | Set assignee |
| `pql ticket block <id> --by <other>` | Add blocker |
+5
View File
@@ -156,6 +156,11 @@ heading, and (b) bumping `pubspec.yaml` `version:` in the same commit.
420px respectively (previous maximums). Context panel max raised
to 1000px.
- Ticket detail loading uses `pql ticket show --with-context` for
a single-call fetch of ancestors, decisions, and children.
Replaces N+1 parent-chain walk. `--with-decision` and
`--with-children` flags consolidated into `--with-context`.
- Ticket descriptions render through ClideMarkdown instead of plain
text, with clickable DQRT record links.