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

10to8 Booking Integration (Membrane)

Lets Claude read and manage 10to8 appointments, staff and services through the Membrane CLI.

AutomationIntermediate26141AI score 7/10Last updated: Apr 28, 2026

What it does

  • Connects to 10to8, an appointment scheduling platform, via the Membrane CLI so authentication and credential refresh are handled server-side (no local API keys).
  • Walks through creating a connection with membrane connection ensure and how to react to each state: READY, BUILDING, CLIENT_ACTION_REQUIRED, CONFIGURATION_ERROR.
  • Lists popular prebuilt actions — create/update/cancel booking, list bookings, list available slots, staff, services, locations, organisation details.
  • Falls back to raw API calls through membrane request proxy when no prebuilt action fits.

Who it's for

  • Clinics, salons, tutors and other small businesses running bookings on 10to8.
  • Ops people who want reporting or reminder automation built on booking data.
  • Developers who want a fast integration without writing OAuth plumbing.

Examples

  1. "Show me next week's bookings" → discover with membrane action list --intent "list bookings", then run list-bookings.
  2. "Which slots are free tomorrow afternoon?" → run the list-available-slots action.
  3. "Move Jane's appointment to Friday and cancel John's" → chain update-booking and cancel-booking.

· · · 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/10to8/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/10to8 folder from the GitHub repo membranedev/application-skills into my ~/.claude/skills/10to8/.
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 && mkdir -p ~/.claude/skills && cp -r application-skills/skills/10to8 ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Make sure Node.js is installed (node -v).
  2. Install the Membrane CLI: npm install -g @membranehq/cli@latest.
  3. Clone the skill repo: git clone https://github.com/membranedev/application-skills.git.
  4. Copy the skill into Claude: mkdir -p ~/.claude/skills && cp -r application-skills/skills/10to8 ~/.claude/skills/.
  5. Log in: membrane login --tenant --clientName=claude (in headless setups, open the printed URL and finish with membrane login complete <code>).
  6. Create the connection: membrane connection ensure "https://10to8.com/" --json, then complete the browser auth.
  7. Restart Claude Code and try "list my 10to8 bookings" to verify it works.