Claude Code Plugins

Community-maintained marketplace

Feedback

This skill provides the required tasks needed, in order to interact with the booking system.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name Booking
description This skill provides the required tasks needed, in order to interact with the booking system.

Booking system tasks

Find available timeslots

This action will find available timeslots, in a given week.

def find_available_timeslots(year, week):
  # Mock Code
  # ...

Create new appointment

This action will create a new appointment

def create_appointment(date_time, patient_id):
  # Mock Code
  # ...

Find appointment

This will find the existing appointments for a given patient

def find_appointment(patient_id):
  # Mock Code
  # ...

Edit appointment

This action will edit an existing appointment

def edit_appointment(appointment_id, updated_appointment):
  # Mock Code
  # ...

Cancel appointment

This action will cancel an existing appointment

def cancel_appointment(appointment_id):
  # Mock Code
  # ...