DuckTape Documentation

Get up and running with DuckTape in just a few minutes. This guide will walk you through installation, configuration, and basic usage.

Installation

Install DuckTape using Homebrew:

brew install ducktapeai/ducktape/ducktape

Configure Environment Variables

DuckTape requires API keys for at least one of the supported AI providers.

Required for AI Language Models:

Choose at least one of the following AI providers:

# For OpenAI
export OPENAI_API_KEY='your-openai-api-key-here'

# For Grok (XAI)
export XAI_API_KEY='your-xai-api-key-here'

# For DeepSeek
export DEEPSEEK_API_KEY='your-deepseek-api-key-here'

Modes of Operation

DuckTape offers two distinct modes of operation:

1. Natural Language Mode (Requires API Key)

In this mode, DuckTape uses AI language models to interpret natural language commands. This requires setting up API keys for one of the supported AI providers:

Setting Up API Keys

Choose at least one provider and set the corresponding environment variable:

# For OpenAI
export OPENAI_API_KEY='your-openai-api-key-here'

# For Grok (XAI)
export XAI_API_KEY='your-xai-api-key-here'

# For DeepSeek
export DEEPSEEK_API_KEY='your-deepseek-api-key-here'

2. Terminal Mode (No API Key Required)

In this mode, DuckTape operates as a traditional command-line interface (CLI) where you can directly execute commands without requiring any API keys.

Example Command

Create a calendar event using Terminal Mode:

ducktape calendar create "Team Meeting" 2025-04-15 10:00 11:00 "Work"

Try It Out

Let's try a simple natural language command:

Terminal
$ ducktape
Welcome to DuckTape! How can I assist you today?
$ schedule a meeting with John tomorrow at 2pm
Creating calendar event "Meeting with John" for tomorrow at 2:00 PM...
Event created successfully!
$ |

Next Steps

Explore Calendar Commands

Learn how to create, edit, and manage calendar events using both natural language and CLI commands.

Read more

Set Up Reminders

Create and manage reminders with natural language prompts and stay on top of your tasks.

Read more

Zoom Integration

Learn how to add Zoom meetings to your calendar events automatically.

Read more