<< All versions
Skill v1.0.0
currentAutomated scan100/100danielrosehill/claude-schedule-manager-plugin/firehose
──Details
PublishedApril 29, 2026 at 08:11 PM
Content Hashsha256:8825d9bbbd5b10e6...
Git SHA832675221f48
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 40 lines · 1.6 KB
version: "1.0.0" name: firehose description: Take a free-form mixed dump of items and route each into Google Calendar (events) or Todoist (tasks). Confirms the split with the user before writing.
Firehose
User provides a mixed brain-dump (voice-transcribed or typed). Each item is either an appointment (specific time/place, has attendees, blocks calendar) or a task (work to do, has a due date at most). Classify, confirm, then create.
Steps
- Read config per
lib/CONFIG.md. Abort with onboarding pointer if missing.
- Parse the dump into individual items. Strip filler.
- Classify each item as
event,task, orunclear. Heuristics:
- Specific time + duration + (optional) attendee →
event - Action verb + due-by phrasing, no fixed time →
task - Vague ("think about X") →
taskwith no date - Time-blocked focus work without external attendees → user's call (ask)
- Present the split as a table to the user before writing anything:
- Get confirmation or corrections. User can flip routing per row, edit details, or drop rows.
- Create in batches. Delegate to:
batch-create-eventsfor the event rowsbatch-create-tasksfor the task rows- For events with attendees, resolve names via the contacts MCP first.
- Report what was created with links to the new event(s) and task(s).
Notes
- Never write without explicit user confirmation of the split.
- If an item's date/time is ambiguous, ask once; do not silently assume.
- Default timezone from
config.defaults.timezone.