Online
Bento

Bento Skills for AI Agents

Bento Skills is the official Bento skill package for AI agents. It gives tools like Cursor, Claude, Codex, and OpenCode the context they need to choose the right Bento integration path without guessing API shapes.

Use it when you want an agent to add Bento to an app, review an integration, plan a subscriber sync, or choose between Bento MCP, the CLI, SDKs, and n8n.


Install

Install the package with the skills CLI:

Code
npx skills add @bentonow/bento-skills

Install only the Bento skill globally and skip prompts:

Code
npx skills add @bentonow/bento-skills --skill bento -g -y

What It Does

Bento Skills helps agents:

  • Pick the right Bento surface for the job: MCP, CLI, SDK, or n8n.
  • Keep API credentials out of source code and shared prompts.
  • Prefer bulk subscriber imports and batch APIs instead of one API call per person.
  • Use framework-native setup such as queues, jobs, config, credential stores, and tests.
  • Start with read-only inspection or a plan before changing live customer data.

Skills vs MCP vs CLI

GoalUse
Build or fix Bento integration code in a repoBento Skills plus the relevant SDK reference
Inspect or operate on a live Bento account from chatBento MCP
Import CSVs, run terminal automation, or script CI jobsBento CLI
Build no-code or low-code workflowsn8n

Bento Skills and Bento MCP work well together. Skills guide implementation work. MCP lets an assistant inspect or operate on a live Bento account when the MCP client is configured.

Supported remote MCP clients can connect to:

Code
https://mcp.bentonow.com/mcp

Safe First Prompts

Start with planning or review:

Code
Use the Bento skill to inspect this project and tell me which Bento SDK or tool fits best.
Code
Use the Bento skill to review this subscriber import for batching, credentials, and dry-run safety.

When you are ready to implement:

Code
Use the Bento skill to add a queued Laravel subscriber sync. Use bulk import, keep credentials in env, and add tests for payload shape and retries.