0codekit Integration (via Membrane)
Lets Claude call 0codekit's utility APIs (conversion, hashing, QR, OCR and more) through the Membrane CLI without handling auth yourself.
UtilitiesIntermediate★ 255⑂ 40AI score 7/10Last updated: Apr 28, 2026
What it does
- Walks Claude through installing and logging into the Membrane CLI, then creating a 0codekit connection with
membrane connection ensure. - Turns plain-language requests into action discovery (
membrane action list --intent) and execution (membrane action run). - Falls back to authenticated proxy calls (
membrane request) when no prebuilt action fits. - Keeps credentials server-side: the skill explicitly tells the agent never to ask you for API keys or tokens.
Who it's for
- Teams already using (or evaluating) Membrane for SaaS integrations.
- Anyone who wants quick utility endpoints: CSV→JSON, JWT encode/decode, hashing/encryption, QR generation, image resize/convert, OCR, currency conversion, IP geolocation.
- Automation engineers tired of writing OAuth plumbing.
Examples
- "Convert this CSV to JSON" → discovers and runs
convert-csv-to-json. - "Decode this JWT and show me the claims" → runs
decode-jwtand summarizes the output. - "Pull the text out of this screenshot" → runs
detect-text-in-image(OCR). - Nothing matches?
membrane request <connectionId> /some/endpoint -X POST --json '{...}'.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/membranedev/application-skills/HEAD/skills/0codekit/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/0codekit folder from the GitHub repo membranedev/application-skills into my ~/.claude/skills/0codekit/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/membranedev/application-skills.git /tmp/application-skills && mkdir -p ~/.claude/skills && cp -r /tmp/application-skills/skills/0codekit ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and confirm Node.js is installed:
node -v. - Install the Membrane CLI:
npm install -g @membranehq/cli@latest - Clone the skills repo:
git clone https://github.com/membranedev/application-skills.git - Copy the skill into place:
mkdir -p ~/.claude/skills && cp -r application-skills/skills/0codekit ~/.claude/skills/ - Restart Claude Code.
- Log in:
membrane login --tenant --clientName=claude(in headless shells, open the printed URL, then runmembrane login complete <code>). - Ask Claude to "set up a 0codekit connection" — it runs
membrane connection ensure "https://www.0codekit.com/" --jsonand guides you through browser auth. - Once the connection state is
READY, just ask in natural language, e.g. "generate a QR code for this URL".