Skip to main content

Documentation Index

Fetch the complete documentation index at: https://botpress.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Install the ADK CLI, give Cursor ADK knowledge with skills, then let it build your agent from a simple prompt.
Cursor building an ADK agent

Install the CLI

curl -fsSL https://github.com/botpress/adk/releases/latest/download/install.sh | bash

Install ADK skills

Skills give Cursor deep knowledge of ADK conventions, primitives, and CLI commands:
bunx skills add botpress/skills -s '*' -a cursor -y

Build your agent

Open your project in Cursor, use the chat panel (Cmd + L), and give it a prompt:
Initialize a simple ADK hello world bot for me.
Cursor will scaffold the project and write the agent code. Once it’s done, run these commands from the project folder:
adk link   # connects your agent to Botpress (opens a browser to log in)
adk dev    # starts the dev console
Open the dev console and start chatting with your agent:
ADK dev console chat

Add more features

Keep prompting Cursor to extend your bot. For example:
Add a tool that looks up the weather for a given city.
Chat with your bot in the dev console to try out your changes.

Deploy your agent

When you’re ready to share your bot, deploy it to Botpress Cloud:
adk deploy

Agent configuration

Learn about project structure, models, state, and dependencies.
Last modified on May 2, 2026