Before installing Agentwise, ensure you have:
# Check your version
node --version # Should show v18.0.0 or higher
# If not installed, download from:
# https://nodejs.org/en/download/# Install Claude Code from:
# https://docs.anthropic.com/en/docs/claude-code
# Verify installation
claude --version# Check if installed
git --versionAgentwise REQUIRES Claude Code to be started with the --dangerously-skip-permissions flag:
# ALWAYS start Claude Code like this:
claude --dangerously-skip-permissions
# NOT like this:
claude # ❌ Will NOT work with Agentwise- ✅ Enables file system operations for agents
- ✅ Allows monitor dashboard to access project files
- ✅ Permits global command installation
- ✅ Required for agent parallel execution
This flag reduces Claude Code's security restrictions. Only use with trusted projects in secure environments.
# Clone the repository
git clone https://github.com/VibeCodingWithPhil/agentwise.git
cd agentwise
# Install dependencies
npm install
# Build the project
npm run build
# Start with Claude Code (with required flag!)
claude --dangerously-skip-permissions# In WSL terminal:
git clone https://github.com/VibeCodingWithPhil/agentwise.git
cd agentwise
npm install
npm run build
# Start Claude Code with flag
claude --dangerously-skip-permissions# Download installer from releases
curl -O https://github.com/VibeCodingWithPhil/agentwise/releases/latest/download/install-macos.sh
# Make executable
chmod +x install-macos.sh
# Run installer
./install-macos.sh# In Claude Code (with --dangerously-skip-permissions flag):
/help
# You should see Agentwise commands listed# IMPORTANT: Do this before first use
cd src/monitor
npm install
cd ../..# In Claude Code:
/monitor install
# Or:
/monitor global
# This allows you to run 'agentwise-monitor' from anywhere# Start the monitor
/monitor
# Should open browser at http://localhost:3001
# If it closes immediately, you forgot to install dependencies (Step 2)claude --dangerously-skip-permissions/create "a todo app with React and Firebase"- Agentwise analyzes your request
- Selects appropriate specialist agents
- Creates agent-todo folders with tasks
- Agents work in PARALLEL (not sequentially)
- Monitor dashboard shows real-time progress
# Open monitor dashboard
/monitor
# Or if global command installed:
agentwise-monitor/init-import
# A file dialog will open
# Select your project folder/task-import
# This will:
# - Copy project to workspace/
# - Create agent-todo folders
# - Generate analysis tasks
# - Launch agents in parallel- ❌ No agent-todo folders created → Use the new ImportHandler (fixed in latest version)
- ❌ Agents work sequentially → Ensure using latest version with parallel execution
- ❌ Monitor shows no tasks → Check agent-todo folders exist in workspace/[project]/
Solution: Install Claude Code from https://docs.anthropic.com/en/docs/claude-code
Solution:
cd src/monitor
npm install
cd ../..
/monitorSolution: Ensure Claude Code started with --dangerously-skip-permissions flag
Solution: Update to latest version or manually create:
cd workspace/[project-name]
mkdir -p agent-todo/frontend-specialist
mkdir -p agent-todo/backend-specialist
# etc for each needed agentSolution: Check you're using latest version with ImportHandler fix
Solution: Use /monitor install instead (both work now)
- NOT 99% as previously claimed
- Realistic reduction through context sharing
- Savings increase with more agents
- Benchmark verified: 29-41% reduction
- Context sharing between agents
- Incremental updates instead of full context
- Response caching for similar queries
- Intelligent batching of requests
workspace/
└── your-project/
├── agent-todo/ # Tasks for each agent
│ ├── frontend-specialist/
│ │ ├── phase1.md # Analysis tasks
│ │ ├── phase2.md # Implementation
│ │ └── phase3.md # Testing
│ ├── backend-specialist/
│ └── [other-agents]/
├── src/ # Your project code
├── package.json
└── project-context.md # Project overview
/create <idea>- Create new project/task <feature>- Add feature to active project/projects- List and switch projects/monitor- Open monitoring dashboard
/init-import- Select project to import/task-import- Execute import with agents
/monitor install- Install global monitor command/monitor status- Check monitor installation/docs- Open documentation/help- Show all commands
- Always use the --dangerously-skip-permissions flag
- Install monitor dependencies before first use
- Let agents work in parallel - don't interrupt
- Use monitor dashboard to track progress
- Check agent-todo folders if tasks aren't showing
- Local:
/docscommand - Online: https://vibecodingwithphil.github.io/agentwise/
- Issues: https://github.com/VibeCodingWithPhil/agentwise/issues
- Ensure you've followed ALL steps above before reporting issues
- Create a test project to familiarize yourself
- Import an existing project to see analysis
- Explore the monitor dashboard features
- Read full documentation at
/docs
Remember: ALWAYS start Claude Code with --dangerously-skip-permissions flag!