Add workspace export and baseline diff
Complete the 2.6.0 workspace milestone by adding explicit host-out export and immutable-baseline diff across the CLI, Python SDK, and MCP server. Capture a baseline archive at workspace creation, export live /workspace paths through the guest agent, and compute structured whole-workspace diffs on the host without affecting command logs or shell state. The docs, roadmap, bundled guest agent, and workspace example now reflect the new create -> sync -> diff -> export workflow. Validation: uv lock, UV_CACHE_DIR=.uv-cache make check, UV_CACHE_DIR=.uv-cache make dist-check, and a real guest-backed Firecracker smoke covering workspace create, sync push, diff, export, and delete.
This commit is contained in:
parent
3f8293ad24
commit
84a7e18d4d
26 changed files with 1492 additions and 43 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
All notable user-visible changes to `pyro-mcp` are documented here.
|
||||
|
||||
## 2.6.0
|
||||
|
||||
- Added explicit host-out workspace operations across the CLI, Python SDK, and MCP server with
|
||||
`pyro workspace export`, `Pyro.export_workspace()`, `pyro workspace diff`,
|
||||
`Pyro.diff_workspace()`, and the matching `workspace_export` / `workspace_diff` MCP tools.
|
||||
- Captured an immutable create-time baseline for every new workspace so later `workspace diff`
|
||||
compares the live `/workspace` tree against that original seed state.
|
||||
- Kept export and diff separate from command execution and shell state so workspaces can mutate,
|
||||
be inspected, and copy results back to the host without affecting command logs or shell sessions.
|
||||
|
||||
## 2.5.0
|
||||
|
||||
- Added persistent PTY shell sessions across the CLI, Python SDK, and MCP server with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue