@whittlelabs/sifter 0.6.0 → 0.7.0
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 +3 -3
- package/bin.js +3 -3
- package/bin.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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.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
|
|
|
@@ -21,11 +21,11 @@ Visit Sift's **Settings → Pair a Sifter**. Sift will display a pairing code an
|
|
|
21
21
|
whittle-sifter init --pairing-code=ABCD-1234
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
The Sifter defaults to
|
|
24
|
+
The Sifter defaults to production (`https://keep.whittlelabs.com`). To pair against stage, test, or any other environment, pass `--keep-url`:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
whittle-sifter init \
|
|
28
|
-
--keep-url=https://keep.
|
|
28
|
+
--keep-url=https://keep.stage.whittlelabs.com \
|
|
29
29
|
--pairing-code=ABCD-1234
|
|
30
30
|
```
|
|
31
31
|
|
package/bin.js
CHANGED
|
@@ -20717,7 +20717,7 @@ var import_shuttle = __toESM(require_dist5());
|
|
|
20717
20717
|
// package.json
|
|
20718
20718
|
var package_default = {
|
|
20719
20719
|
name: "@whittlelabs/sifter",
|
|
20720
|
-
version: "0.
|
|
20720
|
+
version: "0.7.0",
|
|
20721
20721
|
description: "Whittle Sifter: paired AI reviewer for Whittle Sift job pools.",
|
|
20722
20722
|
bin: {
|
|
20723
20723
|
"whittle-sifter": "./dist/bin.js"
|
|
@@ -20777,8 +20777,8 @@ var sifterBrand = {
|
|
|
20777
20777
|
},
|
|
20778
20778
|
executorAllowlist: ["claude-code", "anthropic-api", "http-api", "webhook", "custom-script"],
|
|
20779
20779
|
keepRegistration: {
|
|
20780
|
-
keepApiUrl: process.env.KEEP_API_URL ?? "https://keep.
|
|
20781
|
-
jobsApiUrl: process.env.JOBS_API_URL ?? "https://jobs.
|
|
20780
|
+
keepApiUrl: process.env.KEEP_API_URL ?? "https://keep.whittlelabs.com",
|
|
20781
|
+
jobsApiUrl: process.env.JOBS_API_URL ?? "https://jobs.whittlelabs.com",
|
|
20782
20782
|
oauthClientId: process.env.SIFTER_OAUTH_CLIENT_ID ?? "sifter",
|
|
20783
20783
|
orgSlug: "whittle-labs",
|
|
20784
20784
|
roleSlug: "sift-sifter",
|