Agent Skillsnovuhq/novu › novu-dashboard-workflows

novu-dashboard-workflows

GitHub

规范 Novu Dashboard 工作流中各类通知步骤(邮件、短信等)的内容编写,涵盖变量使用、响应引用及不同编辑器类型的格式要求。

docs/.mintlify/skills/dashboard-workflows/SKILL.md novuhq/novu

Trigger Scenarios

编辑 Novu 工作流的步骤内容 通过 MCP 工具创建或更新通知步骤

Install

npx skills add novuhq/novu --skill novu-dashboard-workflows -g -y
More Options

Non-standard path

npx skills add https://github.com/novuhq/novu/tree/next/docs/.mintlify/skills/dashboard-workflows -g -y

Use without installing

npx skills use novuhq/novu@novu-dashboard-workflows

指定 Agent (Claude Code)

npx skills add novuhq/novu --skill novu-dashboard-workflows -a claude-code -g -y

安装 repo 全部 skill

npx skills add novuhq/novu --all -g -y

预览 repo 内 skill

npx skills add novuhq/novu --list

SKILL.md

Frontmatter
{
    "name": "novu-dashboard-workflows",
    "inputs": [
        {
            "name": "NOVU_SECRET_KEY",
            "type": "secret",
            "required": true,
            "description": "Server-side API key from https:\/\/dashboard.novu.co\/api-keys. Used by the Novu MCP and Dashboard automation."
        }
    ],
    "description": "Author step content for Novu workflows defined in the Dashboard or generated\/edited via the Novu MCP. Use when filling in step controls (subject, body, editorType, headers, body, conditions) for email, in-app, sms, push, chat, delay, digest, throttle, or HTTP Request steps."
}

Dashboard Workflows

Rules for authoring step content (subject, body, editorType, headers, body, conditions) on workflows that live in the Novu Dashboard — whether you're editing them by hand or via the Novu MCP.

Authoring in code with @novu/framework? Skip this skill — the Framework SDK encodes these constraints in its types and helpers.

Still need to decide what the workflow should look like (channels, severity, critical, digest, templates)? Start with design-workflow/, then come back here to fill in the step content.

When to use this skill

Use it whenever you write or edit the controls of a Dashboard / MCP step:

  • "Set the email subject and body for this step"
  • "Update the in-app notification copy"
  • "Add headers to this HTTP Request step"
  • "Change the digest window to 1 hour"
  • "Skip this step when the subscriber is offline" (step condition)
  • Any Novu MCP tool call that writes step content (create_workflow, update_workflow_step, etc.)

Step Content Guidelines

These rules apply to every step type.

  • Use Liquid variables in control values for personalization. Variables must be wrapped in double curly braces {{ and }}. Example: {{ subscriber.firstName }}, {{ payload.* }}.
  • EXCEPTION: In Block Editor (editorType: "block") node attributes, never use curly braces — use bare variable names like payload.actionUrl instead of {{ payload.actionUrl }}. See references/email-step.md for the full Block Editor rules.
  • For steps after an HTTP Request step, use {{ steps.<http-step-id>.<property> }} to reference response data. Only properties defined in that HTTP step's responseBodySchema are available — never invent arbitrary response fields. Example: if HTTP step fetch-user defines responseBodySchema with name and email, use {{ steps.fetch-user.name }} and {{ steps.fetch-user.email }}.
  • Never hardcode URLs, names, or product names — use variables instead.
  • Keep content consistent with other workflow steps.
  • Modify the content according to the user's intent.
  • Preserve everything not explicitly asked to change.
  • Keep the same editorType (block or html for email) and structure.

Step Types

Each step type has its own content rules. Open the matching reference before writing controls.

Step type Reference Use it for
Email references/email-step.md Detailed content, formal communications, receipts
In-App references/in-app-step.md Real-time updates, activity feeds, high engagement
SMS references/sms-step.md Urgent alerts, verification codes, time-sensitive messages
Push references/push-step.md Mobile engagement, re-engagement, time-sensitive updates
Chat references/chat-step.md Slack / Discord / Teams team & developer alerts
Delay references/delay-step.md Pause workflow execution before a channel step
Digest references/digest-step.md Batch multiple notifications into one
Throttle references/throttle-step.md Limit notification frequency, prevent fatigue
HTTP Request references/http-request-step.md Call external APIs / webhooks; fetch data for later steps
Step condition references/step-conditions.md JSON-Logic for "send only if…", merge / replace / remove

Common Pitfalls

  1. Curly braces inside Block Editor attributes — Maily TipTap node attrs (url, text, src, id, each, href, externalLink) take bare variable names. "{{ payload.actionUrl }}" is wrong; "payload.actionUrl" is right. See references/email-step.md.
  2. Referencing undeclared HTTP response fields{{ steps.<http-step-id>.<property> }} only works for properties listed in that step's responseBodySchema. Add the property to the schema first.
  3. Hardcoding array items instead of looping — when the payload contains an array (payload.items, payload.providers), iterate with a Block Editor repeat node or an HTML {% for %} loop. Don't list array items as separate nodes / elements.
  4. Empty key/value entries in HTTP headers or body — use an empty array [] when not needed. Never [{ "key": "", "value": "" }].
  5. Hardcoded URLs / product names — always pull from payload.* or subscriber.* so the workflow stays portable.
  6. Changing editorType when editing email — keep block as block and html as html unless the user explicitly asks to switch.
  7. Replacing a step condition when the user said "add" — "add" / "also" / "and" merges with { "and": [...] }; "change to" / "set to" replaces; "remove" / "clear" returns null. See references/step-conditions.md.

See Also

Version History

  • 56a8a16 Current 2026-08-29 05:11

Same Skill Collection

.agents/skills/email-best-practices/SKILL.md
.agents/skills/frontend-design/SKILL.md
.agents/skills/linear-release-setup/SKILL.md
.agents/skills/react-email/SKILL.md
.agents/skills/testerarmy-cli/SKILL.md
.claude/skills/better-auth-best-practices/SKILL.md
.cursor/skills/add-channel-connect-button/SKILL.md
.cursor/skills/add-channel-setup-guide/SKILL.md
.cursor/skills/address-pr-review/SKILL.md
.cursor/skills/better-auth-best-practices/SKILL.md
.cursor/skills/ink-tui/SKILL.md
.cursor/skills/novu-prepare-pr/SKILL.md
.cursor/skills/nv-implement/SKILL.md
.cursor/skills/nv-park-and-review/SKILL.md
.cursor/skills/nv-worktree-cleanup/SKILL.md
.cursor/skills/nv-worktree-commands/SKILL.md
.cursor/skills/nv-worktree-create/SKILL.md
.cursor/skills/run-api-e2e-tests/SKILL.md
.cursor/skills/sanity-changelog/SKILL.md
.cursor/skills/triage-agent-eval-failures/SKILL.md
docs/.mintlify/skills/manage-preferences/SKILL.md
docs/.mintlify/skills/manage-subscribers/SKILL.md
docs/.mintlify/skills/trigger-notification/SKILL.md
.agents/skills/figma-use/SKILL.md
.cursor/skills/add-channel-whats-next-onboarding/SKILL.md
.cursor/skills/nv-endpoint-routed-tool-provider/SKILL.md
docs/.mintlify/skills/design-workflow/SKILL.md
docs/.mintlify/skills/framework-integration/SKILL.md
docs/.mintlify/skills/inbox-integration/SKILL.md

Metadata

Files
0
Version
56a8a16
Hash
e1946a76
Indexed
2026-08-29 05:11

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-01 02:51
浙ICP备14020137号-1 $Carte des visiteurs$