@onkernel/cua-cli 0.1.1 → 0.1.2
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 +9 -12
- package/dist/cli.js +1 -1
- package/dist/{main-DRtiOMAk.js → main-BJ1jOxe3.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,22 +7,19 @@ interactive front-end and to
|
|
|
7
7
|
[`pi-coding-agent`](https://www.npmjs.com/package/@earendil-works/pi-coding-agent)'s
|
|
8
8
|
coding tools for workspace access.
|
|
9
9
|
|
|
10
|
-
## Install
|
|
10
|
+
## Install
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
#
|
|
14
|
-
npm install
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
# while preserving the caller's directory (so `--out`, transcript
|
|
20
|
-
# bucketing, and `.agents/skills` discovery use the directory you
|
|
21
|
-
# invoked from):
|
|
22
|
-
# CUA_REPO=/absolute/path/to/cua
|
|
23
|
-
# cua() { "$CUA_REPO/node_modules/.bin/tsx" "$CUA_REPO/packages/cli/src/cli.ts" "$@"; }
|
|
13
|
+
# global install (puts `cua` on your PATH):
|
|
14
|
+
npm install -g @onkernel/cua-cli
|
|
15
|
+
cua --help
|
|
16
|
+
|
|
17
|
+
# or run a one-off without installing:
|
|
18
|
+
npx @onkernel/cua-cli --help
|
|
24
19
|
```
|
|
25
20
|
|
|
21
|
+
Requires Node >= 22.19.0.
|
|
22
|
+
|
|
26
23
|
## Usage
|
|
27
24
|
|
|
28
25
|
```bash
|
package/dist/cli.js
CHANGED
|
@@ -1315,7 +1315,7 @@ async function runPrintCommand(prompt, flags) {
|
|
|
1315
1315
|
/** Run the interactive TUI through the new harness wiring. */
|
|
1316
1316
|
async function runInteractiveCommand(initialPrompt, flags) {
|
|
1317
1317
|
const runtime = await setupHarnessRuntime(flags);
|
|
1318
|
-
const { runInteractive } = await import("./main-
|
|
1318
|
+
const { runInteractive } = await import("./main-BJ1jOxe3.js");
|
|
1319
1319
|
try {
|
|
1320
1320
|
return await runInteractive({
|
|
1321
1321
|
cwd: process.cwd(),
|