Agent Skill · Frontline

agent-builder

Build and configure Frontline agents from the CLI, including creation, active context, deployment status, theme, agent settings, and channel settings.

Provider: Frontline Path in repo: agent-builder/SKILL.md

Skill body

Prerequisites

Create And Select An Agent

frontline agents create --name "Support Agent"
frontline agents describe
frontline agents use <agentId>

create saves the new agent as the active agent by default. Pass --no-use to avoid changing context. Any agent-scoped command can use --agent-id <id> to override the active context.

Basic CRUD

frontline agents list --status ACTIVE
frontline agents describe
frontline agents update --name "Support Agent v2"
frontline agents delete

Delete is a soft delete through the assistant manager, preserving platform side effects and cleanup behavior.

Deployment

frontline agents deploy --offline false  # publish
frontline agents deploy --offline true   # pause

Publishing runs the same billing checks as the internal assistant manager.

Validate with test chat

After deploying, smoke-test the flow from the terminal:

frontline agents chat --message "Hello, I need help"

See the agents-chat skill for continuing conversations, linking contacts, and closing test sessions.

Agent Setting

Use agent-setting for instructions, model, tools, connected accounts, system tools, and selected tables.

frontline ai-models list --type TEXT --table
frontline agents agent-setting get
frontline agents agent-setting update --data '{"instructions":"Answer concisely.","temperature":0.2,"aiModelId":-29}'

The CLI merges --data with the current agent setting before sending the PUT. You can send only the fields you want to change, for example:

frontline agents agent-setting update --data '{"instructions":"New prompt only"}'

The API still validates the merged payload. Include aiModelId, temperature, and instructions when calling the Public API directly without the CLI merge helper.

Field constraints (validated by the API):

Field Type Constraints
temperature number min 0, max 1. Use one decimal place (e.g. 0.2, 0.7, 1.0)
maxIterations integer min 3, max 30. Default 10
aiModelId integer non-zero integer from frontline ai-models list --type TEXT

Use a TEXT model ID for aiModelId. The update command performs reference preflight in the same execution for resources exposed by Public API, including aiModelId and customToolIds; it then sends the mutation. The backend still performs final validation for all referenced objects, including connected accounts and ownership.

Resolve connectedAccountId values with frontline integrations list --table (USER API key). Channels (WhatsApp/Instagram/Messenger) are listed with frontline channels list.

Theme

frontline agents theme get
frontline agents theme update --data '{"title":"Support","initialMessage":"Hi! How can I help?","placeholder":"Type your message...","avatar":null,"bubbleImage":null,"bubbleColor":"#111827","userMessageColor":"#2563eb","agentMessageColor":"#f3f4f6","bubbleAlignment":"RIGHT","progressIndicator":"DYNAMIC","verticalPositionInPixels":24}'

The first public builder cut does not upload image files. Use existing image URLs or null for avatar and bubbleImage.

Channel Settings

Supported channel names are livechat, whatsapp, instagram, and messenger.

frontline agents settings get
frontline agents settings get livechat
frontline agents settings update whatsapp --data '{"splitMessages":true,"splitCharacterLimit":500,"conversationClose":"NEVER","closeAfter":null,"timeUnit":null,"sendCloseMessage":false,"closeMessageType":"STATIC","closeMessage":null,"closeInstruction":null}'
frontline agents settings list-channels --table

Channel payloads are validated with the internal channel-specific schemas, so required fields differ by channel. Start from settings get <channel>, edit the JSON, then send it back with settings update <channel> --data.


See also

Skill frontmatter

allowed-tools: Bash(frontline:*)

Work with this as data

Every skill here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for agent skills

4 MCP tools reach this
  • find_skillsBrowse and filter every skill in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This skill
curl "https://apis.io/api/v1/skills/agent-builder"
All agent skills
curl "https://apis.io/api/v1/skills?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.