@codeworksh/harness 0.0.1-dev.20260907151726 → 0.0.1-dev.20260907170816
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ Vercel and Daytona are the first remote drivers. More providers can be added beh
|
|
|
70
70
|
|
|
71
71
|
- Node.js 24.14.1 or newer
|
|
72
72
|
- An API key for the model provider you select
|
|
73
|
-
- A generated Aikit model catalog; run `codework
|
|
73
|
+
- A generated Aikit model catalog; run `codework models generate` from the project you want to use
|
|
74
74
|
|
|
75
75
|
## CLI
|
|
76
76
|
|
|
@@ -79,7 +79,7 @@ Run the current development release without installing it globally:
|
|
|
79
79
|
```sh
|
|
80
80
|
export OPENAI_API_KEY="..."
|
|
81
81
|
|
|
82
|
-
pnpm dlx @codeworksh/harness@dev
|
|
82
|
+
pnpm dlx @codeworksh/harness@dev models generate
|
|
83
83
|
|
|
84
84
|
pnpm dlx @codeworksh/harness@dev \
|
|
85
85
|
--home .codework-beta \
|
|
@@ -102,7 +102,7 @@ cache 9,600 read · 0 write
|
|
|
102
102
|
cost $0.014200 · 1 turn
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
`
|
|
105
|
+
`codework models generate [path]` uses Aikit's model generator and writes `./models.gen.json` by default. Set `CODEWORK_MODELS_FILE` or pass a path when you keep the catalog elsewhere.
|
|
106
106
|
|
|
107
107
|
The CLI prints the session ID to stderr. Provider, model, and thinking settings are stored with the session, so use the same home directory and session ID to continue it:
|
|
108
108
|
|