Skip to content
Skillv1.0.0

formbricks

Collect user feedback and run in-app surveys with Formbricks — open-source experience management platform. Use when someone asks to "add surveys to my app", "Formbricks", "in-app feedback", "NPS surve

by terminalskills(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from terminalskills/skills (skills/formbricks/SKILL.md). Install upstream with npx skills add terminalskills/skills --skill formbricks. Copyright stays with the author (Apache-2.0).

Formbricks

Overview

Formbricks is an open-source survey and feedback platform — embed surveys directly in your app, trigger them based on user actions, and collect targeted feedback. Unlike Typeform (generic forms) or Hotjar (page-level), Formbricks targets specific users at the right moment: after checkout, on feature use, at churn risk. NPS, CSAT, feature requests, bug reports — all in-context.

When to Use

  • Collecting in-app feedback (NPS, CSAT, feature requests)
  • Understanding why users churn or don't convert
  • Running product research surveys targeted at specific segments
  • A/B testing messaging or onboarding flows
  • Need an open-source alternative to Typeform/SurveyMonkey

Instructions

Setup

# Self-host
docker compose up -d  # From formbricks/formbricks repo

# Or install SDK for in-app surveys
npm install @formbricks/js

In-App Survey Integration

// app/layout.tsx — Initialize Formbricks in Next.js
import formbricks from "@formbricks/js/app";

if (typeof window !== "undefined") {
  formbricks.init({
    environmentId: process.env.NEXT_PUBLIC_FORMBRICKS_ENV_ID!,
    apiHost: "https://formbricks.myapp.com",  // Or cloud URL
  });
}

// Identify the user (for targeted surveys)
formbricks.setUserId("user_123");
formbricks.setAttributes({
  plan: "pro",
  signupDate: "2026-01-15",
  company: "Acme Inc",
});

Track Custom Actions (Triggers)

// components/Checkout.tsx — Trigger survey after checkout
import formbricks from "@formbricks/js/app";

function CheckoutSuccess() {
  useEffect(() => {
    // Track the action — surveys configured to trigger on "checkout_completed" will fire
    formbricks.track("checkout_completed", {
      orderValue: 99.99,
      plan: "pro",
    });
  }, []);

  return <div>Thanks for your purchase!</div>;
}

// Other trigger examples:
formbricks.track("feature_used", { feature: "export" });
formbricks.track("support_ticket_created");
formbricks.track("trial_ending");

API Usage

// api/surveys.ts — Create and manage surveys via API
const response = await fetch("https://formbricks.myapp.com/api/v1/surveys", {
  method: "POST",
  headers: {
    "x-api-key": process.env.FORMBRICKS_API_KEY!,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    name: "Post-Purchase NPS",
    type: "app",  // In-app survey
    questions: [
      {
        type: "nps",
        headline: "How likely are you to recommend us?",
        lowerLabel: "Not likely",
        upperLabel: "Very likely",
      },
      {
        type: "openText",
        headline: "What's the main reason for your score?",
        placeholder: "Tell us more...",
      },
    ],
    triggers: [{ actionClass: "checkout_completed" }],
    // Target only pro users who signed up > 30 days ago
    segment: {
      filters: [
        { attributeKey: "plan", condition: "equals", value: "pro" },
      ],
    },
  }),
});

Examples

Example 1: Add NPS survey after onboarding

User prompt: "Add an NPS survey that appears after a user completes onboarding."

The agent will set up Formbricks SDK, create an NPS survey triggered on the "onboarding_completed" action, and configure follow-up questions based on the score.

Example 2: Feature request collection

User prompt: "Let users submit feature requests from inside the app."

The agent will create a feedback survey with categorized questions, trigger it from a "Give Feedback" button, and set up webhook notifications to the product team.

Guidelines

  • In-app surveys > email surveys — 6x higher response rate
  • Trigger on actions — show surveys at the right moment, not randomly
  • Target specific segments — pro users, churning users, new signups
  • NPS + follow-up — always ask "why" after the score
  • Don't over-survey — Formbricks has frequency limits per user
  • Self-host for privacy — data stays on your infrastructure
  • Webhooks for real-time — send responses to Slack, Notion, etc.
  • A/B test survey copy — different headlines for different segments
  • Close the loop — respond to feedback, users notice

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/terminalskills-skills-formbricks/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

terminalskills-skills-formbricks.ocm.jsonjson
{
  "ocm": "1",
  "id": "terminalskills-skills-formbricks",
  "kind": "skill",
  "name": "formbricks",
  "description": "Collect user feedback and run in-app surveys with Formbricks — open-source experience management platform. Use when someone asks to \"add surveys to my app\", \"Formbricks\", \"in-app feedback\", \"NPS survey\", \"user research\", \"product feedback tool\", or \"open-source Typeform alternative\". Covers in-app surveys, website popups, link surveys, targeting, and analytics.",
  "publisher": "terminalskills",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "surveys",
      "feedback",
      "formbricks",
      "nps",
      "user-research",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Collect user feedback and run in-app surveys with Formbricks — open-source experience management platform. Use when someone asks to \"add surveys to my app\", \"Formbricks\", \"in-app feedback\", \"NPS survey\", \"user research\", \"product feedback tool\", or \"open-source Typeform alternative\". Covers in-app surveys, website popups, link surveys, targeting, and analytics."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/terminalskills/skills",
      "path": "skills/formbricks/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/terminalskills/skills/blob/HEAD/skills/formbricks/SKILL.md",
      "key": "terminalskills/skills/skills/formbricks/SKILL.md"
    },
    "compatibility": "React/Next.js SDK. REST API. Self-hostable or cloud.",
    "license": "Apache-2.0"
  },
  "instructions": "# Formbricks\n\n## Overview\n\nFormbricks is an open-source survey and feedback platform — embed surveys directly in your app, trigger them based on user actions, and collect targeted feedback. Unlike Typeform (generic forms) or Hotjar (page-level), Formbricks targets specific users at the right moment: after checkout, on feature use, at churn risk. NPS, CSAT, feature requests, bug reports — all in-context.\n\n## When to Use\n\n- Collecting in-app feedback (NPS, CSAT, feature requests)\n- Understanding why users churn or don't convert\n- Running product research surveys targeted at specific segments\n- A",
  "cost": {
    "context_tokens": 1040
  }
}

Fetch it by URL: GET /api/v1/registry/terminalskills-skills-formbricks/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.