{"id":"721643eb-c145-42df-abe2-81dffe3193a6","shortId":"esyTQz","kind":"skill","title":"elopage","tagline":"Elopage integration. Manage Deals, Persons, Organizations, Leads, Projects, Activities and more. Use when the user wants to interact with Elopage data.","description":"# Elopage\n\nElopage is an e-commerce platform designed for creators and entrepreneurs to sell digital products, online courses, and memberships. It provides tools for payment processing, automated invoicing, and marketing. Elopage is used by coaches, consultants, and online educators to monetize their expertise.\n\nOfficial docs: https://developers.elopage.com/\n\n## Elopage Overview\n\n- **Product**\n  - **Price Plan**\n- **Offer**\n- **Order**\n- **Customer**\n- **Affiliate**\n- **Voucher**\n- **Page**\n- **Email**\n- **Webhook**\n- **File**\n- **Event**\n- **Membership**\n- **Bundle**\n- **License**\n- **Payout**\n- **Invoice**\n- **Contract**\n\nUse action names and parameters as needed.\n\n## Working with Elopage\n\nThis skill uses the Membrane CLI to interact with Elopage. 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 Elopage\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://elopage.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 Products | list-products | Fetch a list of all products in your Elopage account |\n| List Invoices | list-invoices | Get a list of invoices with optional filters by date, status, and product |\n| List Publishers | list-publishers | Fetch a list of all publishers (affiliates) |\n| List Pricing Plans | list-pricing-plans | Fetch a list of all pricing plans |\n| List Webhook Endpoints | list-webhook-endpoints | Retrieve all webhook endpoints configured in your account |\n| List Affiliate Redirections | list-affiliate-redirections | Get affiliate redirection information |\n| Get Product | get-product | Fetch a product by ID including pricing plans, authors, and other details |\n| Get Pricing Plan | get-pricing-plan | Fetch pricing plan information by ID including prices, intervals, and splitting type |\n| Get Payment | get-payment | Get payment information by ID. |\n| Get Order | get-order | Fetch order information by ID |\n| Get Webhook Endpoint | get-webhook-endpoint | Retrieve a single webhook endpoint by ID |\n| Get Transfer | get-transfer | Get basic transfer information by ID |\n| Get Current Account | get-current-account | Get information about the current authenticated account. |\n| Create Product | create-product | Create a new product in Elopage. |\n| Create Order | create-order | Create a free order to give access to a product |\n| Create Webhook Endpoint | create-webhook-endpoint | Create a new webhook endpoint to receive event notifications |\n| Update Product | update-product | Update an existing product in Elopage |\n| Update Webhook Endpoint | update-webhook-endpoint | Update an existing webhook endpoint |\n| Delete Product | delete-pricing-plan | Delete a pricing plan by ID |\n| Refund Payment | refund-payment | Refund a payment. |\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 Elopage 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":["elopage","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-elopage","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/elopage","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.467","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 35 github stars · SKILL.md body (7,875 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-05-18T19:00:09.974Z","embedding":null,"createdAt":"2026-04-18T22:35:46.570Z","updatedAt":"2026-05-18T19:00:09.974Z","lastSeenAt":"2026-05-18T19:00:09.974Z","tsv":"'/path/to/endpoint':956 '10':565,1021 '123':1029 '1b':329 '2':328,398 '30':367 'accept':591,982 'access':804 'account':616,675,770,774,781 'action':92,400,416,421,480,505,542,557,572,590,598,868,871,883,907,1045,1071,1083,1092 'activ':10 'add':212,975 'adjust':236 'affili':78,646,677,681,684 'agent':223,405,494 'ai':493 'alway':569,1032 'api':429,922,1087,1102,1114 'app':259,303,306,452,1039 'append':929 'application/json':983,1001 'as-i':1006 'ask':189,1110 'auth':128,1050,1126 'authent':113,151,164,272,427,435,439,507,780,942 'author':168,187,700 'autom':50 'automat':117,317,928 'avail':179,906 'base':931 'bash':145,152,208,263,349,555,869,881,951 'basic':763 'best':241,1030 'bodi':987,995,1005 'browser':162,197,275,510 'build':342,379,1068 'built':316,472,1044,1048,1091 'built-in':1047 'bundl':86 'burn':1057 'call':1088,1103 'case':913,1099 'chang':371 'check':519,534 'claud':225 'cli':106,132,136 'client':399 'clientact':411 'clientaction.agentinstructions':488 'clientaction.description':456 'clientaction.type':417 'clientaction.uiurl':465 'clientnam':156 'coach':58 'code':202 'codex':227 'command':183,216 'commerc':29 'common':957 'communic':1062 'complet':204,211,271,478,503 'configur':526,672 'connect':245,250,257,265,281,291,321,333,339,352,390,423,442,454,515,560,579,874,886,954,1120 'connectionid':559,873,885 'connector':314 'consol':172 'consult':59 'contain':278 'content':999 'content-typ':998 'context':575 'contract':90 'correct':941 'cours':41 'cover':433,910 'creat':255,311,782,785,787,793,796,798,808,812,815,1118 'create-ord':795 'create-product':784 'create-webhook-endpoint':811 'creator':33 'credenti':115,946,1108 'current':769,773,779 'custom':77,1086 'd':984 'data':22,985 'date':631 'deal':5 'default':366,970 'delet':847,850,853,969 'delete-pricing-plan':849 'depend':173 'describ':413 'descript':548,585,601,960 'design':31 'detail':539,703 'developers.elopage.com':69 'digit':38 'direct':918 'disconnect':441 'discov':1065 'doc':68 'domain':262,298 'e':28 'e-commerc':27 'e.g':450,506,980,1018,1026 'edg':1098 'educ':62 'either':159 'elopag':1,2,21,23,24,54,70,100,110,247,615,792,834,921 'elopage.com':267 'email':81 'endpoint':663,667,671,745,749,754,810,814,819,837,841,846 'ensur':251,266 'entrepreneur':35 'environ':181 'error':527,536,1053 'etc':230,431 'event':84,822 'exist':831,844,1082 'expertis':66 'expir':950 'explan':460 'extern':1038 'fail':530 'fastest':286 'fetch':607,640,654,692,711,738 'field':537,898,1095 'file':83 'filter':629 'find':253,1081 'finish':206 'flag':358,959 'focus':121 'found':308 'free':800 'full':1125 'fulli':392 'g':148 'get':289,353,516,622,683,687,690,704,708,723,726,728,733,736,743,747,757,760,762,768,772,775,965,972 'get-current-account':771 'get-ord':735 'get-pay':725 'get-pricing-plan':707 'get-product':689 'get-transf':759 'get-webhook-endpoint':746 'give':803 'h':973,981 'handl':112,1054,1093,1107 'har':244 'header':943,974,978 'headless':180 'http':963 'human':458 'human-read':457 'id':282,561,583,696,716,732,742,756,767,858,875,887,955,1028 'includ':582,697,717,944 'inform':447,686,714,730,740,765,776 'initi':434 'inject':939 'input':445,888 'inputschema':586 'instal':130,133,147 'instead':1121 'instruct':490 'integr':3,124 'intent':562,1073,1079 'interact':19,108,176 'interv':719 'invoic':51,89,618,621,626 'json':213,221,268,355,517,566,876,879,891,989,994 'keep':372 'key':430,600,889,1115 'kind':419 'known':302 'languag':547 'latest':150 'lead':8 'less':1058 'let':1105 'licens':87 'lifecycl':1127 'limit':564,1020 'list':558,602,605,609,617,620,624,635,638,642,647,651,656,661,665,676,680,1072 'list-affiliate-redirect':679 'list-invoic':619 'list-pricing-plan':650 'list-product':604 'list-publish':637 'list-webhook-endpoint':664 'local':1133 'logic':125 'login':154,205,210 'long':360 'long-pol':359 'longer':378 'machin':219 'machine-read':218 'make':1061 'manag':4,1123 'map':1096 'market':53 'match':300 'membership':43,85 'membran':105,111,135,141,153,209,249,264,514,556,870,882,924,927,952,1034,1040,1070,1106,1122 'membranehq/cli':149,351 'method':962,964 'miss':1104 'mode':177 'monet':64 'move':523 'name':93,584,599 'natur':546 'need':97,406,422,425,449,464 'never':1109 'new':280,789,817 'next':388 'normal':295 'notif':823 'npm':146 'npx':350 'oauth':428 'object':412 'offer':75 'offici':67 'one':309 'onlin':40,61 'open':160,193 'openclaw':226 'option':466,489,628,958 'order':76,734,737,739,794,797,801 'organ':7 'output':222,277,897 'outputschema':593 'overview':71 'page':80 'pagin':1051,1094 'paramet':95,588,880,1016,1024 'pass':878 'patch':968 'path':935,1023 'pathparam':1022,1027 'payment':48,724,727,729,860,863,866 'payout':88 'person':6 'plan':74,649,653,660,699,706,710,713,852,856 'platform':30 'plumb':129 'poll':344,361,373,511 'popular':597 'post':966 'practic':1031 'pre':471,1043,1090 'pre-built':470,1042,1089 'prefer':1033 'present':487 'price':73,648,652,659,698,705,709,712,718,851,855 'print':166,185 'proceed':498 'process':49,1011 'product':39,72,603,606,612,634,688,691,694,783,786,790,807,825,828,832,848 'programmat':499 'project':9 'provid':45,444,937,1041 'provide-input':443 'proxi':902,926 'publish':636,639,645 'put':967 'queri':563,1012,1014,1019,1074,1076 'query-str':1013 'rather':126 'raw':1101 'rawdata':1002 're':438 're-authent':437 'readabl':220,459 'readi':324,336,348,389,525 'receiv':821 'redirect':678,682,685 'refresh':116,947 'refund':859,862,864 'refund-pay':861 'repeat':979,1017,1025 'replac':1075 'request':903,917,953,977,986 'requir':401,415 'respons':901 'result':381,581,893 'retriev':668,750 'return':320,596 'run':140,867,872,884,1069 'search':540,543,570 'second':365 'secret':1134 'secur':1064 'see':200 'sell':37 'send':916,992,1003 'server':1129 'server-sid':1128 'set':393,997 'setup':529 'shorthand':990 'show':481 'side':1130 'singl':752 'skill':102 'skill-elopage' 'skip':325,395 'someth':409,531 'source-membranedev' 'specif':578 'split':721 'state':323,343,370,375,382,522 'status':632 'step':327,397 'string':988,1015 'talk':1036 'tell':383 'tenant':155 'termin':144 'timeout':364 'token':1059,1117 'tool':46,237 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transfer':758,761,764 'transpar':945 'type':224,722,1000 'ui':473 'updat':824,827,829,835,839,842 'update-product':826 'update-webhook-endpoint':838 'url':169,188,260,293,467,932 'use':13,56,91,103,234,240,248,544,912 'user':16,191,270,403,424,476,485,502,1112 'valu':890 'voucher':79 'wait':330,354,357 'want':17,552 'warp':228 'way':287 'webhook':82,662,666,670,744,748,753,809,813,818,836,840,845 'went':532 'whether':175 'windsurf':229 'without':1009 'work':98 'write':1085 'wrong':533 'x':961","prices":[{"id":"d2fccfcd-60da-42d8-ac81-182178fbbca8","listingId":"721643eb-c145-42df-abe2-81dffe3193a6","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:35:46.570Z"}],"sources":[{"listingId":"721643eb-c145-42df-abe2-81dffe3193a6","source":"github","sourceId":"membranedev/application-skills/elopage","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/elopage","isPrimary":false,"firstSeenAt":"2026-04-18T22:35:46.570Z","lastSeenAt":"2026-05-18T19:00:09.974Z"}],"details":{"listingId":"721643eb-c145-42df-abe2-81dffe3193a6","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"elopage","github":{"repo":"membranedev/application-skills","stars":35,"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":"3a450861a28be97d0cda5abffa9facce74f790cb","skill_md_path":"skills/elopage/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/elopage"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"elopage","license":"MIT","description":"Elopage integration. Manage Deals, Persons, Organizations, Leads, Projects, Activities and more. Use when the user wants to interact with Elopage data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/elopage"},"updatedAt":"2026-05-18T19:00:09.974Z"}}