@whittlelabs/sifter 0.27.5 → 0.28.1

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 (4) hide show
  1. package/README.md +15 -0
  2. package/bin.js +17726 -16805
  3. package/bin.js.map +4 -4
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -39,6 +39,21 @@ whittle-sifter run
39
39
 
40
40
  The Sifter subscribes to your job pool and waits for review jobs. Leave it running in a terminal or wrap it in your favorite process supervisor.
41
41
 
42
+ ## Check
43
+
44
+ ```bash
45
+ whittle-sifter doctor
46
+ ```
47
+
48
+ Fifteen checks over everything the Sifter needs before it can review anything: your pairing, your config, `git`, the `claude` CLI and its login, a writable run root, free disk, and whether Sift can be reached. One line per check, with a remedy under anything that failed. It exits 4 if something is wrong and 0 otherwise, so it works in a script.
49
+
50
+ `init` and `run` run the relevant subset themselves, so `doctor` is for when the Sifter looks healthy and nothing is happening.
51
+
52
+ ```bash
53
+ whittle-sifter doctor --deep # also spend one real turn proving the claude login works
54
+ whittle-sifter doctor --json # the verdicts as JSON, and nothing else
55
+ ```
56
+
42
57
  ## Other commands
43
58
 
44
59
  ```bash