Documentation Index
Fetch the complete documentation index at: https://docs.agentbot.raveculture.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Troubleshooting
Common issues when building, deploying, and running Agentbot agents.Installation Issues
npm install fails with peer dependency errors
npm install fails with peer dependency errors
--legacy-peer-deps flag resolves most conflicts.Prisma generate fails
Prisma generate fails
@prisma/client did not initialize, run the generate command manually.Port 3000 already in use
Port 3000 already in use
Deployment Issues
Vercel build fails with module not found
Vercel build fails with module not found
Check that all imports use the
@/ alias correctly. The @/ prefix maps to the web/ directory. Common mistake:Railway deploy fails — health check timeout
Railway deploy fails — health check timeout
The health check at
/health must respond within 60 seconds. Common causes:- Database connection string is wrong (check
DATABASE_URL) - Missing environment variables causing startup crash
Environment variables not loading
Environment variables not loading
Agentbot reads env vars at startup. After changing them:
- Vercel: Redeploy from dashboard or
vercel --prod - Railway: Service auto-restarts on env change
- Local: Restart the dev server (
npm run dev)
Agent Issues
Agent not responding to messages
Agent not responding to messages
- Check agent status:
GET /api/agents/{id} - Verify the channel token (Telegram/Discord/WhatsApp) is valid
- Check the agent container logs
- Ensure the AI provider API key is set and has credits
Agent running out of memory
Agent running out of memory
Each agent has a memory limit based on plan:
If you’re hitting memory limits, check for memory leaks in custom skills or upgrade your plan. The Solo tier (1 vCPU / 2 GB) is the trial/light-use floor — for production workloads, we recommend at least Collective (2 vCPU / 4 GB).
| Plan | Memory | CPU | Description |
|---|---|---|---|
| Solo | 2 GB | 1 vCPU | Trial / light workloads only |
| Collective | 4 GB | 2 vCPU | Recommended production floor |
| Label | 8 GB | 4 vCPU | Heavy production + browser/tool work |
| Network | 16 GB | 8 vCPU | High-throughput production |
Skills not loading
Skills not loading
Agent offline when installing skills
Agent offline when installing skills
If you see “Agent offline. Install your agent first, then retry installing skills.” in the dashboard, the skill was saved to your account but the agent’s gateway is not reachable.This happens when the API returns
"deployed": false with a deployWarning field. To resolve:- Verify your agent is running:
GET /api/agents/{id} - Start or restart the agent from the dashboard
- The skill will sync automatically once the agent comes back online
- You can also trigger a manual sync using
POST /api/agents/{id}/sync
Billing Issues
Stripe checkout returns 410 Gone
Stripe checkout returns 410 Gone
The legacy
/api/checkout endpoint is deprecated. Use:BYOK not working
BYOK not working
- Verify your API key is valid (test it with curl)
- Check the provider name matches exactly:
openrouter,anthropic,openai,google,groq - Ensure the key has credits/quota remaining
- Disable and re-enable BYOK from the billing dashboard
Getting Help
- Discord: discord.gg/vTPG4vdV6D — Community support
- GitHub Issues: Eskyee/agentbot-opensource — Bug reports
- GitHub Discussions: Eskyee/agentbot-opensource/discussions — Questions and ideas