Botpress integration
Botpress is an open-source platform for building, deploying, and managing…
- Provider
- botpress
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 53 available
Quick start
Call Botpress from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Botpress's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"BOTPRESS_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Botpress API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
53 actions exposed via the
Botpress integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BOTPRESS_BREAK_DOWN_WORKSPACE_USAGE_BY_BOT -
BOTPRESS_CHARGE_WORKSPACE_UNPAID_INVOICES -
BOTPRESS_CHECK_HANDLE_AVAILABILITY -
BOTPRESS_CREATE_ADMIN_INTEGRATION -
BOTPRESS_CREATE_ADMIN_WORKSPACE -
BOTPRESS_CREATE_BOT -
BOTPRESS_CREATE_CONVERSATION -
BOTPRESS_DELETE_ADMIN_WORKSPACE -
BOTPRESS_DELETE_FILE -
BOTPRESS_DELETE_INTEGRATION_SHAREABLE_ID -
BOTPRESS_DELETE_KNOWLEDGE_BASE -
BOTPRESS_GET_ACCOUNT
Show all 53 actions
-
BOTPRESS_GET_ACCOUNT_PREFERENCE -
BOTPRESS_GET_ALL_WORKSPACE_QUOTA_COMPLETION -
BOTPRESS_GET_DEREFERENCED_PUBLIC_PLUGIN_BY_ID -
BOTPRESS_GET_INTEGRATION -
BOTPRESS_GET_PUBLIC_INTEGRATION -
BOTPRESS_GET_PUBLIC_INTEGRATION_BY_ID -
BOTPRESS_GET_PUBLIC_INTERFACE -
BOTPRESS_GET_PUBLIC_INTERFACE_BY_ID -
BOTPRESS_GET_PUBLIC_PLUGIN -
BOTPRESS_GET_PUBLIC_PLUGIN_BY_ID -
BOTPRESS_GET_PUBLIC_PLUGIN_CODE -
BOTPRESS_GET_TABLE_ROW -
BOTPRESS_GET_UPCOMING_INVOICE -
BOTPRESS_GET_WORKSPACE -
BOTPRESS_GET_WORKSPACE_QUOTA -
BOTPRESS_LIST_ACTION_RUNS -
BOTPRESS_LIST_BOT_ISSUES -
BOTPRESS_LIST_CONVERSATIONS -
BOTPRESS_LIST_FILE_TAGS -
BOTPRESS_LIST_FILE_TAG_VALUES -
BOTPRESS_LIST_HUB_INTEGRATIONS -
BOTPRESS_LIST_INTEGRATION_API_KEYS -
BOTPRESS_LIST_INTEGRATIONS -
BOTPRESS_LIST_KNOWLEDGE_BASES -
BOTPRESS_LIST_PLUGINS -
BOTPRESS_LIST_PUBLIC_INTERFACES -
BOTPRESS_LIST_PUBLIC_PLUGINS -
BOTPRESS_LIST_PUBLIC_WORKSPACES -
BOTPRESS_LIST_USAGE_HISTORY -
BOTPRESS_LIST_WORKSPACE_INVOICES -
BOTPRESS_LIST_WORKSPACES -
BOTPRESS_REQUEST_INTEGRATION_VERIFICATION -
BOTPRESS_RUN_VRL -
BOTPRESS_SEND_MESSAGE -
BOTPRESS_SET_ACCOUNT_PREFERENCE -
BOTPRESS_SET_WORKSPACE_PREFERENCE -
BOTPRESS_UPDATE_ACCOUNT -
BOTPRESS_UPDATE_ADMIN_BOTS -
BOTPRESS_UPDATE_ADMIN_WORKSPACE -
BOTPRESS_UPDATE_WORKFLOW -
BOTPRESS_VALIDATE_INTEGRATION_UPDATE
Build with Botpress
Open OverSkill, describe what you want to build, and reference Botpress in your prompt — the AI will wire up the integration automatically.