codexdock 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,8 @@ Local CLI worker for CodexDock.
4
4
 
5
5
  The CLI connects a host web app to a local Codex runtime. It polls the host app for pending invocations, runs them with its built-in Codex SDK adapter, and submits results back to the app.
6
6
 
7
+ Building the host app side? Install [`@codexdock/sdk`](https://www.npmjs.com/package/@codexdock/sdk). The SDK exposes the route handlers, protocol schemas, and persistence interfaces that the `codexdock` CLI worker connects to.
8
+
7
9
  ## Install
8
10
 
9
11
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexdock",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI worker that connects host apps to a local Codex runtime.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@openai/codex-sdk": "^0.140.0",
37
- "@codexdock/sdk": "0.2.0"
37
+ "@codexdock/sdk": "0.2.1"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "^24.10.1",