Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions packages/agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.3.4 - 2026-06-23

- Add an opt-in `playwright` option to `CuaAgent` and `CuaAgentHarness` that
exposes a `playwright_execute` tool, running Playwright/TypeScript against
the live browser session via the Kernel SDK. Results, stdout, and stderr
come back as tool content; SDK-reported failures surface as content rather
than throwing. Adds the `PlaywrightDetails` export.

## 0.3.3 - 2026-06-12

- The action translator now consumes the canonical `CuaAction` union with an
Expand Down
4 changes: 2 additions & 2 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/cua-agent",
"version": "0.3.3",
"version": "0.3.4",
"description": "Kernel browser computer-use Agent and AgentHarness classes built on pi-agent-core",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -42,7 +42,7 @@
"dependencies": {
"@earendil-works/pi-agent-core": "0.79.1",
"@earendil-works/pi-ai": "0.79.1",
"@onkernel/cua-ai": "0.3.0",
"@onkernel/cua-ai": "0.3.1",
"@onkernel/sdk": "0.49.0",
"sharp": "^0.34.5"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.3.1 - 2026-06-23

- Add the `playwright_execute` tool definition: `CuaPlaywrightSchema`,
`CUA_PLAYWRIGHT_TOOL_NAME`, `CUA_PLAYWRIGHT_TOOL_DESCRIPTION`,
`createCuaPlaywrightToolDefinition()`, and the `CuaPlaywrightInput` type.

## 0.3.0 - 2026-06-12

- Add `CuaSimpleStreamOptions`: pi-ai `SimpleStreamOptions` plus the
Expand Down
2 changes: 1 addition & 1 deletion packages/ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/cua-ai",
"version": "0.3.0",
"version": "0.3.1",
"description": "Kernel-curated computer-use model access built on pi-ai",
"license": "MIT",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/cua-cli",
"version": "0.1.2",
"version": "0.1.3",
"description": "Kernel-cloud-browser computer-use TUI built on @onkernel/cua-agent and pi-tui",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -36,8 +36,8 @@
"dependencies": {
"@earendil-works/pi-coding-agent": "0.79.1",
"@earendil-works/pi-tui": "0.79.1",
"@onkernel/cua-agent": "0.3.3",
"@onkernel/cua-ai": "0.3.0",
"@onkernel/cua-agent": "0.3.4",
"@onkernel/cua-ai": "0.3.1",
"@onkernel/sdk": "0.49.0"
},
"devDependencies": {
Expand Down
Loading