@cleocode/cleo 2026.4.12 → 2026.4.13

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.
Files changed (2) hide show
  1. package/README.md +27 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -211,6 +211,10 @@ CLEO provides 80+ commands organized into domains:
211
211
  |---------|-------------|
212
212
  | `cleo config` | Configuration |
213
213
  | `cleo backup` | Backup data |
214
+ | `cleo backup export` | Pack a portable `.cleobundle.tar.gz` |
215
+ | `cleo backup import` | Restore from a portable bundle |
216
+ | `cleo backup inspect` | Print bundle manifest without extracting |
217
+ | `cleo restore finalize` | Apply manually-resolved conflicts |
214
218
  | `cleo env` | Environment vars |
215
219
  | `cleo mcp-install` | Install MCP |
216
220
  | `cleo testing` | Testing setup |
@@ -226,6 +230,29 @@ CLEO provides 80+ commands organized into domains:
226
230
  | `cleo map` | Codebase map |
227
231
  | `cleo commands` | List all commands |
228
232
 
233
+ ### Cross-machine backup export/import (v2026.4.13+)
234
+
235
+ The `cleo backup` command supports portable `.cleobundle.tar.gz` archives for
236
+ cross-machine backup transfer:
237
+
238
+ - `cleo backup export <name> [--scope project|global|all] [--encrypt]` — pack
239
+ project + global data into a portable bundle
240
+ - `cleo backup import <bundle> [--force]` — restore from a bundle. Uses
241
+ intelligent A/B regenerate-and-compare for JSON files (`config.json`,
242
+ `project-info.json`, `project-context.json`). Conflicts are written to
243
+ `.cleo/restore-conflicts.md` for review.
244
+ - `cleo backup inspect <bundle>` — print manifest without extracting
245
+ - `cleo restore finalize` — apply manually-resolved conflicts from
246
+ `.cleo/restore-conflicts.md`
247
+
248
+ See [ADR-038](../../.cleo/adrs/ADR-038-backup-portability.md) for the
249
+ full specification.
250
+
251
+ ### Portable backups
252
+
253
+ Use `cleo backup export --scope all` to create a `.cleobundle.tar.gz` that
254
+ can be restored on a different machine via `cleo backup import`.
255
+
229
256
  ## MCP Server
230
257
 
231
258
  CLEO includes a full MCP server for AI assistant integration.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/cleo",
3
- "version": "2026.4.12",
3
+ "version": "2026.4.13",
4
4
  "description": "CLEO CLI — the assembled product consuming @cleocode/core",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -13,12 +13,12 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "citty": "^0.2.1",
16
- "@cleocode/caamp": "2026.4.12",
17
- "@cleocode/cant": "2026.4.12",
18
- "@cleocode/contracts": "2026.4.12",
19
- "@cleocode/core": "2026.4.12",
20
- "@cleocode/runtime": "2026.4.12",
21
- "@cleocode/lafs": "2026.4.12"
16
+ "@cleocode/caamp": "2026.4.13",
17
+ "@cleocode/contracts": "2026.4.13",
18
+ "@cleocode/cant": "2026.4.13",
19
+ "@cleocode/core": "2026.4.13",
20
+ "@cleocode/runtime": "2026.4.13",
21
+ "@cleocode/lafs": "2026.4.13"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=24.0.0"