@paigy/harness 0.1.6 → 0.1.7
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/dist/cli.js +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -30825,7 +30825,7 @@ var authToken = (explicit) => explicit ?? tokenOverride ?? readToken();
|
|
|
30825
30825
|
async function hatch(name, voice = null) {
|
|
30826
30826
|
const res = ensureAuthed(await reach(`${BACKEND_URL}/api/hatch`, {
|
|
30827
30827
|
method: "POST",
|
|
30828
|
-
headers: { "content-type": "application/json", authorization: `Bearer ${
|
|
30828
|
+
headers: { "content-type": "application/json", authorization: `Bearer ${authToken()}` },
|
|
30829
30829
|
body: JSON.stringify({ name, voice })
|
|
30830
30830
|
}));
|
|
30831
30831
|
if (!res.ok) throw new Error(`hatch failed: ${res.status} ${await res.text()}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paigy/harness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Run Claude Code / Codex on this machine, bridged to Paigy — launchable from your phone.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"vitest": "^2.1.8",
|
|
19
19
|
"qrcode": "^1.5.4",
|
|
20
20
|
"zod": "^3.24.1",
|
|
21
|
-
"@paigy/
|
|
22
|
-
"@paigy/
|
|
21
|
+
"@paigy/schema": "0.0.0",
|
|
22
|
+
"@paigy/sdk": "0.1.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist/cli.js",
|