cloudflare-openhands-sdk 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 (3) hide show
  1. package/Dockerfile +2 -3
  2. package/README.md +3 -1
  3. package/package.json +1 -1
package/Dockerfile CHANGED
@@ -14,6 +14,5 @@ RUN git clone https://github.com/OpenHands/software-agent-sdk.git && \
14
14
  cd software-agent-sdk && \
15
15
  make build
16
16
 
17
- # Required during local development to access exposed ports
18
- EXPOSE 8080
19
-
17
+ # Allows access to exposed ports from the default OpenHands port during local development
18
+ EXPOSE 8001
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  SDK for integrating OpenHands agent-server with Cloudflare Workers Sandbox.
4
4
 
5
+ ![Cloudflare OpenHands](assets/cf-openhands.jpeg)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -15,7 +17,7 @@ bun add cloudflare-openhands-sdk
15
17
  ## Prerequisites
16
18
 
17
19
  - `@cloudflare/sandbox` (peer dependency) - Install in your Worker project
18
- - Cloudflare Workers account with Sandbox support
20
+ - Cloudflare Workers Paid account
19
21
  - Custom domain (required for preview URLs)
20
22
 
21
23
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudflare-openhands-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "SDK for integrating OpenHands agent-server with Cloudflare Workers Sandbox",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",