agent-trajectories 0.5.8 → 0.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -132,14 +132,14 @@ trail compact --commits abc1234,def5678 # Trajectories matching specific commit
132
132
  trail compact --pr 123 # Trajectories mentioning PR #123
133
133
  trail compact --since 7d # Last 7 days
134
134
  trail compact --all # Everything (including previously compacted)
135
- trail compact --pr 123 --discard-sources # Delete source trajectories and update index after compaction
135
+ trail compact --pr 123 --discard-sources # Delete source trajectories after compaction
136
136
  ```
137
137
 
138
138
  ### Automatic Compaction (GitHub Action)
139
139
 
140
140
  Add these steps to any workflow that runs on PR merge (e.g., your release or publish flow). Requires `ref: ${{ github.event.pull_request.base.ref }}` and `fetch-depth: 0` on checkout, plus `contents: write` permission.
141
141
 
142
- Use `--discard-sources` when the compacted summary should replace the raw source trajectories. This removes the source JSON/Markdown/trace files and updates `.trajectories/index.json`, reducing future list/search noise.
142
+ Use `--discard-sources` when the compacted summary should replace the raw source trajectories. This removes the source JSON/Markdown/trace files, reducing future list/search noise.
143
143
 
144
144
  ```yaml
145
145
  - name: Compact trajectories