{"id":"623ad762-ccdf-480b-82e6-3004604a7c99","shortId":"7u4aTp","kind":"skill","title":"bannerbear","tagline":"Bannerbear integration. Manage data, records, and automate workflows. Use when the user wants to interact with Bannerbear data.","description":"# Bannerbear\n\nBannerbear is a simple API and platform for generating images and videos. Developers and marketers use it to automate the creation of visual content for social media, ads, and more. It's useful for dynamically creating visuals at scale.\n\nOfficial docs: https://www.bannerbear.com/documentation/\n\n## Bannerbear Overview\n\n- **Image Template**\n  - **Preset**\n- **Video Template**\n  - **Preset**\n- **Collection**\n- **Image**\n- **Video**\n\nUse action names and parameters as needed.\n\n## Working with Bannerbear\n\nThis skill uses the Membrane CLI to interact with Bannerbear. 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 Bannerbear\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://bannerbear.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 Animated GIFs | list-animated-gifs | List all animated GIFs in the project. |\n| Get Animated GIF | get-animated-gif | Retrieve a single animated GIF by its unique ID. |\n| Create Animated GIF | create-animated-gif | Generate an animated GIF slideshow from a template with multiple frames. |\n| Get Template | get-template | Retrieve a single template by its unique ID. |\n| List Templates | list-templates | List all templates in the project. |\n| List Screenshots | list-screenshots | List all screenshots in the project. |\n| Get Screenshot | get-screenshot | Retrieve a single screenshot by its unique ID. |\n| Create Screenshot | create-screenshot | Capture a screenshot of a public webpage. |\n| List Videos | list-videos | List all videos in the project. |\n| Get Video | get-video | Retrieve a single video by its unique ID. |\n| Create Video | create-video | Generate a video from a video template with modifications. |\n| List Images | list-images | List all images in the project. |\n| Get Image | get-image | Retrieve a single image by its unique ID. |\n| Create Image | create-image | Generate an image from a template with modifications. |\n| Get Account | get-account | Check your account status including quota levels and current usage. |\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 Bannerbear 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":["bannerbear","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-bannerbear","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/bannerbear","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,196 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:41.414Z","embedding":null,"createdAt":"2026-04-18T22:28:15.291Z","updatedAt":"2026-04-28T18:57:41.414Z","lastSeenAt":"2026-04-28T18:57:41.414Z","tsv":"'/documentation/':64 '/path/to/endpoint':874 '10':550,939 '123':947 '1b':314 '2':313,383 '30':352 'accept':576,900 'account':771,774,777 'action':77,385,401,406,465,490,527,542,557,575,583,786,789,801,825,963,989,1001,1010 'ad':48 'add':197,893 'adjust':221 'agent':208,390,479 'ai':478 'alway':554,950 'anim':588,592,596,602,606,611,618,622,626 'api':25,414,840,1005,1020,1032 'app':244,288,291,437,957 'append':847 'application/json':901,919 'as-i':924 'ask':174,1028 'auth':113,968,1044 'authent':98,136,149,257,412,420,424,492,860 'author':153,172 'autom':8,39 'automat':102,302,846 'avail':164,824 'bannerbear':1,2,18,20,21,65,85,95,232,839 'bannerbear.com':252 'base':849 'bash':130,137,193,248,334,540,787,799,869 'best':226,948 'bodi':905,913,923 'browser':147,182,260,495 'build':327,364,986 'built':301,457,962,966,1009 'built-in':965 'burn':975 'call':1006,1021 'captur':688 'case':831,1017 'chang':356 'check':504,519,775 'claud':210 'cli':91,117,121 'client':384 'clientact':396 'clientaction.agentinstructions':473 'clientaction.description':441 'clientaction.type':402 'clientaction.uiurl':450 'clientnam':141 'code':187 'codex':212 'collect':73 'command':168,201 'common':875 'communic':980 'complet':189,196,256,463,488 'configur':511 'connect':230,235,242,250,266,276,306,318,324,337,375,408,427,439,500,545,564,792,804,872,1038 'connectionid':544,791,803 'connector':299 'consol':157 'contain':263 'content':44,917 'content-typ':916 'context':560 'correct':859 'cover':418,828 'creat':56,240,296,617,621,683,686,719,722,757,760,1036 'create-animated-gif':620 'create-imag':759 'create-screenshot':685 'create-video':721 'creation':41 'credenti':100,864,1026 'current':783 'custom':1004 'd':902 'data':5,19,903 'default':351,888 'delet':887 'depend':158 'describ':398 'descript':533,570,586,878 'detail':524 'develop':33 'direct':836 'disconnect':426 'discov':983 'doc':61 'domain':247,283 'dynam':55 'e.g':435,491,898,936,944 'edg':1016 'either':144 'ensur':236,251 'environ':166 'error':512,521,971 'etc':215,416 'exist':1000 'expir':868 'explan':445 'extern':956 'fail':515 'fastest':271 'field':522,816,1013 'find':238,999 'finish':191 'flag':343,877 'focus':106 'found':293 'frame':634 'full':1043 'fulli':377 'g':133 'generat':29,624,724,762 'get':274,338,501,601,605,635,638,670,673,706,709,744,747,770,773,883,890 'get-account':772 'get-animated-gif':604 'get-imag':746 'get-screenshot':672 'get-templ':637 'get-video':708 'gif':589,593,597,603,607,612,619,623,627 'h':891,899 'handl':97,972,1011,1025 'har':229 'header':861,892,896 'headless':165 'http':881 'human':443 'human-read':442 'id':267,546,568,616,647,682,718,756,793,805,873,946 'imag':30,67,74,734,737,740,745,748,752,758,761,764 'includ':567,779,862 'inform':432 'initi':419 'inject':857 'input':430,806 'inputschema':571 'instal':115,118,132 'instead':1039 'instruct':475 'integr':3,109 'intent':547,991,997 'interact':16,93,161 'json':198,206,253,340,502,551,794,797,809,907,912 'keep':357 'key':415,585,807,1033 'kind':404 'known':287 'languag':532 'latest':135 'less':976 'let':1023 'level':781 'lifecycl':1045 'limit':549,938 'list':543,587,591,594,648,651,653,659,662,664,695,698,700,733,736,738,990 'list-animated-gif':590 'list-imag':735 'list-screenshot':661 'list-templ':650 'list-video':697 'local':1051 'logic':110 'login':139,190,195 'long':345 'long-pol':344 'longer':363 'machin':204 'machine-read':203 'make':979 'manag':4,1041 'map':1014 'market':35 'match':285 'media':47 'membran':90,96,120,126,138,194,234,249,499,541,788,800,842,845,870,952,958,988,1024,1040 'membranehq/cli':134,336 'method':880,882 'miss':1022 'mode':162 'modif':732,769 'move':508 'multipl':633 'name':78,569,584 'natur':531 'need':82,391,407,410,434,449 'never':1027 'new':265 'next':373 'normal':280 'npm':131 'npx':335 'oauth':413 'object':397 'offici':60 'one':294 'open':145,178 'openclaw':211 'option':451,474,876 'output':207,262,815 'outputschema':578 'overview':66 'pagin':969,1012 'paramet':80,573,798,934,942 'pass':796 'patch':886 'path':853,941 'pathparam':940,945 'platform':27 'plumb':114 'poll':329,346,358,496 'popular':582 'post':884 'practic':949 'pre':456,961,1008 'pre-built':455,960,1007 'prefer':951 'present':472 'preset':69,72 'print':151,170 'proceed':483 'process':929 'programmat':484 'project':600,658,669,705,743 'provid':429,855,959 'provide-input':428 'proxi':820,844 'public':693 'put':885 'queri':548,930,932,937,992,994 'query-str':931 'quota':780 'rather':111 'raw':1019 'rawdata':920 're':423 're-authent':422 'readabl':205,444 'readi':309,321,333,374,510 'record':6 'refresh':101,865 'repeat':897,935,943 'replac':993 'request':821,835,871,895,904 'requir':386,400 'respons':819 'result':366,566,811 'retriev':608,640,675,711,749 'return':305,581 'run':125,785,790,802,987 'scale':59 'screenshot':660,663,666,671,674,678,684,687,690 'search':525,528,555 'second':350 'secret':1052 'secur':982 'see':185 'send':834,910,921 'server':1047 'server-sid':1046 'set':378,915 'setup':514 'shorthand':908 'show':466 'side':1048 'simpl':24 'singl':610,642,677,713,751 'skill':87 'skill-bannerbear' 'skip':310,380 'slideshow':628 'social':46 'someth':394,516 'source-membranedev' 'specif':563 'state':308,328,355,360,367,507 'status':778 'step':312,382 'string':906,933 'talk':954 'tell':368 'templat':68,71,631,636,639,643,649,652,655,730,767 'tenant':140 'termin':129 'timeout':349 'token':977,1035 'tool':222 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':863 'type':209,918 'ui':458 'uniqu':615,646,681,717,755 'url':154,173,245,278,452,850 'usag':784 'use':10,36,53,76,88,219,225,233,529,830 'user':13,176,255,388,409,461,470,487,1030 'valu':808 'video':32,70,75,696,699,702,707,710,714,720,723,726,729 'visual':43,57 'wait':315,339,342 'want':14,537 'warp':213 'way':272 'webpag':694 'went':517 'whether':160 'windsurf':214 'without':927 'work':83 'workflow':9 'write':1003 'wrong':518 'www.bannerbear.com':63 'www.bannerbear.com/documentation/':62 'x':879","prices":[{"id":"96a0d57b-9880-43b0-b776-eabd6c980cb5","listingId":"623ad762-ccdf-480b-82e6-3004604a7c99","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:28:15.291Z"}],"sources":[{"listingId":"623ad762-ccdf-480b-82e6-3004604a7c99","source":"github","sourceId":"membranedev/application-skills/bannerbear","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/bannerbear","isPrimary":false,"firstSeenAt":"2026-04-18T22:28:15.291Z","lastSeenAt":"2026-04-28T18:57:41.414Z"}],"details":{"listingId":"623ad762-ccdf-480b-82e6-3004604a7c99","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"bannerbear","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":"0f78722d007b00355e78bcb08e662bc5339c836d","skill_md_path":"skills/bannerbear/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/bannerbear"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"bannerbear","license":"MIT","description":"Bannerbear integration. Manage data, records, and automate workflows. Use when the user wants to interact with Bannerbear data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/bannerbear"},"updatedAt":"2026-04-28T18:57:41.414Z"}}