Run the Orchestra Plugin setup script to install all MCP servers and dependencies
Installs all Orchestra Plugin dependencies including Node.js packages, Playwright browser, Python environment, and configures auto-approval hooks with safety guards. Run this once after cloning the repository to set up the complete multi-agent orchestration system.
/plugin marketplace add tstomtimes/orchestra/plugin install orchestra@orchestra-marketplaceRun the complete setup script to install all MCP servers, dependencies, and configure the Orchestra Plugin environment.
Execute the Orchestra setup script to install:
Check if setup.sh exists and is executable:
if [ ! -f "./setup.sh" ]; then
echo "❌ setup.sh not found. Please ensure you're in the Orchestra repository root."
exit 1
fi
Make setup.sh executable if needed:
chmod +x ./setup.sh
Run the setup script:
./setup.sh
After completion, show next steps:
✅ Orchestra Plugin setup completed!
Next steps:
1. Edit .env file to add your API keys (if not done already)
2. Restart Claude Code to activate all features
3. Start coding - Orchestra will automatically enhance your workflow!
Available features:
- /browser - Start Browser MCP server
- /screenshot - Capture web screenshots
- 11 specialized AI agents (Riley, Skye, Finn, Eden, Kai, Leo, Iris, Nova, Mina, Theo, Blake) coordinated by main Claude Code
- Automated quality gates (before_task, before_pr, before_merge, before_deploy, after_deploy)
- Multi-agent orchestration with parallel execution
/browser commandThe setup creates .claude/settings.json with:
"permissions.allow": ["*"] - Auto-approve all tools (no confirmation dialogs)hooks/user-prompt-submit.sh) blocks dangerous operations:
rm -rf /, system file modificationssudo shutdown/rebootgit push --forceDROP DATABASE/TABLE)This enables autonomous operation while preventing destructive actions.