quilltap 4.8.0-dev → 4.8.0-dev.92

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 +12 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -278,6 +278,18 @@ quilltap migrations run --dry-run # List what would run (refuses without --dry-r
278
278
 
279
279
  `--json` works on all three. "Not yet recorded" includes migrations whose `shouldRun()` is `false` on this instance — the CLI doesn't evaluate the predicate, so it can't distinguish "would skip" from "would run."
280
280
 
281
+ ## File Verification
282
+
283
+ `quilltap file-verify` force-downloads an instance's cloud-evicted (dataless) top-level data files so the databases are fully local before anything opens them. It reads each placeholder, which faults it in through the cloud provider (iCloud Drive, etc.). Safe to run repeatedly — a no-op when nothing is evicted. macOS only for now.
284
+
285
+ ```bash
286
+ quilltap file-verify --instance Ignite # Fault in only the dataless top-level files
287
+ quilltap file-verify --instance Friday --all # Read every top-level file, not just dataless ones
288
+ quilltap file-verify --instance Friday --json # Machine-readable report
289
+ ```
290
+
291
+ Only the **top-level** files of the data directory are considered; the `backups/` subdirectory is left alone. Flags: `--all` (read every top-level file, not just dataless ones), `--stall-ms <ms>` (treat a download as stalled after this many ms with no bytes per chunk; default 30000), `--json`. Resolves the instance via the usual `--instance` / `--data-dir` plumbing.
292
+
281
293
  ## Theme Management
282
294
 
283
295
  The CLI includes theme management commands:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quilltap",
3
- "version": "4.8.0-dev",
3
+ "version": "4.8.0-dev.92",
4
4
  "description": "Self-hosted AI workspace for writers, worldbuilders, and roleplayers. Run with npx quilltap.",
5
5
  "author": {
6
6
  "name": "Charles Sebold",
@@ -40,7 +40,7 @@
40
40
  "better-sqlite3-multiple-ciphers": "^12.11.1",
41
41
  "node-pty": "^1.1.0",
42
42
  "sharp": "^0.34.5",
43
- "tar": "^7.5.16",
43
+ "tar": "^7.5.20",
44
44
  "yauzl": "^3.4.0"
45
45
  },
46
46
  "engines": {