From 7f06120c87fbfd60de2127dc51bff622d7219630 Mon Sep 17 00:00:00 2001 From: Khaliq Date: Fri, 20 Feb 2026 17:35:12 +0100 Subject: [PATCH 1/2] Fix trail-snippet docs based on PR #15 review feedback - Remove pr-summary from export format list (CLI doesn't implement it) - Fix --branch example to show base branch (main) not feature branch - Fix --commits syntax from range (abc..def) to comma-separated (abc,def) Co-Authored-By: Claude Opus 4.6 --- docs/trail-snippet.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/trail-snippet.md b/docs/trail-snippet.md index d83570f..1f34d54 100644 --- a/docs/trail-snippet.md +++ b/docs/trail-snippet.md @@ -114,7 +114,7 @@ View a specific trajectory: trail show ``` -Export a trajectory (markdown, json, timeline, html, pr-summary): +Export a trajectory (markdown, json, timeline, html): ```bash trail export --format markdown ``` @@ -127,14 +127,14 @@ After a PR merge, compact related trajectories into a single summary: trail compact --pr 42 ``` -Compact by branch: +Compact by branch (finds trajectories with commits not in the specified base branch): ```bash -trail compact --branch feature/auth +trail compact --branch main ``` -Compact by commit range: +Compact by specific commits: ```bash -trail compact --commits abc123..def456 +trail compact --commits abc123,def456 ``` Compaction consolidates decisions and creates a grouped summary, reducing noise while preserving key decisions. From 929ba6f8f916249c1c7446a01c6d9f19f9db1ad7 Mon Sep 17 00:00:00 2001 From: Khaliq Date: Fri, 20 Feb 2026 20:30:55 +0100 Subject: [PATCH 2/2] Bump trail-snippet version to 1.1.1 for doc fixes Co-Authored-By: Claude Opus 4.6 --- prpm.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prpm.json b/prpm.json index aa9831d..ef227d9 100644 --- a/prpm.json +++ b/prpm.json @@ -9,7 +9,7 @@ "packages": [ { "name": "trail-snippet", - "version": "1.1.0", + "version": "1.1.1", "description": "AGENTS.md / CLAUDE.md snippet for agents on how to use trail to record their work", "format": "generic", "subtype": "snippet",