From bd92aa9a11da7ff3e02211987aaaefa3f79cbc32 Mon Sep 17 00:00:00 2001 From: rajashidattapy Date: Tue, 4 Aug 2026 15:51:49 +0530 Subject: [PATCH 1/2] fix: add missing commands to CLI reference documentation --- docs/cli-reference.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/cli-reference.mdx b/docs/cli-reference.mdx index 4073a61d..84981ebd 100644 --- a/docs/cli-reference.mdx +++ b/docs/cli-reference.mdx @@ -62,15 +62,18 @@ The old `web read` command has been renamed to `web fetch-browser`. | `list` | Show registered built-in, user, plugin, and external commands. | | `setup` | Choose local or hosted mode interactively. | | `doctor` | Diagnose browser bridge and daemon connectivity. | +| `daemon` | Manage the local Webcmd daemon: status, stop, and restart. | | `browser` | Agent-facing browser runtime for exploration and verification. | | `web` | Local URL fetch and browser-backed page fetch helpers. | | `profile` | List, rename, and select browser runtime profiles. | +| `auth` | Inspect website login status, and refresh logged-in site sessions. | | `plugin` | Install, update, list, create, and uninstall plugins. | | `adapter` | Eject, reset, and inspect local adapter overrides. | | `external` | Register or install external local CLIs. | | `validate` | Validate adapter definitions. | | `verify` | Validate and smoke test an adapter. | -| `skills` | List and read bundled Webcmd agent skills. | +| `convention-audit` | Scan adapters for agent-native convention violations. | +| `skills` | List, add, update, and remove bundled Webcmd agent skills. | | `completion` | Print shell completion scripts. | ## Output Formats From 2fd345a79a0bc386fe8eb7f4856651a5c4b6e633 Mon Sep 17 00:00:00 2001 From: rajashidattapy Date: Tue, 4 Aug 2026 16:08:03 +0530 Subject: [PATCH 2/2] docs: add skills section to CLI reference documentation --- docs/cli-reference.mdx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/cli-reference.mdx b/docs/cli-reference.mdx index 84981ebd..2c6c7a23 100644 --- a/docs/cli-reference.mdx +++ b/docs/cli-reference.mdx @@ -134,6 +134,19 @@ webcmd plugin install github:agentrhq/webcmd/plugins/ycombinator Hosted mode supports the same `plugin search` and `plugin install` grammar for Webcmd-verified marketplace adapters. Other plugin management commands remain local-only in hosted mode. +## Skills + +Bundled agent skills ship with the package. `webcmd skills add` links them into an agent harness and is part of first-time setup. + +```bash +webcmd skills list +webcmd skills add +webcmd skills update +webcmd skills remove +``` + +On a TTY, `skills add` prompts for whichever of scope and harness you did not pass. Use `--scope ` and `--provider ` to skip the prompts, or `--path ` to link into a custom directory. Outside a TTY, and with `--json`, it never prompts. Run `skills update` after upgrading the package to refresh the links. + ## External CLIs Agents can expose local tools through Webcmd, such as `gh`, `docker`, `vercel`, or internal CLIs.