Skip to content

Commit 51aed33

Browse files
committed
docs: add Beta labels for non-stable installations
- README: mark Claude Code plugin, Claude Desktop .mcpb, and Other methods as Beta - docs/install/claude-code-plugin.md: add beta warning box recommending Homebrew/npm for stable use - docs/install/claude-desktop.md: add beta warning box recommending Homebrew/npm for stable use - docs/install/index.md: - Mark non-stable methods (plugin, .mcpb, other agents, web skill) as Beta in decision text - Add Status column to install methods table showing Stable vs Beta - Reorder table to put Stable methods first Stable methods: Homebrew, npm/npx Beta methods: Claude Code plugin, Claude Desktop .mcpb, other agents, claude.ai web skill
1 parent 53a9529 commit 51aed33

4 files changed

Lines changed: 26 additions & 14 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ devcoach install
9191

9292
`brew tap` registers the third-party repository; `brew trust --tap` marks it trusted so Homebrew will load its formulae when `HOMEBREW_REQUIRE_TAP_TRUST` is set. Both are one-time. To update later: `brew upgrade devcoach`. One-liner: `brew install UltimaPhoenix/tap/devcoach` (run `brew trust --tap UltimaPhoenix/tap` first if your Homebrew enforces tap trust). The formula declares `depends_on "node"`, so Homebrew pulls in a recent Node automatically.
9393

94-
### Claude Code plugin (recommended for Claude Code)
94+
### Claude Code plugin (recommended for Claude Code)**Beta**
9595

9696
The simplest way to add devcoach to **Claude Code** — one click, nothing to configure. It bundles **everything** (MCP server + automatic-coaching Stop hooks + skill), so **don't also run `devcoach install`** (or the Stop hooks get registered twice).
9797

@@ -120,7 +120,7 @@ The MCP server, hooks, and skill activate on install — no restart needed. The
120120

121121
See [Claude Code plugin](docs/install/claude-code-plugin.md) for how it works.
122122

123-
### Claude Desktop extension (`.mcpb`) (recommended for Claude Desktop)
123+
### Claude Desktop extension (`.mcpb`) (recommended for Claude Desktop)**Beta**
124124

125125
A single bundle that runs on Claude Desktop's built-in runtime — no Node or terminal needed:
126126

@@ -131,7 +131,7 @@ npm run mcpb # → dist-mcpb/devcoach-<version>.mcpb
131131

132132
`npm run mcpb:sign` self-signs it (installs as an *unverified publisher*; a real code-signing cert is needed for a verified signature). Prebuilt `.mcpb` releases and a Desktop directory listing are planned.
133133

134-
### Other install methods
134+
### Other install methods**Beta**
135135

136136
<details>
137137
<summary><strong>npx / npm CLI</strong> (any MCP agent — no install)</summary>

docs/install/claude-code-plugin.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Claude Code plugin
22

3+
:::warning Beta
4+
The Claude Code plugin and marketplace are currently in beta. They work well for most users, but report
5+
any issues to [GitHub Issues](https://github.com/UltimaPhoenix/dev-coach/issues). For the most stable
6+
experience, use [Homebrew](./homebrew.md) or [npm/npx](./npx.md).
7+
:::
8+
39
:::tip Recommended if you'd rather not use a terminal
410
This is the simplest way to add devcoach to Claude Code — one click, nothing to configure. (Prefer the
511
terminal and want the `devcoach` CLI too? Use [Homebrew](./homebrew.md) instead.)

docs/install/claude-desktop.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ sidebar_label: Claude Desktop (.mcpb)
55

66
# Claude Desktop extension (`.mcpb`)
77

8+
:::warning Beta
9+
The `.mcpb` extension format is currently in beta. It works well for most users, but report any issues
10+
to [GitHub Issues](https://github.com/UltimaPhoenix/dev-coach/issues). For the most stable experience,
11+
use [Homebrew](./homebrew.md) or [npm/npx](./npx.md).
12+
:::
13+
814
:::tip Recommended for Claude Desktop
915
The simplest, no-terminal way to add devcoach to Claude Desktop — one click, runs on Desktop's built-in
1016
runtime.

docs/install/index.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ devcoach works the same whichever way you install it — pick by how you like to
1818
`brew install` sets up devcoach **and** the `devcoach` CLI, so you also get the
1919
[command line](../usage/cli.md) and can launch the [dashboard](../usage/web-ui.md) with a bare
2020
`devcoach ui`. *(On Windows, or if you prefer npm, [npx / npm](./npx.md) is the equivalent.)*
21-
- **Prefer the simplest, no-terminal setup → the [Claude Code plugin](./claude-code-plugin.md)**
22-
(one-click from the marketplace) or, on Claude Desktop, the **[`.mcpb` extension](./claude-desktop.md)**.
21+
- **Prefer the simplest, no-terminal setup → the [Claude Code plugin](./claude-code-plugin.md)** *(Beta)*
22+
(one-click from the marketplace) or, on Claude Desktop, the **[`.mcpb` extension](./claude-desktop.md)** *(Beta)*.
2323
Nothing to configure — install and go. *(These don't add the `devcoach` CLI; run CLI commands with
24-
`npx -y devcoach …` if you ever need them.)*
24+
`npx -y devcoach …` if you ever need them. For the most stable experience, use Homebrew or npm.)*
2525

2626
## All methods
2727

28-
| Method | Best for | Terminal? |
29-
|---|---|---|
30-
| **[Homebrew](./homebrew.md)** | **Developers on macOS / Linux who use the CLI** (recommended) | Yes |
31-
| **[Claude Code plugin](./claude-code-plugin.md)** | **Non-expert Claude Code users — one-click setup** (recommended) | No |
32-
| **[Claude Desktop (`.mcpb`)](./claude-desktop.md)** | **Non-expert Claude Desktop users — one-click setup** (recommended) | No |
33-
| **[npx / npm CLI](./npx.md)** | Any MCP agent · Windows · npm workflows | Yes |
34-
| **[Other MCP agents](./other-agents.md)** | Cursor, Windsurf, Cline, Continue, Zed | Yes |
35-
| **[claude.ai web](./claude-ai.md)** | claude.ai (skill-only, no MCP) ||
28+
| Method | Best for | Terminal? | Status |
29+
|---|---|---|---|
30+
| **[Homebrew](./homebrew.md)** | **Developers on macOS / Linux who use the CLI** | Yes | Stable |
31+
| **[npx / npm CLI](./npx.md)** | Any MCP agent · Windows · npm workflows | Yes | Stable |
32+
| **[Claude Code plugin](./claude-code-plugin.md)** | **Non-expert Claude Code users — one-click setup** | No | Beta |
33+
| **[Claude Desktop (`.mcpb`)](./claude-desktop.md)** | **Non-expert Claude Desktop users — one-click setup** | No | Beta |
34+
| **[Other MCP agents](./other-agents.md)** | Cursor, Windsurf, Cline, Continue, Zed | Yes | Beta |
35+
| **[claude.ai web](./claude-ai.md)** | claude.ai (skill-only, no MCP) || Beta |
3636

3737
Each page below is self-contained: it covers **install *and* connect**.
3838

0 commit comments

Comments
 (0)