From 41a94b043d4c011fa327e1858027de9b76a7079c Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 24 Apr 2026 11:29:24 +0200 Subject: [PATCH] update docs for --with-context consolidation Pql skill: ticket show flags updated to reflect --with-context replacing --with-decision and --with-children. Co-Authored-By: Claude --- .claude/skills/pql/SKILL.md | 2 +- CHANGELOG.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.claude/skills/pql/SKILL.md b/.claude/skills/pql/SKILL.md index f2cf9862..d917a9eb 100644 --- a/.claude/skills/pql/SKILL.md +++ b/.claude/skills/pql/SKILL.md @@ -103,7 +103,7 @@ Always `pql decisions sync` before querying if decisions/*.md may have changed. |---|---| | `pql ticket new "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 [--with-decision] [--with-blockers] [--with-children]` | Show with joins | +| `pql ticket show [--with-context] [--with-blockers]` | Show with joins (context = ancestors + decisions + children) | | `pql ticket status ` | Transition (batch via comma-separated IDs) | | `pql ticket assign ` | Set assignee | | `pql ticket block --by ` | Add blocker | diff --git a/CHANGELOG.md b/CHANGELOG.md index 513aa7cd..e509079d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.