time-based-actions

Route time-based user requests to the correct scheduling tool.

2|2|Updated May 13, 2026
One-click install
npx skills add https://github.com/autonomy-cloud/kairos-interface --skill time-based-actions-autonomy-cloud
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: time-based-actions
Source: https://github.com/autonomy-cloud/kairos-interface/tree/main/skills/time-based-actions
Command: npx skills add https://github.com/autonomy-cloud/kairos-interface --skill time-based-actions-autonomy-cloud

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prevents time-triggered actions from being sent to the wrong tool, so reminders fire when intended, recurring schedules behave correctly, and “right now” alerts don’t accidentally become future notifications.

Core Features & Use Cases

  • Decision guidance for tool selection: Chooses between reminder_create, schedule_create, assistant notifications send, and task_list_add based on whether the user asked for one-time timing, recurrence, immediate notification, or no time trigger.
  • Safety guardrails for critical tools: Explicitly warns that assistant notifications send is immediate-only and task_list_add has no time trigger, reducing common routing mistakes.
  • Timezone- and time-grounding rules: Instructs how to use the injected current_time clock source, when to confirm timezone, and how to compute ISO timestamps for relative times.

Quick Start

Ask: “Remind me every weekday at 9am to review my inbox,” and use the routing guide to create schedule_create with the correct mode.

Frequently Asked Questions about time-based-actions

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route reminders and schedules without misfires across different tools?

To route reminders and schedules without misfires, apply decision guidance that selects between reminder_create, schedule_create, assistant notifications send, and task_list_add based on whether the request needs one-time timing, recurrence, immediate notification, or no time trigger.

What is the best way to compute ISO timestamps for relative time expressions?

Compute ISO timestamps for relative time expressions by using the injected current_time clock source, applying timezone-grounding rules, and confirming the timezone before calculating the target time for your scheduling tool.

Why does my immediate right now alert accidentally become a future notification?

Immediate right now alerts become future notifications when incorrectly routed to reminder_create or schedule_create instead of assistant notifications send, which is the immediate-only tool for alerts.

Can I use task_list_add to set up time-triggered reminders and notifications?

You cannot use task_list_add for time-triggered reminders and notifications because task_list_add has no time trigger, meaning it only adds items to a non-timed task list without scheduling capabilities.

How do I set up recurring automation patterns for weekday task management?

Set up recurring automation patterns for weekday task management by creating a schedule_create request with the correct mode, ensuring the injected current_time data and timezone constraints are properly applied to avoid misfires.