Botpress Growth is a collection of official integrations and tooling that help developers extend the Botpress platform. This monorepo contains reusable packages, a set of ready-made integrations and an advanced bot template that demonstrates common patterns.
bp-integration-runner
– Utility to run and expose a Botpress integration locally using ngrok.integrations/
– Individual integration packages (e.g. GoHighLevel, Google Chat, Salesforce, HubSpot HITL, TwilioVoice, SharePoint, etc.).advanced-starter-bot-template
– Example bot project showcasing advanced techniques.
flowchart TD
subgraph growth
Runner[bp-integration-runner]
subgraph integrations
gohighlevel[gohighlevel]
googlechat[google-chat-spaces]
hitlapi[hitl-api]
others[others]
end
Template[advanced-starter-bot-template]
end
sequenceDiagram
participant User
participant GoogleChat as "Google Chat"
participant Integration
participant Botpress
User ->> GoogleChat: send message
GoogleChat ->> Integration: webhook
Integration ->> Botpress: create conversation/message
Botpress -->> Integration: ack
Integration -->> GoogleChat: optional reply
Runs a local integration with live reload and updates its URL in Botpress. Environment variables are loaded from .env
and checked for required keys BOTPRESS_PAT
and BOTPRESS_WORKSPACE_ID
as shown in the script.
Entry point: bp-integration-runner/run.js
.
Each folder under integrations/
is a standalone package. The entry file is src/index.ts
and configuration schema is defined in integration.definition.ts
. For example, the Google Chat integration expects a service account JSON and a default space ID in its configuration【F:integrations/google-chat-spaces/integration.definition.ts†L1-L18】.
A ready‑to‑use bot showcasing techniques such as event tracking, loading user data and live agent handoff. See the topics covered in its README【F:advanced-starter-bot-template/README.md†L1-L17】.
To develop an integration, start by installing the Botpress CLI:
npm install -g @botpress/cli # for npm
yarn global add @botpress/cli # for yarn
pnpm install -g @botpress/cli # for pnpm
Then, in the directory of your choice, create a new integration:
bp init
This command will generate an integration from one of the proposed templates.
For more information on how to develop an integration, please refer to the Integration Documentation.
- Prerequisites – Node.js 18+, pnpm 8.
- Install dependencies:
pnpm install
. - Optional: create
.env
at the project root with credentials for the runner or integrations. - Run tests:
pnpm test
(uses Vitest)【F:package.json†L4-L9】. - Lint & type-check:
pnpm check
【F:package.json†L21-L22】.
Each integration can be deployed with the Botpress CLI (bp deploy
) or via pnpm run deploy
in the integration folder. A GitHub Action verifies that the integration version is bumped before merging new changes.
To deploy your integration to your workspace:
bp deploy
This will deploy your integration's current version to your workspace and make it available to all your bots. If this version is already deployed, it will be updated. Otherwise, a new version will be created.
By default, all integrations are private to the workspace they have been deployed in. When you are ready to share your version with the community, you can make it public by running:
bp deploy --public
This will make your integration available to all Botpress users on the Botpress Hub. Once a version of your integration is public, it cannot be updated again.
- Format and lint code using
pnpm fix
or runpnpm check
before committing. - Keep commit messages concise and in the imperative mood.
- New integrations should place code under
integrations/<name>
and include apackage.json
with a uniqueintegrationName
field.
We love contributions from the community! For bugs or features related to the advanced bot template, integrations, botpress-integration-runner or anything else, please talk to us on Discord instead.
All packages in this repository are open-source software and licensed under the MIT License. By contributing in this repository, you agree to release your code under this license as well.
Let's build the future of chatbot development together! 🤖🚀