Update link to install script (#867)
This commit is contained in:
@@ -19,7 +19,7 @@ Display:
|
|||||||
- Compatibility status (✓ compatible or ⚠️ update needed)
|
- Compatibility status (✓ compatible or ⚠️ update needed)
|
||||||
|
|
||||||
If versions are mismatched, provide instructions:
|
If versions are mismatched, provide instructions:
|
||||||
- Update bd CLI: `curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash`
|
- Update bd CLI: `curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash`
|
||||||
- Update plugin: `/plugin update beads`
|
- Update plugin: `/plugin update beads`
|
||||||
- Restart Claude Code after updating
|
- Restart Claude Code after updating
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Beads (`bd`) is an issue tracker designed specifically for AI-supervised coding
|
|||||||
|
|
||||||
1. Install beads CLI:
|
1. Install beads CLI:
|
||||||
```bash
|
```bash
|
||||||
curl -sSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash
|
curl -sSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Install Python and uv (for MCP server):
|
2. Install Python and uv (for MCP server):
|
||||||
@@ -310,7 +310,7 @@ The plugin requires the `bd` CLI to be installed. Update it separately:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Quick update
|
# Quick update
|
||||||
curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash
|
curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash
|
||||||
|
|
||||||
# Or with go
|
# Or with go
|
||||||
go install github.com/steveyegge/beads/cmd/bd@latest
|
go install github.com/steveyegge/beads/cmd/bd@latest
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ if ! command -v bd &> /dev/null; then
|
|||||||
echo "❌ Error: bd command not found"
|
echo "❌ Error: bd command not found"
|
||||||
echo
|
echo
|
||||||
echo "Install bd:"
|
echo "Install bd:"
|
||||||
echo " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash"
|
echo " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash"
|
||||||
echo
|
echo
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ class BdNotFoundError(BdError):
|
|||||||
f"bd CLI not found at: {attempted_path}\n\n"
|
f"bd CLI not found at: {attempted_path}\n\n"
|
||||||
"The beads Claude Code plugin requires the bd CLI to be installed separately.\n\n"
|
"The beads Claude Code plugin requires the bd CLI to be installed separately.\n\n"
|
||||||
"Install bd CLI:\n"
|
"Install bd CLI:\n"
|
||||||
" curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash\n\n"
|
" curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash\n\n"
|
||||||
"Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
"Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
||||||
"After installation, restart Claude Code to reload the MCP server."
|
"After installation, restart Claude Code to reload the MCP server."
|
||||||
)
|
)
|
||||||
@@ -363,7 +363,7 @@ class BdCliClient(BdClientBase):
|
|||||||
if version < min_version:
|
if version < min_version:
|
||||||
min_ver_str = ".".join(str(x) for x in min_version)
|
min_ver_str = ".".join(str(x) for x in min_version)
|
||||||
cur_ver_str = ".".join(str(x) for x in version)
|
cur_ver_str = ".".join(str(x) for x in version)
|
||||||
install_cmd = "curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash"
|
install_cmd = "curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash"
|
||||||
raise BdVersionError(
|
raise BdVersionError(
|
||||||
f"bd version {cur_ver_str} is too old. "
|
f"bd version {cur_ver_str} is too old. "
|
||||||
f"This MCP server requires bd >= {min_ver_str}. "
|
f"This MCP server requires bd >= {min_ver_str}. "
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ class Config(BaseSettings):
|
|||||||
f"bd executable not found at: {v}\n\n"
|
f"bd executable not found at: {v}\n\n"
|
||||||
+ "The beads Claude Code plugin requires the bd CLI to be installed.\n\n"
|
+ "The beads Claude Code plugin requires the bd CLI to be installed.\n\n"
|
||||||
+ "Install bd CLI:\n"
|
+ "Install bd CLI:\n"
|
||||||
+ " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash\n\n"
|
+ " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash\n\n"
|
||||||
+ "Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
+ "Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
||||||
+ "After installation, restart Claude Code to reload the MCP server."
|
+ "After installation, restart Claude Code to reload the MCP server."
|
||||||
)
|
)
|
||||||
@@ -154,7 +154,7 @@ def load_config() -> Config:
|
|||||||
"Beads MCP Server Configuration Error\n\n"
|
"Beads MCP Server Configuration Error\n\n"
|
||||||
+ f"{e}\n\n"
|
+ f"{e}\n\n"
|
||||||
+ "Common fix: Install the bd CLI first:\n"
|
+ "Common fix: Install the bd CLI first:\n"
|
||||||
+ " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/install.sh | bash\n\n"
|
+ " curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash\n\n"
|
||||||
+ "Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
+ "Or visit: https://github.com/steveyegge/beads#installation\n\n"
|
||||||
+ "After installation, restart Claude Code.\n\n"
|
+ "After installation, restart Claude Code.\n\n"
|
||||||
+ "Advanced configuration (optional):\n"
|
+ "Advanced configuration (optional):\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user