Get Agentwise up and running in just a few minutes. Follow this step-by-step guide for a smooth installation experience.
Before installing Agentwise, ensure you have the following prerequisites:
Agentwise now includes automatic permission handling:
# Just start Claude Code normally:
claude
# Then use Agentwise commands:
claude /create "my amazing app"
Features:
Note: The old --dangerously-skip-permissions flag still works if you prefer it.
Copy this entire prompt and paste it into Claude Code:
I need you to set up Agentwise, a multi-agent orchestration system.
Please perform these steps:
1. Clone: git clone https://github.com/VibeCodingWithPhil/agentwise.git ~/agentwise
2. Install: cd ~/agentwise && npm install && npm run build
3. Create workspace: mkdir -p workspace
4. Install monitor: npm run monitor:install
5. Start Agentwise: node dist/index.js
6. Configure sandboxed execution (no --dangerously-skip-permissions needed)
Full instructions: https://github.com/VibeCodingWithPhil/agentwise/blob/main/CLAUDE_CODE_SETUP_PROMPT.md
If you prefer manual control or the automated prompt doesn't work:
One-command installation
curl -fsSL https://raw.githubusercontent.com/VibeCodingWithPhil/agentwise/main/installers/install.sh | bash
PowerShell as Administrator
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/VibeCodingWithPhil/agentwise/main/installers/install.ps1" -OutFile "install.ps1"
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
.\install.ps1
If the automated installers don't work, follow these manual steps:
git clone https://github.com/VibeCodingWithPhil/agentwise.git
cd agentwise
npm install
# Build (ignore TypeScript errors if any)
npm run build 2>/dev/null || true
cd src/monitor
npm install
cd ../..
claude --dangerously-skip-permissions
Follow these steps to ensure Agentwise is properly installed and working:
In Claude Code, type /help
and verify Agentwise commands are listed.
/monitor
Should open dashboard at http://localhost:3001
/create "a simple hello world app"
Should start creating agent-todo folders and begin orchestration
Install Claude Code from https://docs.anthropic.com/en/docs/claude-code
Install monitor dependencies manually
cd src/monitor
npm install
cd ../..
/monitor
Run 'claude /configure-agentwise' to enable automatic permission handling
Update to latest version and use /init-import + /task-import
Great! You now have Agentwise installed and ready to use. Here's what to do next: