From b147762ebae2c4e138e848e2543de70627d7860d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 04:47:35 +0000 Subject: [PATCH 1/2] chore(main): release webcmd 1.0.0 --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 82ad8451..dfdeb798 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "webcmd", - "version": "0.7.8", + "version": "1.0.0", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "author": { "name": "AgentRHQ", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index b14793c4..3d0cc368 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "webcmd", - "version": "0.7.8", + "version": "1.0.0", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "author": { "name": "AgentRHQ", diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed1a258d..1772e6fa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.8" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cbceb41c..fc091e92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,22 @@ - Hosted command lists retain excluded commands as `LOCAL` rows and return a local-only error instead of plugin-install guidance. - Local auth commands initialize user CLI compatibility shims, and hosted auth uses the same native grammar, flags, choices, and help as local mode. +## [1.0.0](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.8...webcmd-v1.0.0) (2026-08-28) + + +### ⚠ BREAKING CHANGES + +* webcmd doctor now exits 78 on an unhealthy machine. + +### doctor + +* exit CONFIG_ERROR when a required check fails ([#456](https://github.com/agentrhq/webcmd/issues/456)) ([34fcc14](https://github.com/agentrhq/webcmd/commit/34fcc14707e28e02881686975068ea189940c9d9)) + + +### Features + +* bridge core CLI commands to hosted mode ([#458](https://github.com/agentrhq/webcmd/issues/458)) ([5e2d3df](https://github.com/agentrhq/webcmd/commit/5e2d3dfb4caefe711a04180009d622235b322d5b)) + ## [0.7.8](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.7...webcmd-v0.7.8) (2026-08-27) ### Highlights diff --git a/package-lock.json b/package-lock.json index be31f097..98b9c214 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentrhq/webcmd", - "version": "0.7.8", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentrhq/webcmd", - "version": "0.7.8", + "version": "1.0.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index d40ba34c..44c6d097 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentrhq/webcmd", - "version": "0.7.8", + "version": "1.0.0", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "engines": { "node": ">=20.6.0" From 4d8283109e94e3894ed424d872b3d54980e8f285 Mon Sep 17 00:00:00 2001 From: Ankit Ranjan Date: Fri, 28 Aug 2026 10:27:03 +0530 Subject: [PATCH 2/2] chore(main): release webcmd 0.7.9 --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index dfdeb798..c4bb314b 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "webcmd", - "version": "1.0.0", + "version": "0.7.9", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "author": { "name": "AgentRHQ", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 3d0cc368..00add6ce 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "webcmd", - "version": "1.0.0", + "version": "0.7.9", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "author": { "name": "AgentRHQ", diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1772e6fa..d7dcbaaa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "0.7.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fc091e92..977488b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ - Hosted command lists retain excluded commands as `LOCAL` rows and return a local-only error instead of plugin-install guidance. - Local auth commands initialize user CLI compatibility shims, and hosted auth uses the same native grammar, flags, choices, and help as local mode. -## [1.0.0](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.8...webcmd-v1.0.0) (2026-08-28) +## [0.7.9](https://github.com/agentrhq/webcmd/compare/webcmd-v0.7.8...webcmd-v0.7.9) (2026-08-28) ### ⚠ BREAKING CHANGES diff --git a/package-lock.json b/package-lock.json index 98b9c214..5671ab00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentrhq/webcmd", - "version": "1.0.0", + "version": "0.7.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentrhq/webcmd", - "version": "1.0.0", + "version": "0.7.9", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 44c6d097..a800ae9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentrhq/webcmd", - "version": "1.0.0", + "version": "0.7.9", "description": "Turn websites, browser sessions, desktop apps, and local tools into deterministic CLI surfaces for humans and AI agents.", "engines": { "node": ">=20.6.0"