Formbricks Integration for Openclaw

An AI-ready integration to programmatically manage Formbricks contacts, attribute keys, and workspaces using the oo CLI without handling raw tokens.

oomol
v1.0.1
Jun 9, 2026
0
546
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install oo-formbricks

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install oo-formbricks using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Formbricks Integration?

The Formbricks skill enables developers and AI agents to programmatically interact with the Formbricks survey and feedback platform. Powered by OOMOL connection services, this integration leverages the oo CLI to handle authentication, allowing you to read, create, update, and delete Formbricks data securely without storing or exposing raw API tokens.

By leveraging this tool inside Openclaw Skills, developers can construct intelligent workflows that automatically categorize user profiles, update workspace-scoped contacts, and synchronize feedback metadata across their stack. It simplifies integration complexities so that your AI agents can focus purely on data orchestrations and user experiences.

Formbricks Integration Use Cases

  • Automated Contact Segmentation: Automatically create or update Formbricks contacts with targeted attribute keys based on user behavior analyzed by your AI agent.
  • Feedback Schema Management: Programmatically initialize or synchronize survey attribute keys across different workspaces during development or deployment.
  • Dynamic Profile Enrichment: Fetch current workspace details and enrich customer profile attributes dynamically as they complete specific actions in your application.
  • Secure Feedback Pipeline: Implement automated feedback processing pipelines without hardcoding sensitive API credentials.

How Formbricks Integration Works

  1. Contract Inspection: The agent queries the live Formbricks action schema using the command oo connector schema "formbricks" --action "<action_name>" to dynamically discover the required input fields and output data structures.
  2. Payload Building: Based on the schema definition, the AI agent builds a compliant JSON data payload containing the necessary attributes and parameters.
  3. Secure Action Execution: The agent executes the command using oo connector run "formbricks" --action "<action_name>" --data '<json>' --json. OOMOL injects the credentials server-side to communicate with Formbricks.
  4. Result Processing: The tool returns the response JSON (including the execution ID inside the metadata) back to the agent for further analytical workflows.

Formbricks Integration Setup

Ensure you have the oo CLI installed and configured. Execute the following steps to authenticate and link your Formbricks account:

1. Install oo CLI

On macOS or Linux:

curl -fsSL https://cli.oomol.com/install.sh | bash

On Windows (PowerShell):

irm https://cli.oomol.com/install.ps1 | iex

2. Authenticate CLI

Log in to your OOMOL account once:

oo auth login

3. Connect Formbricks

Link your Formbricks workspace using an API key by visiting:

https://console.oomol.com/app-connections?provider=formbricks

Once completed, the Openclaw Skills infrastructure will route all API requests securely.

Formbricks Integration Data Schema & Taxonomy

The Formbricks skill leverages the oo command-line utility to orchestrate operations. The dynamic schema for each action can be fetched programmatically to guarantee compatibility.

Standard Command Parameters

Parameter Type Description Required
--action String Name of the action to execute (e.g., create_contact, get_me) Yes
--data JSON String or Path JSON payload or @path/to/file.json No (defaults to {})
--json Flag Returns output formatted as a raw JSON response Yes

Execution Response Schema

{
  "data": {
    "id": "string",
    "attributes": {}
  },
  "meta": {
    "executionId": "string"
  }
}

Formbricks Integration Advanced Features

  • Dynamic Schema Exploration: Fetch the authoritative, live contract schema directly from the API, preventing failures due to breaking schema shifts or unexpected property requirements.
  • Tokenless Secure Credentials: Utilize OOMOL-managed OAuth or API Key injections. This keeps connection details off developers' local machines and agent execution environments, raising the security posture of your Openclaw Skills deployments.
  • Workspace Context Scoping: Quickly determine organizational boundaries using the get_me action to resolve current tenant, workspace, and licensing contexts automatically.
  • Action Safety Levels: Built-in separation between safe read actions (get or list) and stateful write or destructive actions, allowing for clear human-in-the-loop approvals before modification.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*