@kynver-app/runtime 0.1.0
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 +35 -0
- package/dist/cli.js +1467 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.js +1529 -0
- package/dist/index.js.map +7 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @kynver-app/runtime
|
|
2
|
+
|
|
3
|
+
Standalone Kynver AgentOS execution runtime and CLI (`kynver`).
|
|
4
|
+
|
|
5
|
+
## Quick start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm run kynver:build
|
|
9
|
+
npm run kynver -- setup --api-base-url http://localhost:3000 --agent-os-id <id> --repo /path/to/repo --max-workers 13
|
|
10
|
+
npm run kynver -- login --api-key "$KYNVER_API_KEY"
|
|
11
|
+
npm run kynver -- run create --repo /path/to/repo --name my-run
|
|
12
|
+
npm run kynver -- daemon --run <runId> --agent-os-id <id> --execute
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Set `OPENCLAW_CRON_SECRET` or `KYNVER_RUNTIME_SECRET` for server callbacks.
|
|
16
|
+
|
|
17
|
+
## CLI verbs
|
|
18
|
+
|
|
19
|
+
```text
|
|
20
|
+
run create | list | status | dispatch | sweep
|
|
21
|
+
worker start | status | tail | stop | complete
|
|
22
|
+
login | setup | daemon
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
`scripts/opus-harness.mjs` is a compatibility shim that delegates to this package.
|
|
26
|
+
|
|
27
|
+
## Worker providers
|
|
28
|
+
|
|
29
|
+
Default provider: `claude` (`workerProvider` in `~/.kynver/config.json`). Provider interface lives in `src/providers/`.
|
|
30
|
+
|
|
31
|
+
## Tests
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm run kynver:test
|
|
35
|
+
```
|