{"id":"23afb53f-b543-4553-87d8-b5aaf2a7b4bd","shortId":"QyBZeH","kind":"skill","title":"acelle-mail","tagline":"Acelle Mail integration. Manage Users. Use when the user wants to interact with Acelle Mail data.","description":"# Acelle Mail\n\nAcelle Mail is a self-hosted email marketing application, similar to MailChimp, allowing users to send bulk emails. It's used by businesses and individuals who want to manage their own email marketing campaigns without relying on third-party services.\n\nOfficial docs: https://acellemail.com/docs/\n\n## Acelle Mail Overview\n\n- **Email Marketing Server**\n  - **Customer**\n    - **Subscription**\n  - **Sending Server**\n  - **Email Verification Server**\n  - **Blacklist**\n  - **Campaign**\n  - **Template**\n  - **Mail List**\n      - **Subscriber**\n  - **Automation**\n  - **Segment**\n\nUse action names and parameters as needed.\n\n## Working with Acelle Mail\n\nThis skill uses the Membrane CLI to interact with Acelle Mail. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.\n\n### Install the CLI\n\nInstall the Membrane CLI so you can run `membrane` from the terminal:\n\n```bash\nnpm install -g @membranehq/cli@latest\n```\n\n### Authentication\n\n```bash\nmembrane login --tenant --clientName=<agentType>\n```\n\nThis will either open a browser for authentication or print an authorization URL to the console, depending on whether interactive mode is available.\n\n**Headless environments:** The command will print an authorization URL. Ask the user to open it in a browser. When they see a code after completing login, finish with:\n\n```bash\nmembrane login complete <code>\n```\n\nAdd `--json` to any command for machine-readable JSON output.\n\n**Agent Types** : claude, openclaw, codex, warp, windsurf, etc. Those will be used to adjust tooling to be used best with your harness\n\n### Connecting to Acelle Mail\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://acellemail.com/\" --json\n```\nThe user completes authentication in the browser. The output contains the new connection id.\n\nThis is the fastest way to get a connection. The URL is normalized to a domain and matched against known apps. If no app is found, one is created and a connector is built automatically.\n\nIf the returned connection has `state: \"READY\"`, skip to **Step 2**.\n\n#### 1b. Wait for the connection to be ready\n\nIf the connection is in `BUILDING` state, poll until it's ready:\n\n```bash\nnpx @membranehq/cli connection get <id> --wait --json\n```\n\nThe `--wait` flag long-polls (up to `--timeout` seconds, default 30) until the state changes. Keep polling until `state` is no longer `BUILDING`.\n\nThe resulting state tells you what to do next:\n\n- **`READY`** — connection is fully set up. Skip to **Step 2**.\n- **`CLIENT_ACTION_REQUIRED`** — the user or agent needs to do something. The `clientAction` object describes the required action:\n  - `clientAction.type` — the kind of action needed:\n    - `\"connect\"` — user needs to authenticate (OAuth, API key, etc.). This covers initial authentication and re-authentication for disconnected connections.\n    - `\"provide-input\"` — more information is needed (e.g. which app to connect to).\n  - `clientAction.description` — human-readable explanation of what's needed.\n  - `clientAction.uiUrl` (optional) — URL to a pre-built UI where the user can complete the action. Show this to the user when present.\n  - `clientAction.agentInstructions` (optional) — instructions for the AI agent on how to proceed programmatically.\n\n  After the user completes the action (e.g. authenticates in the browser), poll again with `membrane connection get <id> --json` to check if the state moved to `READY`.\n\n- **`CONFIGURATION_ERROR`** or **`SETUP_FAILED`** — something went wrong. Check the `error` field for details.\n\n### Searching for actions\n\nSearch using a natural language description of what you want to do:\n\n```bash\nmembrane action list --connectionId=CONNECTION_ID --intent \"QUERY\" --limit 10 --json\n```\n\nYou should always search for actions in the context of a specific connection.\n\nEach result includes `id`, `name`, `description`, `inputSchema` (what parameters the action accepts), and `outputSchema` (what it returns).\n\n## Popular actions\n\n| Name | Key | Description |\n| --- | --- | --- |\n| List Campaigns | list-campaigns | Retrieve all campaigns with their details |\n| List Subscribers | list-subscribers | Retrieve subscribers from a mail list with pagination |\n| List Lists | list-lists | Retrieve all mail lists with their details including name, description, and unique UID |\n| Get Campaign | get-campaign | Get detailed information about a specific campaign including statistics |\n| Get Subscriber | get-subscriber | Get detailed information about a specific subscriber by UID |\n| Get List | get-list | Get detailed information about a specific mail list by its UID |\n| Create Campaign | create-campaign | Create a new email campaign |\n| Create List | create-list | Create a new mail list for organizing contacts |\n| Add Subscriber | add-subscriber | Add a new subscriber to a mail list |\n| Update Campaign | update-campaign | Update an existing campaign |\n| Update Subscriber | update-subscriber | Update subscriber information |\n| Delete Subscriber | delete-subscriber | Permanently delete a subscriber from the system |\n| Delete List | delete-list | Delete a mail list by its UID |\n| Run Campaign | run-campaign | Launch a campaign to start sending emails |\n| Pause Campaign | pause-campaign | Pause a running campaign |\n| Resume Campaign | resume-campaign | Resume a paused campaign |\n| Subscribe | subscribe | Subscribe or reactivate a subscriber in a mail list |\n| Unsubscribe | unsubscribe | Unsubscribe a subscriber from a mail list by UID |\n| Find Subscriber by Email | find-subscriber-by-email | Find subscribers by their email address |\n| Unsubscribe by Email | unsubscribe-by-email | Unsubscribe a subscriber from a mail list by email address |\n\n### Running actions\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --json\n```\n\nTo pass JSON parameters:\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --input '{\"key\": \"value\"}' --json\n```\n\nThe result is in the `output` field of the response.\n\n\n### Proxy requests\n\nWhen the available actions don't cover your use case, you can send requests directly to the Acelle Mail API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.\n\n```bash\nmembrane request CONNECTION_ID /path/to/endpoint\n```\n\nCommon options:\n\n| Flag | Description |\n|------|-------------|\n| `-X, --method` | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |\n| `-H, --header` | Add a request header (repeatable), e.g. `-H \"Accept: application/json\"` |\n| `-d, --data` | Request body (string) |\n| `--json` | Shorthand to send a JSON body and set `Content-Type: application/json` |\n| `--rawData` | Send the body as-is without any processing |\n| `--query` | Query-string parameter (repeatable), e.g. `--query \"limit=10\"` |\n| `--pathParam` | Path parameter (repeatable), e.g. `--pathParam \"id=123\"` |\n\n\n## Best practices\n\n- **Always prefer Membrane to talk with external apps** — Membrane provides pre-built actions with built-in auth, pagination, and error handling. This will burn less tokens and make communication more secure\n- **Discover before you build** — run `membrane action list --intent=QUERY` (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.\n- **Let Membrane handle credentials** — never ask the user for API keys or tokens. Create a connection instead; Membrane manages the full Auth lifecycle server-side with no local secrets.","tags":["acelle","mail","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-acelle-mail","topic-agent-skills","topic-claude-code-skill","topic-claude-skills","topic-membrane","topic-skills"],"categories":["application-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/membranedev/application-skills/acelle-mail","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add membranedev/application-skills","source_repo":"https://github.com/membranedev/application-skills","install_from":"skills.sh"}},"qualityScore":"0.465","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 30 github stars · SKILL.md body (7,773 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-29T00:57:02.048Z","embedding":null,"createdAt":"2026-04-18T22:25:17.650Z","updatedAt":"2026-04-29T00:57:02.048Z","lastSeenAt":"2026-04-29T00:57:02.048Z","tsv":"'/docs/':68 '/path/to/endpoint':941 '10':567,1006 '123':1014 '1b':331 '2':330,400 '30':369 'accept':593,967 'acell':2,4,17,20,22,69,99,110,248,905 'acelle-mail':1 'acellemail.com':67,269 'acellemail.com/docs/':66 'action':91,402,418,423,482,507,544,559,574,592,600,852,855,867,891,1030,1056,1068,1077 'add':213,713,716,718,960 'add-subscrib':715 'address':833,850 'adjust':237 'agent':224,407,496 'ai':495 'allow':35 'alway':571,1017 'api':431,907,1072,1087,1099 'app':261,305,308,454,1024 'append':914 'applic':31 'application/json':968,986 'as-i':991 'ask':190,1095 'auth':129,1035,1111 'authent':114,152,165,274,429,437,441,509,927 'author':169,188 'autom':88 'automat':118,319,913 'avail':180,890 'base':916 'bash':146,153,209,265,351,557,853,865,936 'best':242,1015 'blacklist':82 'bodi':972,980,990 'browser':163,198,277,512 'build':344,381,1053 'built':318,474,1029,1033,1076 'built-in':1032 'bulk':39 'burn':1042 'busi':45 'call':1073,1088 'campaign':56,83,605,608,611,647,650,657,691,694,699,727,730,734,768,771,774,780,783,787,789,792,796 'case':897,1084 'chang':373 'check':521,536 'claud':226 'cli':106,133,137 'client':401 'clientact':413 'clientaction.agentinstructions':490 'clientaction.description':458 'clientaction.type':419 'clientaction.uiurl':467 'clientnam':157 'code':203 'codex':228 'command':184,217 'common':942 'communic':1047 'complet':205,212,273,480,505 'configur':528 'connect':246,252,259,267,283,293,323,335,341,354,392,425,444,456,517,562,581,858,870,939,1105 'connectionid':561,857,869 'connector':316 'consol':173 'contact':712 'contain':280 'content':984 'content-typ':983 'context':577 'correct':926 'cover':435,894 'creat':257,313,690,693,695,700,703,705,1103 'create-campaign':692 'create-list':702 'credenti':116,931,1093 'custom':75,1071 'd':969 'data':19,970 'default':368,955 'delet':743,746,749,755,758,760,954 'delete-list':757 'delete-subscrib':745 'depend':174 'describ':415 'descript':550,587,603,642,945 'detail':541,614,639,652,666,680 'direct':902 'disconnect':443 'discov':1050 'doc':65 'domain':264,300 'e.g':452,508,965,1003,1011 'edg':1083 'either':160 'email':29,40,54,72,79,698,778,822,827,832,836,840,849 'ensur':253,268 'environ':182 'error':529,538,1038 'etc':231,433 'exist':733,1067 'expir':935 'explan':462 'extern':1023 'fail':532 'fastest':288 'field':539,882,1080 'find':255,819,824,828,1066 'find-subscriber-by-email':823 'finish':207 'flag':360,944 'focus':122 'found':310 'full':1110 'fulli':394 'g':149 'get':291,355,518,646,649,651,660,663,665,674,677,679,950,957 'get-campaign':648 'get-list':676 'get-subscrib':662 'h':958,966 'handl':113,1039,1078,1092 'har':245 'header':928,959,963 'headless':181 'host':28 'http':948 'human':460 'human-read':459 'id':284,563,585,859,871,940,1013 'includ':584,640,658,929 'individu':47 'inform':449,653,667,681,742 'initi':436 'inject':924 'input':447,872 'inputschema':588 'instal':131,134,148 'instead':1106 'instruct':492 'integr':6,125 'intent':564,1058,1064 'interact':15,108,177 'json':214,222,270,357,519,568,860,863,875,974,979 'keep':374 'key':432,602,873,1100 'kind':421 'known':304 'languag':549 'latest':151 'launch':772 'less':1043 'let':1090 'lifecycl':1112 'limit':566,1005 'list':86,560,604,607,615,618,625,628,629,631,632,636,675,678,686,701,704,709,725,756,759,763,807,816,847,1057 'list-campaign':606 'list-list':630 'list-subscrib':617 'local':1118 'logic':126 'login':155,206,211 'long':362 'long-pol':361 'longer':380 'machin':220 'machine-read':219 'mail':3,5,18,21,23,70,85,100,111,249,624,635,685,708,724,762,806,815,846,906 'mailchimp':34 'make':1046 'manag':7,51,1108 'map':1081 'market':30,55,73 'match':302 'membran':105,112,136,142,154,210,251,266,516,558,854,866,909,912,937,1019,1025,1055,1091,1107 'membranehq/cli':150,353 'method':947,949 'miss':1089 'mode':178 'move':525 'name':92,586,601,641 'natur':548 'need':96,408,424,427,451,466 'never':1094 'new':282,697,707,720 'next':390 'normal':297 'npm':147 'npx':352 'oauth':430 'object':414 'offici':64 'one':311 'open':161,194 'openclaw':227 'option':468,491,943 'organ':711 'output':223,279,881 'outputschema':595 'overview':71 'pagin':627,1036,1079 'paramet':94,590,864,1001,1009 'parti':62 'pass':862 'patch':953 'path':920,1008 'pathparam':1007,1012 'paus':779,782,784,795 'pause-campaign':781 'perman':748 'plumb':130 'poll':346,363,375,513 'popular':599 'post':951 'practic':1016 'pre':473,1028,1075 'pre-built':472,1027,1074 'prefer':1018 'present':489 'print':167,186 'proceed':500 'process':996 'programmat':501 'provid':446,922,1026 'provide-input':445 'proxi':886,911 'put':952 'queri':565,997,999,1004,1059,1061 'query-str':998 'rather':127 'raw':1086 'rawdata':987 're':440 're-authent':439 'reactiv':801 'readabl':221,461 'readi':326,338,350,391,527 'refresh':117,932 'reli':58 'repeat':964,1002,1010 'replac':1060 'request':887,901,938,962,971 'requir':403,417 'respons':885 'result':383,583,877 'resum':788,791,793 'resume-campaign':790 'retriev':609,620,633 'return':322,598 'run':141,767,770,786,851,856,868,1054 'run-campaign':769 'search':542,545,572 'second':367 'secret':1119 'secur':1049 'see':201 'segment':89 'self':27 'self-host':26 'send':38,77,777,900,977,988 'server':74,78,81,1114 'server-sid':1113 'servic':63 'set':395,982 'setup':531 'shorthand':975 'show':483 'side':1115 'similar':32 'skill':102 'skill-acelle-mail' 'skip':327,397 'someth':411,533 'source-membranedev' 'specif':580,656,670,684 'start':776 'state':325,345,372,377,384,524 'statist':659 'step':329,399 'string':973,1000 'subscrib':87,616,619,621,661,664,671,714,717,721,736,739,741,744,747,751,797,798,799,803,812,820,825,829,843 'subscript':76 'system':754 'talk':1021 'tell':385 'templat':84 'tenant':156 'termin':145 'third':61 'third-parti':60 'timeout':366 'token':1044,1102 'tool':238 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':930 'type':225,985 'ui':475 'uid':645,673,689,766,818 'uniqu':644 'unsubscrib':808,809,810,834,838,841 'unsubscribe-by-email':837 'updat':726,729,731,735,738,740 'update-campaign':728 'update-subscrib':737 'url':170,189,262,295,469,917 'use':9,43,90,103,235,241,250,546,896 'user':8,12,36,192,272,405,426,478,487,504,1097 'valu':874 'verif':80 'wait':332,356,359 'want':13,49,554 'warp':229 'way':289 'went':534 'whether':176 'windsurf':230 'without':57,994 'work':97 'write':1070 'wrong':535 'x':946","prices":[{"id":"3155df7c-f6b5-4669-94b2-30452a63c496","listingId":"23afb53f-b543-4553-87d8-b5aaf2a7b4bd","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"membranedev","category":"application-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T22:25:17.650Z"}],"sources":[{"listingId":"23afb53f-b543-4553-87d8-b5aaf2a7b4bd","source":"github","sourceId":"membranedev/application-skills/acelle-mail","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/acelle-mail","isPrimary":false,"firstSeenAt":"2026-04-18T22:25:17.650Z","lastSeenAt":"2026-04-29T00:57:02.048Z"}],"details":{"listingId":"23afb53f-b543-4553-87d8-b5aaf2a7b4bd","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"acelle-mail","github":{"repo":"membranedev/application-skills","stars":30,"topics":["agent-skills","claude-code-skill","claude-skills","membrane","skills"],"license":null,"html_url":"https://github.com/membranedev/application-skills","pushed_at":"2026-04-28T08:45:44Z","description":null,"skill_md_sha":"606960942eaa71e397129a1eeb37db627de5e6ad","skill_md_path":"skills/acelle-mail/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/acelle-mail"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"acelle-mail","license":"MIT","description":"Acelle Mail integration. Manage Users. Use when the user wants to interact with Acelle Mail data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/acelle-mail"},"updatedAt":"2026-04-29T00:57:02.048Z"}}