@whittlelabs/sifter 0.4.2 → 0.5.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 +6 -9
  2. package/bin.js +2856 -649
  3. package/bin.js.map +4 -4
  4. package/package.json +2 -2
package/README.md CHANGED
@@ -1,16 +1,13 @@
1
1
  # @whittlelabs/sifter
2
2
 
3
- The Whittle Sifter is a paired AI reviewer for [Whittle Sift](https://sift.staging.whittlelabs.com). It runs on your machine, executes review prompts against your own AI credentials (Claude Code, Anthropic API key, etc.), and submits the results back to Sift. Token spend stays on your account.
3
+ The Whittle Sifter is a paired AI reviewer for [Whittle Sift](https://sift.stage.whittlelabs.com). It runs on your machine, executes review prompts against your own AI credentials (Claude Code, Anthropic API key, etc.), and submits the results back to Sift. Token spend stays on your account.
4
4
 
5
5
  ## Install
6
6
 
7
- `@whittlelabs/sifter` is published to the private Whittle Labs GitHub Packages registry. You'll need a GitHub personal access token with `read:packages` scope and access to the `whittlelabs` org.
7
+ `@whittlelabs/sifter` is published publicly to npmjs.com (released by
8
+ `sifter-release.yml` on a version bump):
8
9
 
9
10
  ```bash
10
- # One-time: tell npm where to find @whittlelabs packages
11
- echo "@whittlelabs:registry=https://npm.pkg.github.com" >> ~/.npmrc
12
- echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN" >> ~/.npmrc
13
-
14
11
  npm install -g @whittlelabs/sifter
15
12
  ```
16
13
 
@@ -24,11 +21,11 @@ Visit Sift's **Settings → Pair a Sifter**. Sift will display a pairing code an
24
21
  whittle-sifter init --pairing-code=ABCD-1234
25
22
  ```
26
23
 
27
- The Sifter defaults to the staging Keep instance (`https://keep.staging.whittlelabs.com`). To pair against a different environment, pass `--keep-url`:
24
+ The Sifter defaults to the stage Keep instance (`https://keep.stage.whittlelabs.com`). To pair against a different environment, pass `--keep-url`:
28
25
 
29
26
  ```bash
30
27
  whittle-sifter init \
31
- --keep-url=https://keep.testing.whittlelabs.com \
28
+ --keep-url=https://keep.test.whittlelabs.com \
32
29
  --pairing-code=ABCD-1234
33
30
  ```
34
31
 
@@ -40,7 +37,7 @@ Pairing writes credentials to `~/.sifter/config.json` (mode 0600).
40
37
  whittle-sifter run
41
38
  ```
42
39
 
43
- The Sifter subscribes to your attention pool and waits for review jobs. Leave it running in a terminal or wrap it in your favorite process supervisor.
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.
44
41
 
45
42
  ## Other commands
46
43