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
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webcmd",
"version": "0.7.2",
"version": "0.7.3",
"description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.",
"author": {
"name": "AgentRHQ",
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webcmd",
"version": "0.7.2",
"version": "0.7.3",
"description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.",
"author": {
"name": "AgentRHQ",
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.2"
".": "0.7.3"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.7.3](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.2...webcmd-v0.7.3) (2026-08-18)


### Features

* **cli:** add --format to profile list and report disconnected profiles ([#341](https://github.com/agentrhq/webcmd/issues/341)) ([45130c7](https://github.com/agentrhq/webcmd/commit/45130c7aadd7b59395e24c788ebbb57d9b1a9960))


### Bug Fixes

* **browser:** add btoa/atob/TextEncoder/TextDecoder to the run sandbox ([#344](https://github.com/agentrhq/webcmd/issues/344)) ([5d42052](https://github.com/agentrhq/webcmd/commit/5d420529d96650ab9b0074e7a2d8e974da93c539))
* **browser:** name the supported alternative in unsupported-API errors ([#343](https://github.com/agentrhq/webcmd/issues/343)) ([6fb9586](https://github.com/agentrhq/webcmd/commit/6fb9586659b581ae5ff76124a1b3e1a63cfd827e))

## [0.7.2](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.1...webcmd-v0.7.2) (2026-08-18)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentrhq/webcmd",
"version": "0.7.2",
"version": "0.7.3",
"description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.",
"engines": {
"node": ">=20.6.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/linkedin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"type": "module",
"description": "LinkedIn profile, network, messaging, job, and Sales Navigator commands for WebCMD",
"peerDependencies": {
"@agentrhq/webcmd": ">=0.7.2"
"@agentrhq/webcmd": ">=0.7.3"
}
}
2 changes: 1 addition & 1 deletion plugins/linkedin/webcmd-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "linkedin",
"version": "0.1.0",
"description": "LinkedIn profile, network, messaging, job, and Sales Navigator commands for WebCMD",
"webcmd": ">=0.7.2",
"webcmd": ">=0.7.3",
"author": {
"name": "WebCMD Agent",
"handle": "agentrhq"
Expand Down
1 change: 0 additions & 1 deletion src/browser/run/runner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
} from 'playwright-core';
import { LocalBrowserRunArtifactSink } from './artifacts.js';
import { MemorySnapshotBaselineStore } from '../snapshot/index.js';
import { MemorySnapshotBaselineStore } from '../snapshot/index.js';
import { unsupportedApiMessage } from './playwright-transport.js';
import { QuickJSHost } from './quickjs-host.js';
import { runBrowserProgram } from './runner.js';
Expand Down
2 changes: 1 addition & 1 deletion webcmd-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@
"path": "plugins/linkedin",
"version": "0.1.0",
"description": "LinkedIn profile, network, messaging, job, and Sales Navigator commands for WebCMD",
"webcmd": ">=0.7.2",
"webcmd": ">=0.7.3",
"author": {
"name": "WebCMD Agent",
"handle": "agentrhq"
Expand Down
Loading