Sequenzy
Generic compatibility guide for Sequenzy operations. Use for broad Sequenzy references, but prefer sequenzy-email-marketing for campaigns and campaign lifecycle control (cancel, pause, resume, delete, duplicate), campaign A/B tests, subscribers, lists, tags, segments, templates, sequences and sequence enrollment, transactional email, delivery stats, team invites, inbox conversations, outbound webhooks, CLI/MCP workflow support, and other email-marketing/product tasks.From its SKILL.md
npx -y skills add Sequenzy/skills --skill sequenzyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
9.4 KB, ~2.1k tokens by cl100k_base, as published. Nobody here has run it
Sequenzy
Overview
Use this generic skill when the user refers broadly to Sequenzy and no narrower skill is obviously better. For email-marketing/product work, prioritize sequenzy-email-marketing: campaigns, subscribers, lists, tags, segments, templates, sequences, transactional email, delivery stats, dashboard URLs, CLI/MCP behavior, and currently-supported workflow checks. Prefer the sequenzy CLI for supported workflows, treat packages/mcp/src/tools/index.ts as the MCP source of truth when the task goes through MCP tools, and explicitly call out when a requested workflow is not wired in the current implementation.
Ground Rules
- Treat
packages/cli/src/index.tsxas the source of truth for which commands are actually wired. - Treat
packages/cli/src/commands/andpackages/cli/src/api.tsas the source of truth for CLI behavior, payload shape, and API routes. - Treat
packages/mcp/src/tools/index.tsas the source of truth for MCP tool names, arguments, and preflight validation. - Do not promise support for commands or tools that only appear in docs or
--helptext without an attached implementation. - Prefer
sequenzy loginfor interactive auth andSEQUENZY_API_KEYfor automation. - Prefer inspection before mutation whenever the workflow allows it.
Supported Workflows
Read references/use-cases.md before executing anything non-trivial. The currently implemented CLI flows are:
- login and logout
- local auth/session check with
whoami - account inspection with
account - company inspection or creation with
companies list|get|create - stats overview or stats by campaign/sequence ID
- subscribers
list,add,get, andremove, withlistfetching every page by default and supporting tag, segment, and list filters - lists
list,create,update,delete,add-subscribers,remove-subscribers, andimportalias for bulk list population from emails, JSON, CSV, or newline files - tags
list,create,update, anddelete, with baresequenzy tagsstill listing tag definitions for backwards compatibility - segments
list,create,update,delete, andcount, including--match any, nested filter roots, custom event filters, and saved-segment composition filters - templates
list,get,create,update, anddelete, withlistsupporting label filters andcreate/updateaccepting labels, raw HTML, or Sequenzy block JSON - campaigns
list,get,create,updateincluding label and reply-to updates,schedule, andtest, withlistsupporting label filters,createaccepting labels plus raw HTML, Sequenzy block JSON, or prompt-generated content,updateaccepting labels plus raw HTML or Sequenzy block JSON, andschedulereturning a review preview link - campaign lifecycle control with
campaigns cancel(stops scheduled, paused, waiting-approval, or sending campaigns immediately, no confirmation prompt),campaigns pauseandcampaigns resumefor an active send (resume supports--spread-over-hours),campaigns delete(blocked while sending, scheduled, or paused - cancel first), andcampaigns duplicatewith--mode campaign|ab_test|variant - ab-tests
list,get,stats,restart,update-variant,create,add-variant,delete-variant, anddelete; create/add-variant/delete-variant/delete work on campaign A/B tests in draft status, variant A is the protected control, andrestartreruns a finished sequence A/B test - MCP template and campaign tools support labels on list/create/update; MCP
update_campaignalso supportsreplyToandreplyProfileId, and MCPschedule_campaignschedules draft or already scheduled campaigns - MCP
search_subscriberssupports list filters throughlist,listId, orlistName; MCPadd_subscribers_to_listaccepts up to 500 emails per call - sequences
list,get,create,update,enable,disable,delete,enroll, andcancel-enrollments, including explicit discount action steps, cancellation by subscriber ID or event-property field values, andupdatebranch insertion with tag, list, segment, event, clicked-link, and field conditions; event and clicked-link branch checks can useactivityScope(this_sequence,previous_email,ever) - manual sequence enrollment with
sequences enrollfrom emails, JSON, or files, optionally at a specific node with--target-node-id, reporting enrolled, skipped, and not-found subscribers - team
list,invitewith--role admin|viewerand owner-only--billing-access, andcancel-invitation - inbox
listwith status, search, unread, and pagination filters,get,replyincluding internal notes with--note,close,reopen, andmark-read - webhooks
list,create,update,delete,test,deliveries, andreplayfor outbound webhook endpoints, withcreateprinting the signing secret exactly once - AI generation with
generate email,generate sequence, andgenerate subjects - dashboard URL generation with CLI
urls, MCPget_app_urls, andappUrls/urlfields on campaign, sequence, template, and company results - websites
list,add,check, andguide - products
list,sync,attach-file, anddetach-filefor digital product delivery, withattach-file --fileuploading local files via presigned URLs; attached files are exposed onsaas.purchaseevents as{{event.download.url}}/{{event.download.name}}(MCP:list_products,attach_product_file,remove_product_file,sync_products) - API key creation with
api-keys create - send one transactional email by template or raw HTML
- product feedback with
feedback, sending missing-capability reports, bug reports, and other product feedback straight to the Sequenzy team (MCP:submit_feedback)
Unsupported Or Placeholder Workflows
Treat missing subcommands as unsupported even when the noun exists. The main remaining gap is campaign immediate send: there is no "send now" command, so schedule the campaign with a near-future --at timestamp instead. Bulk list population is supported through sequenzy lists add-subscribers and its sequenzy lists import alias, not through subscribers add. Whenever the user wanted something unsupported, report the gap with sequenzy feedback "..." --category missing_capability (MCP: submit_feedback) so it reaches the Sequenzy team.
Execution Pattern
- Check auth first with
sequenzy whoamior by verifyingSEQUENZY_API_KEYis set. - Pick the narrowest command that matches the use case.
- Validate IDs, recipient email, subject, template, or content input before issuing a mutation.
- Surface CLI limitations directly instead of inventing a workaround.
- If the workflow is unsupported in the CLI, say whether the next-best path is the Sequenzy dashboard or direct API use, and report the gap with
sequenzy feedback "..." --category missing_capability(MCP:submit_feedback). - When you create, inspect, or schedule a campaign, sequence, template, or company and the user may want to review/edit it, surface the dashboard URL from
url,previewUrl, orappUrlsin the tool/CLI output. If needed, generate it withsequenzy urlsor MCPget_app_urls. - Destructive commands (
delete,delete-variant,cancel-invitation, and similar) prompt for confirmation. Pass--yes(or-y) to skip the prompt;--yesis required when stdin is not a TTY, which covers most agent and CI runs. webhooks createreturns a one-time signing secret. Surface it to the user immediately - it cannot be retrieved later.- Call out implementation caveats that matter operationally, such as
whoamiusing cached local auth state, sequence creation supporting both--goaland explicit step modes, explicit discount steps requiring Stripe before activation, generated sequences being capped at 10 emails,campaigns testbeing a stubbed success path in the current backend, and conditional email content requiring block JSON rather than raw HTML.
Dashboard URLs
Use SEQUENZY_APP_URL as the dashboard base when it is set; otherwise default to https://sequenzy.com.
Prefer actual URLs returned by the CLI/MCP result:
- sequence editor:
/dashboard/company/{companyId}/sequences/{sequenceId} - campaign editor:
/dashboard/company/{companyId}/campaign/{campaignId} - campaign preview/review:
/dashboard/company/{companyId}/campaign/{campaignId}?step=review - template/email editor:
/dashboard/company/{companyId}/emails/{emailId} - settings:
/dashboard/company/{companyId}/settings - settings tab:
/dashboard/company/{companyId}/settings?tab={tab}
Useful settings tabs include domain, tracking, localization, integrations, events, tags, goals, sync-rules, api-keys, widgets, and team.
References
- references/command-reference.md: exact command shapes, env vars, behavior, and caveats.
- references/use-cases.md: decision trees and examples for the most common agent tasks.
What ships with it: 3 files
99.8 KB alongside SKILL.md
agents/
- openai.yaml201 B
references/
- command-reference.md72.2 KB
- use-cases.md27.4 KB