Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill setup-windows명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
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/...