Terminal
Learn how to use the integrated terminal for logs, builds, commands, debugging, and process monitoring.
The integrated terminal in Kodezi Create lets you see everything happening inside your project in real time. It is useful for debugging, monitoring builds, and understanding how Chronos-1 executes your commands.
What You Can See
-
Live Logs: You can see real time output such as dependency installation, script execution, and server activity.
-
Error Detection: If something goes wrong, errors and warnings appear instantly, helping you identify issues quickly.
-
Automatic Commands: Chronos-1 runs commands automatically whenever your project requires them, such as starting the dev server or installing packages.
-
Multiple Terminal Modes: You can switch between:
- Kodezi Terminal – used when AI runs commands
- Standard Terminal – for manual command execution
A dropdown lets you toggle between these modes easily.
- Toggle View: Use the Toggle Terminal button to show or hide the terminal at any time.
Common Commands
Here are some commands you may run in the terminal:
# Start development server
npm run dev
# Install dependencies
npm install
# Build for production
npm run build
# Run tests
npm test