Support
Troubleshooting
Common issues and their solutions.
Build Issues
# Clean rebuild
pnpm clean && pnpm install && pnpm build
# Build specific package
pnpm --filter @jetpack-agent/coordinator buildWeb UI Shows Wrong/Old Data
- Check
JETPACK_WORK_DIRpoints to correct project - Restart the web server after changing the env var
- Verify
.beads/,.cass/,.jetpack/exist in target directory
MCP Server Not Connecting
- Ensure it's built:
pnpm build - Check path in
.claude/settings.local.json - Restart Claude Code after config changes
- Run
/mcpin Claude Code to verify
Plans Not Appearing in UI
- Check
.jetpack/plans/directory exists - Verify JSON has all required fields:
id,title,status,items - Each item needs:
id,title,status,priority,skills,dependencies
Agents Not Claiming Tasks
- Check agent skills match task
requiredSkills - Verify task status is
ready(dependencies satisfied) - Check messages in the DataLayer or web dashboard
No Tasks Showing
- Ensure Jetpack backend is running (
jetpack start) - Check
.jetpack/jetpack.dbexists in target project - Verify API is accessible at
/api/tasks - If using standalone mode, ensure
JETPACK_WORK_DIRis set correctly
Common CLI Errors
"Claude CLI not found"
npm install -g @anthropic-ai/claude-code"ANTHROPIC_API_KEY not set"
export ANTHROPIC_API_KEY=your_key_here
# Add to ~/.bashrc or ~/.zshrc for persistence"Port 3000 already in use"
jetpack start -p 3005 # Use different port
# Or kill existing process:
lsof -i :3000 | awk 'NR>1 {print $2}' | xargs kill