Agent skill
Booking
This skill provides the required tasks needed, in order to interact with the booking system.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/booking
SKILL.md
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
# ...
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?