Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to the Toolpath workspace are documented here.

## path-cli 0.19.0 — 2026-08-24

- **`path-cli`** (0.19.0): `p export claude` takes `--session-id <uuid>`
and `--cwd <dir>`. `--session-id` renames the session: the ID becomes
the conversation's session ID, every entry's `sessionId`, and every
`sessionId` key in every preamble line, nested keys included (Claude
Code copies the ID into `worktreeSession.sessionId` on
`worktree-state` lines); any UUID form is accepted and the output
uses the hyphenated lowercase form; with `--project` it names the
session file. `--cwd` roots the session: the directory becomes the
`cwd` of every entry that carries one; it must be an absolute POSIX
path in normalized form (no `.`, `..`, or empty component; one
trailing `/` is dropped), does not have to exist on this machine, and
conflicts with `--project`. Message content and tool results are not
touched. `scripts/resume-remote.sh` passes both flags, checks that
the output carries the remote cwd and ID, and ships it as is.
- **`toolpath-cli`** (0.19.0): lockstep bump of the deprecated shim.

## toolpath-claude 0.13.0 — 2026-08-23

- **Breaking:** `Conversation.segment_ids` replaces `Conversation.session_ids`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ toolpath-github = { version = "0.6.0", path = "crates/toolpath-github" }
toolpath-dot = { version = "0.5.0", path = "crates/toolpath-dot" }
toolpath-md = { version = "0.7.0", path = "crates/toolpath-md" }
toolpath-pi = { version = "0.6.1", path = "crates/toolpath-pi" }
path-cli = { version = "0.18.0", path = "crates/path-cli" }
path-cli = { version = "0.19.0", path = "crates/path-cli" }
pathbase-client = { version = "0.2.0", path = "crates/pathbase-client" }

reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "rustls"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/path-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "path-cli"
version = "0.18.0"
version = "0.19.0"
edition.workspace = true
license.workspace = true
repository = "https://github.com/empathic/toolpath"
Expand Down
Loading
Loading