Installation
Install the ADK CLI globally:Create your first agent
Initialize a new agent project:Hello World template, then follow the prompts to set up the agent. This creates a new my-agent directory with:
agent.config.ts- Agent configurationagent.json- Configuration for your linked botdependencies.json- Integration dependenciespackage.json- Project configurationtsconfig.json- TypeScript configurationsrc/- Source code directory structure
Install dependencies
Once you’ve finished the setup, navigate into your project:Test your agent
Now, you’re ready to test your agent.Start the development server
Start the development server with hot reloading:- Generates TypeScript types for your integrations
- Builds your agent
- Starts a local development server
- Watches for file changes and automatically rebuilds
Chat in the terminal
Open a new terminal window and start a conversation with your agent:View the ADK console
Visithttp://localhost:3001/ to access the interactive ADK console. This gives you an intuitive, visual breakdown of your agent project and lets you configure its integration’s settings.
Build your agent
Compile your agent for production:.adk/bot/.botpress/dist directory.
Deploy your agent
When you’re ready, you can deploy your agent to Botpress Cloud:You deployed your first agent using the ADK!