{"id":"0573a6d2-b051-4440-9494-a0a8b316c18f","shortId":"KrGwW4","kind":"skill","title":"assembla","tagline":"Assembla integration. Manage Organizations, Leads, Deals, Pipelines, Users, Goals and more. Use when the user wants to interact with Assembla data.","description":"# Assembla\n\nAssembla is a project management and collaboration tool with a focus on software development teams. It provides features like task management, version control hosting, and team communication. Software developers and project managers use it to organize their work and track progress.\n\nOfficial docs: https://api-docs.assembla.com/\n\n## Assembla Overview\n\n- **Space**\n  - **User**\n  - **Tool**\n    - **Ticket**\n    - **Task**\n    - **Source Code**\n    - **Milestone**\n    - **File**\n    - **Message**\n    - **Time Entry**\n    - **Risk**\n    - **Wiki Page**\n    - **Team Permissions**\n    - **Impediment**\n  - **Space Permissions**\n- **Organization**\n  - **User**\n  - **Role**\n- **User**\n- **Notification**\n- **Billing Plan**\n- **Addon**\n- **API Call**\n- **SAML Configuration**\n- **SSH Key**\n- **Support Request**\n\nUse action names and parameters as needed.\n\n## Working with Assembla\n\nThis skill uses the Membrane CLI to interact with Assembla. 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 Assembla\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://assembla.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 Spaces | list-spaces | List all spaces accessible to the authenticated user |\n| List Space Users | list-space-users | List all users in a space |\n| List Space Tools | list-space-tools | List all tools (repos, wikis, etc.) in a space |\n| List Tickets | list-tickets | List tickets in a space with optional filtering |\n| List Milestones | list-milestones | List all milestones in a space |\n| List Ticket Comments | list-ticket-comments | List all comments on a ticket |\n| List Merge Requests | list-merge-requests | List merge requests for a repository tool |\n| Get Space | get-space | Get details of a specific space by ID or wiki name |\n| Get Ticket | get-ticket | Get details of a specific ticket by number |\n| Get Milestone | get-milestone | Get details of a specific milestone |\n| Get Merge Request | get-merge-request | Get details of a specific merge request |\n| Get Current User | get-current-user | Get the currently authenticated user's profile |\n| Get User | get-user | Get a user's profile by ID |\n| Create Space | create-space | Create a new space |\n| Create Ticket | create-ticket | Create a new ticket in a space |\n| Create Milestone | create-milestone | Create a new milestone in a space |\n| Create Ticket Comment | create-ticket-comment | Add a comment to a ticket |\n| Update Space | update-space | Update an existing space |\n| Update Ticket | update-ticket | Update an existing ticket |\n| Update Milestone | update-milestone | Update an existing milestone |\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 Assembla 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":["assembla","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-assembla","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/assembla","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,794 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-28T18:57:38.098Z","embedding":null,"createdAt":"2026-04-18T22:27:37.690Z","updatedAt":"2026-04-28T18:57:38.098Z","lastSeenAt":"2026-04-28T18:57:38.098Z","tsv":"'/path/to/endpoint':952 '10':580,1017 '123':1025 '1b':344 '2':343,413 '30':382 'accept':606,978 'access':625 'action':107,415,431,436,495,520,557,572,587,605,613,864,867,879,903,1041,1067,1079,1088 'add':227,830,971 'addon':97 'adjust':251 'agent':238,420,509 'ai':508 'alway':584,1028 'api':98,444,918,1083,1098,1110 'api-docs.assembla.com':67 'app':274,318,321,467,1035 'append':925 'application/json':979,997 'as-i':1002 'ask':204,1106 'assembla':1,2,21,23,24,68,115,125,262,917 'assembla.com':282 'auth':143,1046,1122 'authent':128,166,179,287,442,450,454,522,628,774,938 'author':183,202 'automat':132,332,924 'avail':194,902 'base':927 'bash':160,167,223,278,364,570,865,877,947 'best':256,1026 'bill':95 'bodi':983,991,1001 'browser':177,212,290,525 'build':357,394,1064 'built':331,487,1040,1044,1087 'built-in':1043 'burn':1053 'call':99,1084,1099 'case':909,1095 'chang':386 'check':534,549 'claud':240 'cli':121,147,151 'client':414 'clientact':426 'clientaction.agentinstructions':503 'clientaction.description':471 'clientaction.type':432 'clientaction.uiurl':480 'clientnam':171 'code':76,217 'codex':242 'collabor':30 'command':198,231 'comment':685,689,692,825,829,832 'common':953 'communic':50,1058 'complet':219,226,286,493,518 'configur':101,541 'connect':260,265,272,280,296,306,336,348,354,367,405,438,457,469,530,575,594,870,882,950,1116 'connectionid':574,869,881 'connector':329 'consol':187 'contain':293 'content':995 'content-typ':994 'context':590 'control':46 'correct':937 'cover':448,906 'creat':270,326,790,793,795,799,802,804,811,814,816,823,827,1114 'create-mileston':813 'create-spac':792 'create-ticket':801 'create-ticket-com':826 'credenti':130,942,1104 'current':765,769,773 'custom':1082 'd':980 'data':22,981 'deal':7 'default':381,966 'delet':965 'depend':188 'describ':428 'descript':563,600,616,956 'detail':554,716,732,745,758 'develop':37,52 'direct':914 'disconnect':456 'discov':1061 'doc':66 'domain':277,313 'e.g':465,521,976,1014,1022 'edg':1094 'either':174 'ensur':266,281 'entri':81 'environ':196 'error':542,551,1049 'etc':245,446,655 'exist':843,852,861,1078 'expir':946 'explan':475 'extern':1034 'fail':545 'fastest':301 'featur':41 'field':552,894,1091 'file':78 'filter':671 'find':268,1077 'finish':221 'flag':373,955 'focus':34,136 'found':323 'full':1121 'fulli':407 'g':163 'get':304,368,531,710,713,715,726,729,731,739,742,744,750,754,757,764,768,771,778,781,783,961,968 'get-current-us':767 'get-merge-request':753 'get-mileston':741 'get-spac':712 'get-ticket':728 'get-us':780 'goal':10 'h':969,977 'handl':127,1050,1089,1103 'har':259 'header':939,970,974 'headless':195 'host':47 'http':959 'human':473 'human-read':472 'id':297,576,598,722,789,871,883,951,1024 'impedi':87 'includ':597,940 'inform':462 'initi':449 'inject':935 'input':460,884 'inputschema':601 'instal':145,148,162 'instead':1117 'instruct':505 'integr':3,139 'intent':577,1069,1075 'interact':19,123,191 'json':228,236,283,370,532,581,872,875,887,985,990 'keep':387 'key':103,445,615,885,1111 'kind':434 'known':317 'languag':562 'latest':165 'lead':6 'less':1054 'let':1101 'lifecycl':1123 'like':42 'limit':579,1016 'list':573,617,620,622,630,634,637,643,647,650,659,662,664,672,675,677,683,687,690,696,700,703,1068 'list-merge-request':699 'list-mileston':674 'list-spac':619 'list-space-tool':646 'list-space-us':633 'list-ticket':661 'list-ticket-com':686 'local':1129 'logic':140 'login':169,220,225 'long':375 'long-pol':374 'longer':393 'machin':234 'machine-read':233 'make':1057 'manag':4,28,44,55,1119 'map':1092 'match':315 'membran':120,126,150,156,168,224,264,279,529,571,866,878,920,923,948,1030,1036,1066,1102,1118 'membranehq/cli':164,366 'merg':697,701,704,751,755,762 'messag':79 'method':958,960 'mileston':77,673,676,679,740,743,749,812,815,819,855,858,862 'miss':1100 'mode':192 'move':538 'name':108,599,614,725 'natur':561 'need':112,421,437,440,464,479 'never':1105 'new':295,797,806,818 'next':403 'normal':310 'notif':94 'npm':161 'npx':365 'number':738 'oauth':443 'object':427 'offici':65 'one':324 'open':175,208 'openclaw':241 'option':481,504,670,954 'organ':5,59,90 'output':237,292,893 'outputschema':608 'overview':69 'page':84 'pagin':1047,1090 'paramet':110,603,876,1012,1020 'pass':874 'patch':964 'path':931,1019 'pathparam':1018,1023 'permiss':86,89 'pipelin':8 'plan':96 'plumb':144 'poll':359,376,388,526 'popular':612 'post':962 'practic':1027 'pre':486,1039,1086 'pre-built':485,1038,1085 'prefer':1029 'present':502 'print':181,200 'proceed':513 'process':1007 'profil':777,787 'programmat':514 'progress':64 'project':27,54 'provid':40,459,933,1037 'provide-input':458 'proxi':898,922 'put':963 'queri':578,1008,1010,1015,1070,1072 'query-str':1009 'rather':141 'raw':1097 'rawdata':998 're':453 're-authent':452 'readabl':235,474 'readi':339,351,363,404,540 'refresh':131,943 'repeat':975,1013,1021 'replac':1071 'repo':653 'repositori':708 'request':105,698,702,705,752,756,763,899,913,949,973,982 'requir':416,430 'respons':897 'result':396,596,889 'return':335,611 'risk':82 'role':92 'run':155,863,868,880,1065 'saml':100 'search':555,558,585 'second':380 'secret':1130 'secur':1060 'see':215 'send':912,988,999 'server':1125 'server-sid':1124 'set':408,993 'setup':544 'shorthand':986 'show':496 'side':1126 'skill':117 'skill-assembla' 'skip':340,410 'softwar':36,51 'someth':424,546 'sourc':75 'source-membranedev' 'space':70,88,618,621,624,631,635,642,644,648,658,668,682,711,714,720,791,794,798,810,822,837,840,844 'specif':593,719,735,748,761 'ssh':102 'state':338,358,385,390,397,537 'step':342,412 'string':984,1011 'support':104 'talk':1032 'task':43,74 'team':38,49,85 'tell':398 'tenant':170 'termin':159 'ticket':73,660,663,665,684,688,695,727,730,736,800,803,807,824,828,835,846,849,853 'time':80 'timeout':379 'token':1055,1113 'tool':31,72,252,645,649,652,709 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'track':63 'transpar':941 'type':239,996 'ui':488 'updat':836,839,841,845,848,850,854,857,859 'update-mileston':856 'update-spac':838 'update-ticket':847 'url':184,203,275,308,482,928 'use':13,56,106,118,249,255,263,559,908 'user':9,16,71,91,93,206,285,418,439,491,500,517,629,632,636,639,766,770,775,779,782,785,1108 'valu':886 'version':45 'wait':345,369,372 'want':17,567 'warp':243 'way':302 'went':547 'whether':190 'wiki':83,654,724 'windsurf':244 'without':1005 'work':61,113 'write':1081 'wrong':548 'x':957","prices":[{"id":"db3c304d-c731-4024-98f5-97642b02493c","listingId":"0573a6d2-b051-4440-9494-a0a8b316c18f","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:27:37.690Z"}],"sources":[{"listingId":"0573a6d2-b051-4440-9494-a0a8b316c18f","source":"github","sourceId":"membranedev/application-skills/assembla","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/assembla","isPrimary":false,"firstSeenAt":"2026-04-18T22:27:37.690Z","lastSeenAt":"2026-04-28T18:57:38.098Z"}],"details":{"listingId":"0573a6d2-b051-4440-9494-a0a8b316c18f","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"assembla","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":"4d8b0899d08a63b56e93d2a489a6ef67884b8dad","skill_md_path":"skills/assembla/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/assembla"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"assembla","license":"MIT","description":"Assembla integration. Manage Organizations, Leads, Deals, Pipelines, Users, Goals and more. Use when the user wants to interact with Assembla data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/assembla"},"updatedAt":"2026-04-28T18:57:38.098Z"}}