typebot

typebot is a skill for Claude Code, Codex from felipefontoura/bento. It costs 161 tokens per session (1,295 once invoked), scanned A, original, MIT.

A set of instructions for operating Typebot through its web APIs on a Bento-hosted server. Typebot is a tool for building chatbots that guide people through scripted conversations and collect answers.

In plain words
What is it for?
Use it to start and continue chatbot conversations, list or publish bots, retrieve submitted answers, embed a chatbot, and manage bots through the management API.
Why use it?
It distinguishes the API used to manage and publish bots from the public API used to run conversations, avoiding requests sent to the wrong service.

Skill for Claude CodeCodex

Part of the bento plugin — 13 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/felipefontoura/bento/typebot
Any agent
npx skills add felipefontoura/bento --skill typebot
Clone the repo
git clone --depth 1 https://github.com/felipefontoura/bento

Made for: Claude Code, Codex.

Or install bento, the plugin that ships this one along with the rest of its 13 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for typebot

README.md
[![agentmods](https://agentmods.dev/badge/skills/felipefontoura/bento/typebot.svg)](https://agentmods.dev/skills/felipefontoura/bento/typebot)
Your own site
<a href="https://agentmods.dev/skills/felipefontoura/bento/typebot"><img src="https://agentmods.dev/badge/skills/felipefontoura/bento/typebot.svg" alt="Measured on agentmods" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,295 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00161 $0.01295
Opus 5 $0.00081 $0.00647
Sonnet 5 $0.00032 $0.00259
Haiku 4.5 $0.00016 $0.00129

Measured 4d ago against content hash 41706e6db719, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

typebot scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $TYPEBOT_TOKEN" \
plugins/bento/skills/typebot/SKILL.md · 115 lines

How it starts

The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You operate the HTTP API of a Typebot stack that is already deployed by bento. Day-2 work: run bot flows, manage typebots, pull results. For the exact endpoint paths and request bodies go to the official docs (linked at the bottom) — they are the source of truth. Your job is to know how to approach it, not to memorize the reference.

When this skill and the docs disagree, the docs win.

Critical — Typebot has two distinct API surfaces on two distinct hosts. The builder (TYPEBOT_BUILDER_HOST) serves management and results APIs (list, publish, get results) — needs a Bearer token. The viewer (TYPEBOT_VIEWER_HOST) serves chat execution (startChat, continueChat) — public, no auth. Mixing the two hosts is the #1 source of mysterious 404s. Always resolve both before making any call.

When to invoke

  • "start / run / continue a typebot conversation"
  • "list my typebots / publish a typebot / get results"
  • "call the chat API / embed my chatbot"

For getting Typebot running use /bento:deploy.

Discover the instance — don't hardcode

# Builder host (management + results)
ssh "$user@$host" \
  "jq -r '.envs.typebot.TYPEBOT_BUILDER_HOST' \$HOME/.config/bento/state.json"

# Viewer host (chat execution)
ssh "$user@$host" \
  "jq -r '.envs.typebot.TYPEBOT_VIEWER_HOST' \$HOME/.config/bento/state.json"

Swarm tasks (stack typebot): typebot_typebot_builder.1.* and typebot_typebot_viewer.1.*. Confirm with docker ps.

Auth — mint a token

Builder endpoints require Authorization: Bearer <token>. Viewer endpoints are public — no token needed.

Mint: Typebot builder UI → top-right avatar → Settings → API tokens → Create. Copy it once (shown only at creation). Store in an env var, never echo:

export TYPEBOT_TOKEN="<your-token>"

Discover your workspaceId

Most management routes require workspaceId. Fetch it once:

curl -s -H "Authorization: Bearer $TYPEBOT_TOKEN" \
  "https://$TYPEBOT_BUILDER_HOST/api/v1/workspaces" | jq '.workspaces[] | {id, name}'

Read the full file on GitHub · 115 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 115 lines · 161 tokens per session scan A 41706e6db719

Subscribe to this mod's changes

typebot is a skill published in the GitHub repository felipefontoura/bento (20 stars, last pushed 1mo ago), licensed MIT. It adds 161 tokens to every session and 1,295 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

superplane-changelog

When generating a SuperPlane changelog from merged commits. Use for "what's new" summaries with new integrations, new components/triggers, improvements, security updates, and bug fixes. Output is user-focused markdown in tmp/.

superplanehq/superplane · 50 tokens

review-agents-md

Audit Dograh AGENTS.md files for drift against the live repo and for bad scope boundaries between parent and child docs. Use when the user asks to review existing AGENTS files, identify stale guidance, decide whether a subtree needs its own AGENTS.md, or update the AGENTS.md hierarchy under the repo root, api/, or ui/.

dograh-hq/dograh · 82 tokens

clean-code

Clean-code engineering standards for writing, refactoring, and reviewing code in any programming language. Use this whenever the user asks to write clean code, follow clean-code principles, refactor for clarity, improve naming, reduce complexity or duplication, separate concerns, tighten error handling, work…

superplanehq/superplane · 93 tokens

pandic-office

Convert Markdown to PDF (or DOCX/EPUB/HTML) using the pandoc CLI. Use when asked to produce a PDF report, brief, summary, or any document where the input is Markdown and the output should be a polished, paginated file.

Team-Commonly/commonly · 59 tokens

tmux

Manage long-running shell sessions with tmux — start a detached session, run a long task, reattach later, capture output. Use when a task takes longer than a single tool call (build, test, log tail).

Team-Commonly/commonly · 48 tokens

post-build-flow

Handles workflow verification and setup after build-workflow succeeds, or when the message contains workflow-verification-follow-up or workflow-setup-required. Load after direct builds, when verificationReadiness requires action, or on orchestrator verify/setup follow-up turns.

n8n-io/n8n · 53 tokens