@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.
- package/README.md +6 -9
- package/bin.js +2856 -649
- package/bin.js.map +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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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
|
|