openwrk 0.1.11 → 0.1.12
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 +7 -0
- package/dist/openwrk +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,6 +15,11 @@ openwrk start --workspace /path/to/workspace --approval auto
|
|
|
15
15
|
first run using a SHA-256 manifest. Use `--sidecar-dir` or `OPENWRK_SIDECAR_DIR` to control the
|
|
16
16
|
cache location, and `--sidecar-base-url` / `--sidecar-manifest` to point at a custom host.
|
|
17
17
|
|
|
18
|
+
Use `--sidecar-source` to control where `openwork-server` and `owpenbot` are resolved
|
|
19
|
+
(`auto` | `bundled` | `downloaded` | `external`), and `--opencode-source` to control
|
|
20
|
+
`opencode` resolution. Set `OPENWRK_SIDECAR_SOURCE` / `OPENWRK_OPENCODE_SOURCE` to
|
|
21
|
+
apply the same policies via env vars.
|
|
22
|
+
|
|
18
23
|
By default the manifest is fetched from
|
|
19
24
|
`https://github.com/different-ai/openwork/releases/download/openwrk-v<openwrk-version>/openwrk-sidecars.json`.
|
|
20
25
|
|
|
@@ -24,6 +29,8 @@ Owpenbot is optional. If it exits, `openwrk` continues running unless you pass
|
|
|
24
29
|
For development overrides only, set `OPENWRK_ALLOW_EXTERNAL=1` or pass `--allow-external` to use
|
|
25
30
|
locally installed `openwork-server` or `owpenbot` binaries.
|
|
26
31
|
|
|
32
|
+
Add `--verbose` (or `OPENWRK_VERBOSE=1`) to print extra diagnostics about resolved binaries.
|
|
33
|
+
|
|
27
34
|
Or from source:
|
|
28
35
|
|
|
29
36
|
```bash
|
package/dist/openwrk
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwrk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Headless OpenWork host orchestrator for OpenCode + OpenWork server + Owpenbot",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"opencodeVersion": "1.1.45",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@opencode-ai/sdk": "^1.1.31",
|
|
36
|
-
"openwork-server": "
|
|
36
|
+
"openwork-server": "0.1.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^22.10.2",
|