Review Your Bot
TL;DR
Review generated commands, events, and configuration before deploying.
After VibeCoord generates your bot, you can review the code and see what commands were created before deploying.
Reviewing Generated Code
When generation completes, you’ll see the generated files in the Files panel (click the 📁 icon in the header).
What to Look For
- Command names — Check
commands/folder for slash command files - Event handlers — Look for
events/folder for welcome messages, moderation triggers, etc. - Configuration — The
config/folder contains bot settings
Understanding Your Bot
View the Code
- Click the 📁 Files button in the header
- Browse the generated project structure
- Click any file to see its contents
Check Command Names
Commands are in the commands/ folder. Each file typically defines one slash command:
commands/help.js→/helpcommands/joke.js→/jokecommands/ban.js→/ban
Making Changes Before Deploy
If something isn’t quite right, simply tell VibeCoord in the chat:
“Add a /ping command that shows the bot’s latency”
“Change the welcome message to say ‘Hello friend!’”
“Remove the /kick command”
VibeCoord will update the code and you can review the changes.
Testing After Deployment
Currently, VibeCoord doesn’t have a sandbox preview environment. To test your bot:
- Deploy to a test server — Create a private Discord server for testing
- Add your bot — Deploy and add it to your test server
- Try your commands — Test everything in a safe environment
- Iterate — Make changes via chat and redeploy
Quick Testing Workflow
- Generate your bot
- Review the code in the Files panel
- Deploy to your test server
- Test commands in Discord
- Iterate — tell VibeCoord what to change
- Redeploy when satisfied
Ready to Deploy?
Once you’ve reviewed the generated code: