{"id":"7d1bc765-4093-4885-afc0-77bc03122ce5","shortId":"z3J5sm","kind":"skill","title":"arcgis-online","tagline":"ArcGIS Online integration. Manage data, records, and automate workflows. Use when the user wants to interact with ArcGIS Online data.","description":"# ArcGIS Online\n\nArcGIS Online is a cloud-based mapping and analysis platform. It's used by GIS professionals, urban planners, and other organizations to create and share maps, analyze data, and collaborate on geospatial projects. Think of it as Google Maps but for professional use with advanced analytical capabilities.\n\nOfficial docs: https://developers.arcgis.com/arcgis-online/\n\n## ArcGIS Online Overview\n\n- **Content**\n  - **Item**\n    - **Data**\n  - **Folder**\n- **Group**\n  - **User**\n- **User**\n\nUse action names and parameters as needed.\n\n## Working with ArcGIS Online\n\nThis skill uses the Membrane CLI to interact with ArcGIS Online. 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 ArcGIS Online\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://www.esri.com/en-us/arcgis/products/arcgis-online/overview\" --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| Unshare Item | unshare-item | Remove sharing of an item from groups or revoke public/organization access. |\n| Share Item | share-item | Share an item with groups or make it public/organization-wide. |\n| Delete Group | delete-group | Delete a group from the portal. |\n| Update Group | update-group | Update the properties of an existing group. |\n| Get Group Content | get-group-content | Get the content items shared with a specific group. |\n| Search Users | search-users | Search for users in the portal using a query string. |\n| Search Groups | search-groups | Search for groups in the portal using a query string. |\n| Get User Content | get-user-content | Get the content items owned by a specific user, organized in folders. |\n| Delete Item | delete-item | Delete a content item. |\n| Create Group | create-group | Create a new group in the portal. |\n| Get Group | get-group | Get information about a specific group by its ID. |\n| Get User | get-user | Get information about a specific user by their username. |\n| Get Item | get-item | Get detailed information about a specific content item by its ID. |\n| Search Items | search-items | Search for content items in the portal using a query string. |\n| Get Portal Self | get-portal-self | Returns the current portal and organization information for the authenticated user. |\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 ArcGIS Online 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":["arcgis","online","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-arcgis-online","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/arcgis-online","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,387 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:37.088Z","embedding":null,"createdAt":"2026-04-18T22:27:26.275Z","updatedAt":"2026-04-28T18:57:37.088Z","lastSeenAt":"2026-04-28T18:57:37.088Z","tsv":"'/arcgis-online/':78 '/en-us/arcgis/products/arcgis-online/overview':270 '/path/to/endpoint':912 '10':568,977 '123':985 '1b':332 '2':331,401 '30':370 'accept':594,938 'access':620 'action':90,403,419,424,483,508,545,560,575,593,601,823,826,838,862,1001,1027,1039,1048 'add':212,931 'adjust':236 'advanc':71 'agent':223,408,497 'ai':496 'alway':572,988 'analysi':35 'analyt':72 'analyz':53 'api':432,878,1043,1058,1070 'app':260,306,309,455,995 'append':885 'application/json':939,957 'arcgi':2,4,21,24,26,79,98,109,247,876 'arcgis-onlin':1 'as-i':962 'ask':189,1066 'auth':128,1006,1082 'authent':113,151,164,275,430,438,442,510,820,898 'author':168,187 'autom':11 'automat':117,320,884 'avail':179,861 'base':32,887 'bash':145,152,208,264,352,558,824,836,907 'best':241,986 'bodi':943,951,961 'browser':162,197,278,513 'build':345,382,1024 'built':319,475,1000,1004,1047 'built-in':1003 'burn':1013 'call':1044,1059 'capabl':73 'case':868,1055 'chang':374 'check':522,537 'claud':225 'cli':105,132,136 'client':402 'clientact':414 'clientaction.agentinstructions':491 'clientaction.description':459 'clientaction.type':420 'clientaction.uiurl':468 'clientnam':156 'cloud':31 'cloud-bas':30 'code':202 'codex':227 'collabor':56 'command':183,216 'common':913 'communic':1018 'complet':204,211,274,481,506 'configur':529 'connect':245,251,258,266,284,294,324,336,342,355,393,426,445,457,518,563,582,829,841,910,1076 'connectionid':562,828,840 'connector':317 'consol':172 'contain':281 'content':82,660,664,667,706,710,713,730,783,795,955 'content-typ':954 'context':578 'correct':897 'cover':436,865 'creat':49,256,314,732,735,737,1074 'create-group':734 'credenti':115,902,1064 'current':813 'custom':1042 'd':940 'data':8,23,54,84,941 'default':369,926 'delet':635,638,640,723,726,728,925 'delete-group':637 'delete-item':725 'depend':173 'describ':416 'descript':551,588,604,916 'detail':542,778 'developers.arcgis.com':77 'developers.arcgis.com/arcgis-online/':76 'direct':873 'disconnect':444 'discov':1021 'doc':75 'domain':263,301 'e.g':453,509,936,974,982 'edg':1054 'either':159 'ensur':252,267 'environ':181 'error':530,539,1009 'etc':230,434 'exist':656,1038 'expir':906 'explan':463 'extern':994 'fail':533 'fastest':289 'field':540,853,1051 'find':254,1037 'finish':206 'flag':361,915 'focus':121 'folder':85,722 'found':311 'full':1081 'fulli':395 'g':148 'geospati':58 'get':292,356,519,658,662,665,704,708,711,744,747,749,758,761,763,772,775,777,804,808,921,928 'get-group':746 'get-group-cont':661 'get-item':774 'get-portal-self':807 'get-us':760 'get-user-cont':707 'gis':41 'googl':64 'group':86,616,630,636,639,642,647,650,657,659,663,673,690,693,696,733,736,740,745,748,754 'h':929,937 'handl':112,1010,1049,1063 'har':244 'header':899,930,934 'headless':180 'http':919 'human':461 'human-read':460 'id':285,564,586,757,787,830,842,911,984 'includ':585,900 'inform':450,750,764,779,817 'initi':437 'inject':895 'input':448,843 'inputschema':589 'instal':130,133,147 'instead':1077 'instruct':493 'integr':6,124 'intent':565,1029,1035 'interact':19,107,176 'item':83,606,609,614,622,625,628,668,714,724,727,731,773,776,784,789,792,796 'json':213,221,271,358,520,569,831,834,846,945,950 'keep':375 'key':433,603,844,1071 'kind':422 'known':305 'languag':550 'latest':150 'less':1014 'let':1061 'lifecycl':1083 'limit':567,976 'list':561,1028 'local':1089 'logic':125 'login':154,205,210 'long':363 'long-pol':362 'longer':381 'machin':219 'machine-read':218 'make':632,1017 'manag':7,1079 'map':33,52,65,1052 'match':303 'membran':104,111,135,141,153,209,250,265,517,559,825,837,880,883,908,990,996,1026,1062,1078 'membranehq/cli':149,354 'method':918,920 'miss':1060 'mode':177 'move':526 'name':91,587,602 'natur':549 'need':95,409,425,428,452,467 'never':1065 'new':283,739 'next':391 'normal':298 'npm':146 'npx':353 'oauth':431 'object':415 'offici':74 'one':312 'onlin':3,5,22,25,27,80,99,110,248,877 'open':160,193 'openclaw':226 'option':469,492,914 'organ':47,720,816 'output':222,280,852 'outputschema':596 'overview':81 'own':715 'pagin':1007,1050 'paramet':93,591,835,972,980 'pass':833 'patch':924 'path':891,979 'pathparam':978,983 'planner':44 'platform':36 'plumb':129 'poll':347,364,376,514 'popular':600 'portal':645,684,699,743,799,805,809,814 'post':922 'practic':987 'pre':474,999,1046 'pre-built':473,998,1045 'prefer':989 'present':490 'print':166,185 'proceed':501 'process':967 'profession':42,68 'programmat':502 'project':59 'properti':653 'provid':447,893,997 'provide-input':446 'proxi':857,882 'public/organization':619 'public/organization-wide':634 'put':923 'queri':566,687,702,802,968,970,975,1030,1032 'query-str':969 'rather':126 'raw':1057 'rawdata':958 're':441 're-authent':440 'readabl':220,462 'readi':327,339,351,392,528 'record':9 'refresh':116,903 'remov':610 'repeat':935,973,981 'replac':1031 'request':858,872,909,933,942 'requir':404,418 'respons':856 'result':384,584,848 'return':323,599,811 'revok':618 'run':140,822,827,839,1025 'search':543,546,573,674,677,679,689,692,694,788,791,793 'search-group':691 'search-item':790 'search-us':676 'second':368 'secret':1090 'secur':1020 'see':200 'self':806,810 'send':871,948,959 'server':1085 'server-sid':1084 'set':396,953 'setup':532 'share':51,611,621,624,626,669 'share-item':623 'shorthand':946 'show':484 'side':1086 'skill':101 'skill-arcgis-online' 'skip':328,398 'someth':412,534 'source-membranedev' 'specif':581,672,718,753,767,782 'state':326,346,373,378,385,525 'step':330,400 'string':688,703,803,944,971 'talk':992 'tell':386 'tenant':155 'termin':144 'think':60 'timeout':367 'token':1015,1073 'tool':237 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':901 'type':224,956 'ui':476 'unshar':605,608 'unshare-item':607 'updat':646,649,651 'update-group':648 'urban':43 'url':169,188,261,296,470,888 'use':13,39,69,89,102,234,240,249,547,685,700,800,867 'user':16,87,88,191,273,406,427,479,488,505,675,678,681,705,709,719,759,762,768,821,1068 'usernam':771 'valu':845 'wait':333,357,360 'want':17,555 'warp':228 'way':290 'went':535 'whether':175 'windsurf':229 'without':965 'work':96 'workflow':12 'write':1041 'wrong':536 'www.esri.com':269 'www.esri.com/en-us/arcgis/products/arcgis-online/overview':268 'x':917","prices":[{"id":"7df7fdcb-d75f-4740-92d4-707f845a0660","listingId":"7d1bc765-4093-4885-afc0-77bc03122ce5","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:26.275Z"}],"sources":[{"listingId":"7d1bc765-4093-4885-afc0-77bc03122ce5","source":"github","sourceId":"membranedev/application-skills/arcgis-online","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/arcgis-online","isPrimary":false,"firstSeenAt":"2026-04-18T22:27:26.275Z","lastSeenAt":"2026-04-28T18:57:37.088Z"}],"details":{"listingId":"7d1bc765-4093-4885-afc0-77bc03122ce5","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"arcgis-online","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":"d1b07b0079996090c74881caa8112f92cfdb022a","skill_md_path":"skills/arcgis-online/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/arcgis-online"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"arcgis-online","license":"MIT","description":"ArcGIS Online integration. Manage data, records, and automate workflows. Use when the user wants to interact with ArcGIS Online data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/arcgis-online"},"updatedAt":"2026-04-28T18:57:37.088Z"}}