v4 Standard

Integrations

Connect your bots to the tools you already use. All integrations are available via the integrations.* namespace.

Enable Integrations

To use an integration, you must first connect your account in the Dashboard → Integrations page. Once connected, the tools become automatically available in your Hivelang code.

Build Custom Integrations

Create your own integration scaffold directly in your editor using the CLI. This generates an integration.json manifest and a TypeScript entry file you can implement.

Using Hivelang CLI

hive integration init my-integration

Using Bothive CLI

bothive integration init my-integration

The scaffold includes a minimal run(action, params, context) implementation. Add capabilities in the manifest and implement your actions in index.ts.