Booking metadata calendar
Skill thevibethinker/vibe-thinker-skills/booking-metadata-calendar
Parse natural-language booking requests into structured metadata, wire metadata into calendar event payloads, and persist retrievable records keyed by meeting ID.From its SKILL.md
npx -y skills add thevibethinker/vibe-thinker-skills --skill booking-metadata-calendarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 488 tokens by cl100k_base, as published. Nobody here has run it
Booking Metadata + Calendar Skill
Purpose
Convert free-form booking text into structured booking metadata for downstream routing and meeting ingestion.
What It Produces
- Validated metadata fields:
meeting_intentstrategic_importanceexpected_outputsrelationship_goalpromotion_bias
- Calendar event payload with metadata attached.
- Persistent records keyed by
meeting_id.
CLI
python3 Skills/booking-metadata-calendar/scripts/booking_metadata_calendar.py --help
Parse Only
python3 Skills/booking-metadata-calendar/scripts/booking_metadata_calendar.py parse \
--message "Need to schedule a partnership meeting with Acme to align on pilot scope and next steps." \
--title "Acme Partnership Kickoff" \
--start "2026-02-18T15:00:00-05:00" \
--end "2026-02-18T15:45:00-05:00"
End-to-End Booking Record (Parse + Wire + Persist)
python3 Skills/booking-metadata-calendar/scripts/booking_metadata_calendar.py book \
--message "Intro call with investor to align on strategic milestones and funding timeline." \
--title "Investor Intro" \
--start "2026-02-20T10:00:00-05:00" \
--end "2026-02-20T10:30:00-05:00" \
--calendar-event-id "cal_evt_123"
Validation Harness (3 Representative Intents)
python3 Skills/booking-metadata-calendar/scripts/booking_metadata_calendar.py validate-cases
Storage
- Per-meeting metadata:
N5/data/booking_metadata/by_meeting/<meeting_id>.json
- Append-only index:
N5/data/booking_metadata/registry.jsonl
Environment Notes
- The default persistence paths assume a standard Zo-style workspace layout under
N5/data/booking_metadata/. - If you install this skill into a different layout, review the script defaults before relying on persisted output.
References
file 'Skills/booking-metadata-calendar/references/booking-metadata-schema.md'file 'Skills/booking-metadata-calendar/references/runbook.md'
What ships with it: 5 files
24.7 KB alongside SKILL.md, 2 of them executable
references/
- booking-metadata-schema.md2.0 KB
- runbook.md2.1 KB
- validation-cases.json1.3 KB
scripts/
- booking_metadata_calendar.pyruns14.9 KB
- test_booking_metadata_calendar.pyruns4.4 KB