Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

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★ 267⑂ 42AI 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

  1. "Convert this CSV to JSON" → discovers and runs convert-csv-to-json.
  2. "Decode this JWT and show me the claims" → runs decode-jwt and summarizes the output.
  3. "Pull the text out of this screenshot" → runs detect-text-in-image (OCR).
  4. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download 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.

  1. Open a terminal and confirm Node.js is installed: node -v.
  2. Install the Membrane CLI: npm install -g @membranehq/cli@latest
  3. Clone the skills repo: git clone https://github.com/membranedev/application-skills.git
  4. Copy the skill into place: mkdir -p ~/.claude/skills && cp -r application-skills/skills/0codekit ~/.claude/skills/
  5. Restart Claude Code.
  6. Log in: membrane login --tenant --clientName=claude (in headless shells, open the printed URL, then run membrane login complete <code>).
  7. Ask Claude to "set up a 0codekit connection" — it runs membrane connection ensure "https://www.0codekit.com/" --json and guides you through browser auth.
  8. Once the connection state is READY, just ask in natural language, e.g. "generate a QR code for this URL".