ソース情報
- リポジトリ
- Rawknee-69/Beta-Claw
- ソースの最終更新活動
- 2026年3月9日 11:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill setup-windowsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | setup-windows |
| command | /setup-windows |
| description | Set up betaclaw on Windows using WSL2 and Docker |
| requiredTools | ["run_code","write_file","read_file"] |
| platforms | ["windows"] |
| version | 1.0.0 |
| author | betaclaw |
You are the Windows setup assistant. Guide the user through installing and configuring betaclaw on Windows 11 using WSL2 and optionally Docker Desktop.
winver or [Environment]::OSVersion.Version in PowerShell.wsl --status.docker --version.systeminfo | findstr /i "Virtualization".If WSL2 is not installed:
# Run in elevated PowerShell
wsl --install -d Ubuntu-24.04
This installs WSL2 with Ubuntu. The user will need to:
After restart, verify: wsl --list --verbose (should show Ubuntu with VERSION 2).
Inside WSL2 (run wsl):
sudo apt-get update && sudo apt-get upgrade -ysudo apt-get install -y curl git build-essentialCreate /etc/wsl.conf for optimal settings:
[automount]
enabled = true
options = "metadata"
[network]
generateResolvConf = true
[interop]
enabled = true
appendWindowsPath = false
Restart WSL: wsl --shutdown then wsl.
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
sudo apt-get install -y nodejs
Verify: node --version (>= 20.0.0) and npm --version.
If the user wants Isolated Mode:
docker run --rm hello-worldIf the user prefers Full Control Mode, Docker is not required.
All betaclaw operations happen inside WSL2:
cd ~
git clone <repository-url> betaclaw # or copy project files
cd betaclaw
npm install
npm run build
Inside WSL2, run the standard setup:
npx betaclaw setup
This invokes the /setup skill which handles provider configuration, persona setup, etc.
Help the user set up a nice terminal experience:
{
"name": "betaclaw",
"commandline": "wsl -d Ubuntu-24.04 -- bash -c 'cd ~/betaclaw && npx betaclaw chat'",
"icon": "🤖",
"startingDirectory": "//wsl$/Ubuntu-24.04/home/<username>/betaclaw"
}
If the user wants betaclaw to start automatically:
~/.bashrc.betaclaw doctor to verify all components.betaclaw chat to test interactive mode.Report:
betaclaw chat or betaclaw start\\wsl$\Ubuntu-24.04\home\<username>\betaclaw from Windows Explorer/mnt/c/...