{"id":"3f981c48-727e-4e32-a567-dd8041fcd775","shortId":"mBdjnW","kind":"skill","title":"corsizio","tagline":"Corsizio integration. Manage Courses, Events, Participants, Instructors, Locations, Coupons and more. Use when the user wants to interact with Corsizio data.","description":"# Corsizio\n\nCorsizio is a platform for selling and managing classes, workshops, and events online. It's used by instructors, trainers, and organizations who need an easy way to handle registration, payments, and communication with attendees.\n\nOfficial docs: https://help.corsizio.com/en/\n\n## Corsizio Overview\n\n- **Events**\n  - **Event Occurrences**\n- **People**\n- **Orders**\n- **Account**\n\nUse action names and parameters as needed.\n\n## Working with Corsizio\n\nThis skill uses the Membrane CLI to interact with Corsizio. 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 Corsizio\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://www.corsizio.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| Get Attendee Details | get-attendee-details | Retrieve full details about a single attendee, optionally including payment and transaction information. |\n| List Attendees | list-attendees | Query the list of attendees from the account with filtering, pagination, and options to include payment details. |\n| Get Event Details | get-event-details | Retrieve full details about a single event, optionally including attendees list and payment information. |\n| List Events | list-events | Query the list of events from the account with filtering, pagination, and sorting options. |\n| Get Account Details | get-account-details | Retrieve account details including configuration data, locations, categories, age groups, genders, levels, and price ... |\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 Corsizio 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":["corsizio","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-corsizio","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/corsizio","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 (6,632 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-18T18:59:47.510Z","embedding":null,"createdAt":"2026-04-18T22:32:51.917Z","updatedAt":"2026-05-18T18:59:47.510Z","lastSeenAt":"2026-05-18T18:59:47.510Z","tsv":"'/en/':62 '/path/to/endpoint':774 '10':545,839 '123':847 '1b':309 '2':308,378 '30':347 'accept':571,800 'account':70,614,657,665,669,672 'action':72,380,396,401,460,485,522,537,552,570,578,686,689,701,725,863,889,901,910 'add':192,793 'adjust':216 'age':679 'agent':203,385,474 'ai':473 'alway':549,850 'api':409,740,905,920,932 'app':239,283,286,432,857 'append':747 'application/json':801,819 'as-i':824 'ask':169,928 'attende':57,583,587,595,603,606,611,640 'auth':108,868,944 'authent':93,131,144,252,407,415,419,487,760 'author':148,167 'automat':97,297,746 'avail':159,724 'base':749 'bash':125,132,188,243,329,535,687,699,769 'best':221,848 'bodi':805,813,823 'browser':142,177,255,490 'build':322,359,886 'built':296,452,862,866,909 'built-in':865 'burn':875 'call':906,921 'case':731,917 'categori':678 'chang':351 'check':499,514 'class':32 'claud':205 'cli':86,112,116 'client':379 'clientact':391 'clientaction.agentinstructions':468 'clientaction.description':436 'clientaction.type':397 'clientaction.uiurl':445 'clientnam':136 'code':182 'codex':207 'command':163,196 'common':775 'communic':55,880 'complet':184,191,251,458,483 'configur':506,675 'connect':225,230,237,245,261,271,301,313,319,332,370,403,422,434,495,540,559,692,704,772,938 'connectionid':539,691,703 'connector':294 'consol':152 'contain':258 'content':817 'content-typ':816 'context':555 'correct':759 'corsizio':1,2,21,23,24,63,80,90,227,739 'coupon':10 'cours':5 'cover':413,728 'creat':235,291,936 'credenti':95,764,926 'custom':904 'd':802 'data':22,676,803 'default':346,788 'delet':787 'depend':153 'describ':393 'descript':528,565,581,778 'detail':519,584,588,591,623,626,630,633,666,670,673 'direct':736 'disconnect':421 'discov':883 'doc':59 'domain':242,278 'e.g':430,486,798,836,844 'easi':48 'edg':916 'either':139 'ensur':231,246 'environ':161 'error':507,516,871 'etc':210,411 'event':6,35,65,66,625,629,637,646,649,654 'exist':900 'expir':768 'explan':440 'extern':856 'fail':510 'fastest':266 'field':517,716,913 'filter':616,659 'find':233,899 'finish':186 'flag':338,777 'focus':101 'found':288 'full':590,632,943 'fulli':372 'g':128 'gender':681 'get':269,333,496,582,586,624,628,664,668,783,790 'get-account-detail':667 'get-attendee-detail':585 'get-event-detail':627 'group':680 'h':791,799 'handl':51,92,872,911,925 'har':224 'header':761,792,796 'headless':160 'help.corsizio.com':61 'help.corsizio.com/en/':60 'http':781 'human':438 'human-read':437 'id':262,541,563,693,705,773,846 'includ':562,597,621,639,674,762 'inform':427,601,644 'initi':414 'inject':757 'input':425,706 'inputschema':566 'instal':110,113,127 'instead':939 'instruct':470 'instructor':8,41 'integr':3,104 'intent':542,891,897 'interact':19,88,156 'json':193,201,248,335,497,546,694,697,709,807,812 'keep':352 'key':410,580,707,933 'kind':399 'known':282 'languag':527 'latest':130 'less':876 'let':923 'level':682 'lifecycl':945 'limit':544,838 'list':538,602,605,609,641,645,648,652,890 'list-attende':604 'list-ev':647 'local':951 'locat':9,677 'logic':105 'login':134,185,190 'long':340 'long-pol':339 'longer':358 'machin':199 'machine-read':198 'make':879 'manag':4,31,941 'map':914 'match':280 'membran':85,91,115,121,133,189,229,244,494,536,688,700,742,745,770,852,858,888,924,940 'membranehq/cli':129,331 'method':780,782 'miss':922 'mode':157 'move':503 'name':73,564,579 'natur':526 'need':46,77,386,402,405,429,444 'never':927 'new':260 'next':368 'normal':275 'npm':126 'npx':330 'oauth':408 'object':392 'occurr':67 'offici':58 'one':289 'onlin':36 'open':140,173 'openclaw':206 'option':446,469,596,619,638,663,776 'order':69 'organ':44 'output':202,257,715 'outputschema':573 'overview':64 'pagin':617,660,869,912 'paramet':75,568,698,834,842 'particip':7 'pass':696 'patch':786 'path':753,841 'pathparam':840,845 'payment':53,598,622,643 'peopl':68 'platform':27 'plumb':109 'poll':324,341,353,491 'popular':577 'post':784 'practic':849 'pre':451,861,908 'pre-built':450,860,907 'prefer':851 'present':467 'price':684 'print':146,165 'proceed':478 'process':829 'programmat':479 'provid':424,755,859 'provide-input':423 'proxi':720,744 'put':785 'queri':543,607,650,830,832,837,892,894 'query-str':831 'rather':106 'raw':919 'rawdata':820 're':418 're-authent':417 'readabl':200,439 'readi':304,316,328,369,505 'refresh':96,765 'registr':52 'repeat':797,835,843 'replac':893 'request':721,735,771,795,804 'requir':381,395 'respons':719 'result':361,561,711 'retriev':589,631,671 'return':300,576 'run':120,685,690,702,887 'search':520,523,550 'second':345 'secret':952 'secur':882 'see':180 'sell':29 'send':734,810,821 'server':947 'server-sid':946 'set':373,815 'setup':509 'shorthand':808 'show':461 'side':948 'singl':594,636 'skill':82 'skill-corsizio' 'skip':305,375 'someth':389,511 'sort':662 'source-membranedev' 'specif':558 'state':303,323,350,355,362,502 'step':307,377 'string':806,833 'talk':854 'tell':363 'tenant':135 'termin':124 'timeout':344 'token':877,935 'tool':217 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'trainer':42 'transact':600 'transpar':763 'type':204,818 'ui':453 'url':149,168,240,273,447,750 'use':13,39,71,83,214,220,228,524,730 'user':16,171,250,383,404,456,465,482,930 'valu':708 'wait':310,334,337 'want':17,532 'warp':208 'way':49,267 'went':512 'whether':155 'windsurf':209 'without':827 'work':78 'workshop':33 'write':903 'wrong':513 'www.corsizio.com':247 'x':779","prices":[{"id":"9260b49a-c4f6-4120-85fa-17deb0a707db","listingId":"3f981c48-727e-4e32-a567-dd8041fcd775","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:32:51.917Z"}],"sources":[{"listingId":"3f981c48-727e-4e32-a567-dd8041fcd775","source":"github","sourceId":"membranedev/application-skills/corsizio","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/corsizio","isPrimary":false,"firstSeenAt":"2026-04-18T22:32:51.917Z","lastSeenAt":"2026-05-18T18:59:47.510Z"}],"details":{"listingId":"3f981c48-727e-4e32-a567-dd8041fcd775","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"corsizio","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":"ad9d2b82f729898fda97a905b3724d8af5eaf31e","skill_md_path":"skills/corsizio/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/corsizio"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"corsizio","license":"MIT","description":"Corsizio integration. Manage Courses, Events, Participants, Instructors, Locations, Coupons and more. Use when the user wants to interact with Corsizio data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/corsizio"},"updatedAt":"2026-05-18T18:59:47.510Z"}}