@jmoyers/harness 0.1.5 → 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/README.md +17 -0
- package/package.json +4 -1
- package/scripts/codex-live-mux-runtime.ts +3606 -0
- package/scripts/codex-live-mux.ts +1 -0
- package/scripts/terminal-recording-gif-lib.ts +526 -0
package/README.md
CHANGED
|
@@ -32,6 +32,9 @@ Use it when you want to move faster than a single chat window: keep multiple thr
|
|
|
32
32
|
> Note: Harness requires Bun. It does not work with Node.js alone.
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
+
# One-line bootstrap (installs missing Bun/Rust deps, then installs Harness globally)
|
|
36
|
+
curl -fsSL https://raw.githubusercontent.com/jmoyers/harness/main/install.sh | bash
|
|
37
|
+
|
|
35
38
|
# Run directly with bunx (no install needed)
|
|
36
39
|
bunx @jmoyers/harness@latest
|
|
37
40
|
|
|
@@ -46,6 +49,20 @@ bun install
|
|
|
46
49
|
bun link
|
|
47
50
|
```
|
|
48
51
|
|
|
52
|
+
### Uninstall
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Remove global Harness package
|
|
56
|
+
bun remove --global @jmoyers/harness
|
|
57
|
+
|
|
58
|
+
# Optional: remove workspace runtime artifacts (keeps harness.config.jsonc)
|
|
59
|
+
if [ -n "${XDG_CONFIG_HOME:-}" ]; then
|
|
60
|
+
rm -rf "$XDG_CONFIG_HOME/harness/workspaces"
|
|
61
|
+
else
|
|
62
|
+
rm -rf "$HOME/.harness/workspaces"
|
|
63
|
+
fi
|
|
64
|
+
```
|
|
65
|
+
|
|
49
66
|
### Run
|
|
50
67
|
|
|
51
68
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmoyers/harness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,12 +14,15 @@
|
|
|
14
14
|
"scripts/bun-runtime-guard.js",
|
|
15
15
|
"scripts/build-ptyd.sh",
|
|
16
16
|
"scripts/control-plane-daemon.ts",
|
|
17
|
+
"scripts/codex-live-mux-runtime.ts",
|
|
18
|
+
"scripts/codex-live-mux.ts",
|
|
17
19
|
"scripts/cursor-hook-relay.ts",
|
|
18
20
|
"scripts/harness-animate.ts",
|
|
19
21
|
"scripts/harness-bin.js",
|
|
20
22
|
"scripts/harness-core.ts",
|
|
21
23
|
"scripts/harness-inspector.ts",
|
|
22
24
|
"scripts/harness.ts",
|
|
25
|
+
"scripts/terminal-recording-gif-lib.ts",
|
|
23
26
|
"scripts/require-bun.js",
|
|
24
27
|
"native/ptyd/Cargo.lock",
|
|
25
28
|
"native/ptyd/Cargo.toml",
|