@critiquedotsh/harness 0.1.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 +14 -0
- package/dist/cli.js +22419 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# @critiquedotsh/harness
|
|
2
|
+
|
|
3
|
+
CritiqueCode author agent. Same npm org as [`@critiquedotsh/cli`](../critique-cli). Not a rename of that sidecar.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
cd /path/to/your-project
|
|
7
|
+
node /path/to/this-checkout/packages/critique-code/bin/critique-code.mjs
|
|
8
|
+
# after publish:
|
|
9
|
+
# npm install --global @critiquedotsh/harness && critique-code
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Author agent: implements in an interactive session, then the controller forces review and verified repair. Default is Critique Inference `critique/auto` after `critique-code login` (approve on the website) or a `crt_` key. `/voice` talks to the author through Qwen3 ASR. OpenAI, OpenRouter, and other BYOK keys stay optional. Inference bills $/1M input and output, not review credits. OpenRouter Activity attributes traffic to `critique.sh`. Interactive TTY keeps stdout quiet unless `--json`.
|
|
13
|
+
|
|
14
|
+
Keys live in `~/.critique/code/`. Docs: [CritiqueCode](https://critique.sh/docs/platform/critique-code).
|