agent-builder

작성자: n8n-io

Use when creating, configuring, or editing a target n8n agent's build configuration — chat integrations/triggers, MCP servers, node-tool resource locators,…

npx skills add https://github.com/n8n-io/n8n --skill agent-builder

Agent Builder

Routing

Use this skill after intent-recognition chooses an agent-anchored design, or when the conversation already targets an Agent and the user is continuing that build. Do not rerun intent recognition for routine Agent edits or extensions. Use build-agent only for Agent artifacts.

Faithful handoff

Treat message as a faithful handoff of the user's request, not an Agent build specification authored by you. Forward the user's wording as close to verbatim as possible. Include only:

  • Requirements, constraints, and implementation choices the user explicitly stated.
  • Explicit answers or decisions from earlier turns that are necessary for the current request.
  • Prerequisite workflows or data tables you created for this Agent.

Never infer, invent, expand, recommend, or prescribe implementation details the user did not request, and never present your assumptions as user requirements. In particular, do not choose or tell the builder which model, instructions, tools, tool types, integrations, channels, MCP servers, workflows, skills, tasks, memory, credentials, triggers, schedules, approvals, or test strategy to use.

Do not translate an outcome or named service into a specific implementation. For example, forward "a Slack agent that says hello to me" without turning it into a request for a Slack node tool. Preserve unspecified and ambiguous implementation details so the builder can resolve them with its own guidance and interactive tools.

Prerequisites

Before the first build-agent call, create every prerequisite the builder cannot create:

  • Create a workflow tool only when one Agent tool call must run an ordered multi-node procedure, or when the user explicitly needs that workflow to be reusable, manually callable, or usable outside the Agent. Follow workflow-builder, then pass the built workflow in workflowContext.
  • When the Agent will store or query tabular data, follow data-table-manager and create the required tables via data-tables. The builder cannot create tables.

List prerequisite names and schemas in message. Let the builder gather the remaining Agent-specific requirements, including model, credentials, integrations, and direct tools.

If a builderReply lists missing workflows or tables, create them and call build-agent again. Never ask the user to create them manually.

Targeting across turns

Address Agents in this conversation with agentRef, a short stable key similar to a workflow filePath.

  • For the first Agent, pass a fresh agentRef and name.
  • Reuse that agentRef on later calls. Calls with neither agentRef nor agentId continue editing the current Agent.
  • To build an additional Agent, pass createNew: true with a different agentRef and name.
  • To edit an Agent not built in this conversation, pass its agentId once, optionally with an agentRef, then prefer the returned agentRef.

Naming or renaming the current Agent never silently creates another one.

Builder-owned interactions

When the user asks to test, run, publish, activate, make usable, unpublish, or otherwise change the Agent, forward that intent in message. The builder owns its internal testing tools; do not conclude testing is unavailable because those tools do not appear in your toolset.

When the builder needs a user choice, credential, chat channel, or approval, it surfaces an interactive card in this chat. Do not relay the question yourself; the build-agent call resumes with the user's answer.

n8n-io의 다른 스킬

n8n-cli
n8n-io
n8n CLI를 사용하여 n8n 인스턴스에서 워크플로, 자격 증명, 실행 등을 관리합니다. 사용자가 n8n과 상호작용하거나 워크플로를 자동화하도록 요청할 때 사용합니다.
official
create-issue
n8n-io
n8n 규칙에 따라 Linear 티켓이나 GitHub 이슈를 생성합니다. 사용자가 티켓 생성, 버그 제보, 이슈 열기, 또는 /create-issue를 요청할 때 사용하세요.
official
node-add-oauth
n8n-io
기존 n8n 노드에 OAuth2 자격 증명 지원을 추가합니다 — 자격 증명 파일을 생성하고, 노드를 업데이트하며, 테스트를 추가하고, CLI 상수를 동기화 상태로 유지합니다. 다음 경우에 사용하세요…
official
spec-driven-development
n8n-io
구현과 명세를 동기화합니다. .claude/specs/에 명세가 있는 기능을 작업할 때, 사용자가 /spec이라고 말할 때, 또는 시작할 때 사용합니다.
official
content-design
n8n-io
Product content designer for UI copy. Use when writing, reviewing, or auditing user-facing text: button labels, error messages, tooltips, empty states, modal…
official
create-issue
n8n-io
Create Linear tickets or GitHub issues following n8n conventions. Use when the user asks to create a ticket, file a bug, open an issue, or says /create-issue.
official
create-pr
n8n-io
Creates GitHub pull requests with properly formatted titles that pass the check-pr-title CI validation. Use when creating PRs, submitting changes for review,…
official
create-skill
n8n-io
Guides users through creating effective Agent Skills. Use when you want to create, write, or author a new skill, or asks about skill structure, best practices,…
official