Manage calendar
Skill sumitaich1998/jarvisvr/skills/productivity/manage-calendar
An AI agentic operating system for mixed reality on the Meta Quest 3 — your own J.A.R.V.I.S. Multi-agent orchestration, multimodal perception (sight/hearing/gaze), 42 holographic widgets, 20 LLM providers.
npx -y skills add sumitaich1998/jarvisvr --skill manage-calendarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 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.
What its author says it does
Copied from the file, not written here
Show the user's schedule and answer agenda questions — today's events, what's next, free time. Use for "what's on my calendar?", "what's my next meeting?", "am I free at 3?", or a daily briefing's agenda section. Triggers: calendar, agenda, schedule, my day, next meeting, what's next, am I free, events today.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.5 KB, as published. Nobody here has run it
Manage Calendar
Surface the agenda and answer quick schedule questions, rendering a calendar
the user can scan and tap.
Steps
- Scope the query. Day vs. week; "next" vs. "free at 3pm".
- Call
get_calendar{date?}. Returnsdata.events({id, title, start, end, location}) and acalendardirective (agenda view). - Answer the specific question in
agent.speech(next event, free/busy), then render thecalendarfor the visual. - Drill-down: a tapped event (
select_event{event_id}) can expand details or startwayfindto itslocation.
Output
calendar (show_calendar / get_calendar, props per registry.json):
{ "widget_type": "calendar",
"transform": { "anchor": "world", "billboard": true },
"props": { "title": "Today", "view": "agenda", "date": "2026-06-09",
"events": [
{ "id": "e1", "title": "Standup", "start": "2026-06-09T09:00:00Z",
"end": "2026-06-09T09:15:00Z", "location": "Hangar 3" },
{ "id": "e2", "title": "Design review", "start": "2026-06-09T12:00:00Z",
"end": "2026-06-09T13:00:00Z", "location": "Lab" } ] },
"interactions": ["grab","tap","resize","drag","dwell"] }
agent.speech:
{ "text": "You have 3 events today. Next up: Standup at 9:00 in Hangar 3.", "final": true }
Edge cases
- No events → "Your calendar's clear today." Offer to block focus time
(
manage-timers) or add a reminder. - Free/busy ("am I free at 3?") → compute from event windows; answer yes/no with the conflicting event if busy.
- Create/modify events → only if a write integration is configured; otherwise say it's read-only and offer a reminder instead.
- Travel to an event → hand the
locationtonavigation-agent(wayfind). - Time zones → render in the user's locale; a multi-zone view is a
world_clockjob.