{"id":"1dd8e369-f7e7-488a-aad2-ab0b2213bfb0","shortId":"x4GdXE","kind":"skill","title":"fireberry","tagline":"Fireberry integration. Manage Organizations, Pipelines, Users, Goals, Filters. Use when the user wants to interact with Fireberry data.","description":"# Fireberry\n\nFireberry is a customer relationship management (CRM) platform. It helps businesses, especially small to medium-sized ones, manage their leads, contacts, and sales processes.\n\nOfficial docs: https://developers.fireberry.io/\n\n## Fireberry Overview\n\n- **Contacts**\n  - **Contact Groups**\n- **Emails**\n- **SMS**\n- **Call Logs**\n- **Tasks**\n- **Deals**\n- **Marketing Campaigns**\n- **Reports**\n- **Settings**\n  - **Integrations**\n  - **Users**\n  - **Permissions**\n  - **Subscription**\n  - **Templates**\n    - **Email Templates**\n    - **SMS Templates**\n  - **Automation Rules**\n  - **Data Management**\n    - **Import**\n    - **Export**\n    - **Backup**\n  - **Preferences**\n    - **Email Settings**\n    - **SMS Settings**\n    - **Call Settings**\n    - **Task Settings**\n    - **Deal Settings**\n    - **Report Settings**\n    - **Notification Settings**\n    - **Security Settings**\n\n## Working with Fireberry\n\nThis skill uses the Membrane CLI to interact with Fireberry. 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 Fireberry\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://www.fireberry.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 Users | list-users | Retrieve a list of all users from Fireberry |\n| List Notes | list-notes | Retrieve a list of all notes from Fireberry |\n| List Tasks | list-tasks | Retrieve a list of all tasks from Fireberry |\n| List Opportunities | list-opportunities | Retrieve a list of all opportunities from Fireberry |\n| List Accounts | list-accounts | Retrieve a list of all accounts from Fireberry |\n| List Contacts | list-contacts | Retrieve a list of all contacts from Fireberry |\n| Get User | get-user | Retrieve a single user by ID from Fireberry |\n| Get Task | get-task | Retrieve a single task by ID from Fireberry |\n| Get Opportunity | get-opportunity | Retrieve a single opportunity by ID from Fireberry |\n| Get Account | get-account | Retrieve a single account by ID from Fireberry |\n| Get Contact | get-contact | Retrieve a single contact by ID from Fireberry |\n| Create Note | create-note | Create a new note in Fireberry |\n| Create Task | create-task | Create a new task in Fireberry |\n| Create Opportunity | create-opportunity | Create a new opportunity in Fireberry |\n| Create Account | create-account | Create a new account in Fireberry |\n| Create Contact | create-contact | Create a new contact in Fireberry |\n| Update Task | update-task | Update an existing task in Fireberry |\n| Update Opportunity | update-opportunity | Update an existing opportunity in Fireberry |\n| Update Account | update-account | Update an existing account in Fireberry |\n| Update Contact | update-contact | Update an existing contact in Fireberry |\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 Fireberry 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":["fireberry","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-fireberry","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/fireberry","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,888 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:21.905Z","embedding":null,"createdAt":"2026-04-18T22:37:08.979Z","updatedAt":"2026-05-18T19:00:21.905Z","lastSeenAt":"2026-05-18T19:00:21.905Z","tsv":"'/path/to/endpoint':932 '10':564,997 '123':1005 '1b':328 '2':327,397 '30':366 'accept':590,958 'account':654,657,663,719,722,726,778,781,785,822,825,829 'action':399,415,420,479,504,541,556,571,589,597,844,847,859,883,1021,1047,1059,1068 'add':211,951 'adjust':235 'agent':222,404,493 'ai':492 'alway':568,1008 'api':428,898,1063,1078,1090 'app':258,302,305,451,1015 'append':905 'application/json':959,977 'as-i':982 'ask':188,1086 'auth':127,1026,1102 'authent':112,150,163,271,426,434,438,506,918 'author':167,186 'autom':73 'automat':116,316,904 'avail':178,882 'backup':79 'base':907 'bash':144,151,207,262,348,554,845,857,927 'best':240,1006 'bodi':963,971,981 'browser':161,196,274,509 'build':341,378,1044 'built':315,471,1020,1024,1067 'built-in':1023 'burn':1033 'busi':31 'call':56,85,1064,1079 'campaign':61 'case':889,1075 'chang':370 'check':518,533 'claud':224 'cli':105,131,135 'client':398 'clientact':410 'clientaction.agentinstructions':487 'clientaction.description':455 'clientaction.type':416 'clientaction.uiurl':464 'clientnam':155 'code':201 'codex':226 'command':182,215 'common':933 'communic':1038 'complet':203,210,270,477,502 'configur':525 'connect':244,249,256,264,280,290,320,332,338,351,389,422,441,453,514,559,578,850,862,930,1096 'connectionid':558,849,861 'connector':313 'consol':171 'contact':42,51,52,667,670,676,732,735,739,789,792,796,833,836,840 'contain':277 'content':975 'content-typ':974 'context':574 'correct':917 'cover':432,886 'creat':254,310,744,747,749,755,758,760,766,769,771,777,780,782,788,791,793,1094 'create-account':779 'create-contact':790 'create-not':746 'create-opportun':768 'create-task':757 'credenti':114,922,1084 'crm':27 'custom':24,1062 'd':960 'data':19,75,961 'deal':59,89 'default':365,946 'delet':945 'depend':172 'describ':412 'descript':547,584,600,936 'detail':538 'developers.fireberry.io':48 'direct':894 'disconnect':440 'discov':1041 'doc':47 'domain':261,297 'e.g':449,505,956,994,1002 'edg':1074 'either':158 'email':54,69,81 'ensur':250,265 'environ':180 'error':526,535,1029 'especi':32 'etc':229,430 'exist':806,817,828,839,1058 'expir':926 'explan':459 'export':78 'extern':1014 'fail':529 'fastest':285 'field':536,874,1071 'filter':9 'find':252,1057 'finish':205 'fireberri':1,2,18,20,21,49,99,109,246,613,626,639,652,665,678,691,704,717,730,743,754,765,776,787,798,809,820,831,842,897 'flag':357,935 'focus':120 'found':307 'full':1101 'fulli':391 'g':147 'get':288,352,515,679,682,692,695,705,708,718,721,731,734,941,948 'get-account':720 'get-contact':733 'get-opportun':707 'get-task':694 'get-us':681 'goal':8 'group':53 'h':949,957 'handl':111,1030,1069,1083 'har':243 'header':919,950,954 'headless':179 'help':30 'http':939 'human':457 'human-read':456 'id':281,560,582,689,702,715,728,741,851,863,931,1004 'import':77 'includ':581,920 'inform':446 'initi':433 'inject':915 'input':444,864 'inputschema':585 'instal':129,132,146 'instead':1097 'instruct':489 'integr':3,64,123 'intent':561,1049,1055 'interact':16,107,175 'json':212,220,267,354,516,565,852,855,867,965,970 'keep':371 'key':429,599,865,1091 'kind':418 'known':301 'languag':546 'latest':149 'lead':41 'less':1034 'let':1081 'lifecycl':1103 'limit':563,996 'list':557,601,604,608,614,617,621,627,630,634,640,643,647,653,656,660,666,669,673,1048 'list-account':655 'list-contact':668 'list-not':616 'list-opportun':642 'list-task':629 'list-us':603 'local':1109 'log':57 'logic':124 'login':153,204,209 'long':359 'long-pol':358 'longer':377 'machin':218 'machine-read':217 'make':1037 'manag':4,26,39,76,1099 'map':1072 'market':60 'match':299 'medium':36 'medium-s':35 'membran':104,110,134,140,152,208,248,263,513,555,846,858,900,903,928,1010,1016,1046,1082,1098 'membranehq/cli':148,350 'method':938,940 'miss':1080 'mode':176 'move':522 'name':583,598 'natur':545 'need':405,421,424,448,463 'never':1085 'new':279,751,762,773,784,795 'next':387 'normal':294 'note':615,618,624,745,748,752 'notif':93 'npm':145 'npx':349 'oauth':427 'object':411 'offici':46 'one':38,308 'open':159,192 'openclaw':225 'opportun':641,644,650,706,709,713,767,770,774,811,814,818 'option':465,488,934 'organ':5 'output':221,276,873 'outputschema':592 'overview':50 'pagin':1027,1070 'paramet':587,856,992,1000 'pass':854 'patch':944 'path':911,999 'pathparam':998,1003 'permiss':66 'pipelin':6 'platform':28 'plumb':128 'poll':343,360,372,510 'popular':596 'post':942 'practic':1007 'pre':470,1019,1066 'pre-built':469,1018,1065 'prefer':80,1009 'present':486 'print':165,184 'proceed':497 'process':45,987 'programmat':498 'provid':443,913,1017 'provide-input':442 'proxi':878,902 'put':943 'queri':562,988,990,995,1050,1052 'query-str':989 'rather':125 'raw':1077 'rawdata':978 're':437 're-authent':436 'readabl':219,458 'readi':323,335,347,388,524 'refresh':115,923 'relationship':25 'repeat':955,993,1001 'replac':1051 'report':62,91 'request':879,893,929,953,962 'requir':400,414 'respons':877 'result':380,580,869 'retriev':606,619,632,645,658,671,684,697,710,723,736 'return':319,595 'rule':74 'run':139,843,848,860,1045 'sale':44 'search':539,542,569 'second':364 'secret':1110 'secur':95,1040 'see':199 'send':892,968,979 'server':1105 'server-sid':1104 'set':63,82,84,86,88,90,92,94,96,392,973 'setup':528 'shorthand':966 'show':480 'side':1106 'singl':686,699,712,725,738 'size':37 'skill':101 'skill-fireberry' 'skip':324,394 'small':33 'sms':55,71,83 'someth':408,530 'source-membranedev' 'specif':577 'state':322,342,369,374,381,521 'step':326,396 'string':964,991 'subscript':67 'talk':1012 'task':58,87,628,631,637,693,696,700,756,759,763,800,803,807 'tell':382 'templat':68,70,72 'tenant':154 'termin':143 'timeout':363 'token':1035,1093 'tool':236 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':921 'type':223,976 'ui':472 'updat':799,802,804,810,813,815,821,824,826,832,835,837 'update-account':823 'update-contact':834 'update-opportun':812 'update-task':801 'url':168,187,259,292,466,908 'use':10,102,233,239,247,543,888 'user':7,13,65,190,269,402,423,475,484,501,602,605,611,680,683,687,1088 'valu':866 'wait':329,353,356 'want':14,551 'warp':227 'way':286 'went':531 'whether':174 'windsurf':228 'without':985 'work':97 'write':1061 'wrong':532 'www.fireberry.com':266 'x':937","prices":[{"id":"8b4e6557-f971-4a5b-8a71-25298ea357fd","listingId":"1dd8e369-f7e7-488a-aad2-ab0b2213bfb0","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:37:08.979Z"}],"sources":[{"listingId":"1dd8e369-f7e7-488a-aad2-ab0b2213bfb0","source":"github","sourceId":"membranedev/application-skills/fireberry","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/fireberry","isPrimary":false,"firstSeenAt":"2026-04-18T22:37:08.979Z","lastSeenAt":"2026-05-18T19:00:21.905Z"}],"details":{"listingId":"1dd8e369-f7e7-488a-aad2-ab0b2213bfb0","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"fireberry","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":"f15737ef786df04f2346f77b34e19ffb5da6bc20","skill_md_path":"skills/fireberry/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/fireberry"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"fireberry","license":"MIT","description":"Fireberry integration. Manage Organizations, Pipelines, Users, Goals, Filters. Use when the user wants to interact with Fireberry data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/fireberry"},"updatedAt":"2026-05-18T19:00:21.905Z"}}