Calendar

DuckTape's calendar feature helps you manage events and schedules efficiently. You can use the command line or natural language commands to interact with your calendar.

Adding Events

To add an event to your calendar, you can use either a command-line instruction or natural language. Here's how:

Using Command-Line

# Add an event to the calendar
ducktape add event "Project Deadline" on 2025-04-15 at 10:00 AM

Using Natural Language

DuckTape also supports natural language commands for creating events. For example:

🦆 create an event at 10am on April 15 called Project Deadline

When you use this natural language command, DuckTape processes it as follows:

Terminal
[2025-03-31T05:57:00Z INFO ducktape::app] Processing command: ducktape create an event at 10am on April 15 called Project Deadline
[2025-03-31T05:57:02Z INFO ducktape::app] Processed command: ducktape calendar create "Project Deadline" 2025-04-15 10:00 11:00 "shaun@surfergolfer.com"
[2025-03-31T05:57:02Z INFO ducktape::app] Executing command 'calendar' with arguments: ["create", "Project Deadline", "2025-04-15", "10:00", "11:00", "shaun@surfergolfer.com"]
[2025-03-31T05:57:03Z INFO ducktape::calendar] Attempting to create event in calendar: shaun@surfergolfer.com
[2025-03-31T05:57:04Z INFO ducktape::calendar] Calendar event created: Project Deadline at 2025-04-15 10:00
[2025-03-31T05:57:04Z INFO ducktape::calendar] Successfully created event in calendar 'shaun@surfergolfer.com'
[2025-03-31T05:57:04Z INFO ducktape::calendar] Calendar event created in 1/1 calendars

Alternatively, you can use the interactive DuckTape Terminal to create events:

🦆 create an event at 10am on April 15 called Project Deadline
Interactive Terminal
[2025-03-31T05:57:34Z INFO ducktape::app] Starting DuckTape Terminal
Welcome to DuckTape Terminal! Type 'help' for commands.
🦆 create an event at 10am on April 15 called Project Deadline
Processing natural language: 'create an event at 10am on April 15 called Project Deadline'
Translated to command: ducktape calendar create "Project Deadline" 2025-04-15 10:00 11:00 "shaun@surfergolfer.com"
[2025-03-31T05:57:43Z INFO ducktape::app] Executing command 'calendar' with arguments: ["create", "Project Deadline", "2025-04-15", "10:00", "11:00", "shaun@surfergolfer.com"]
[2025-03-31T05:57:44Z INFO ducktape::calendar] Attempting to create event in calendar: shaun@surfergolfer.com
[2025-03-31T05:57:46Z INFO ducktape::calendar] Calendar event created: Project Deadline at 2025-04-15 10:00
[2025-03-31T05:57:46Z INFO ducktape::calendar] Successfully created event in calendar 'shaun@surfergolfer.com'
[2025-03-31T05:57:46Z INFO ducktape::calendar] Calendar event created in 1/1 calendars

This interactive mode allows you to type natural language commands directly and see immediate feedback.

Viewing Events

To view your calendar events, use the following commands:

# View all events
ducktape show calendar

# View events for a specific day
ducktape show calendar on 2025-04-15

Editing Events

Modify existing events with the following commands:

# Update an event
ducktape update event "Project Deadline" to "Final Presentation" on 2025-04-16 at 2:00 PM

# Delete an event
ducktape delete event "Final Presentation"

Syncing with External Calendars

DuckTape supports syncing with external calendar services like Google Calendar and Apple Calendar. To enable syncing, follow these steps:

  1. Log in to your DuckTape account.
  2. Navigate to the Integrations section in the settings.
  3. Connect your preferred calendar service.
Note: Syncing ensures that your events are always up to date across all platforms.

Best Practices

  • Use clear and descriptive titles for your events.
  • Set reminders for important events to stay on track.
  • Regularly review your calendar to avoid conflicts.