> ## Documentation Index
> Fetch the complete documentation index at: https://docs.liteclaw.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Usage

> Daily use patterns and conversation examples.

# Daily Usage

Common patterns for getting the most out of Lite Claw.

## Morning Routine

Start your day by checking what's ahead:

```
What's on my calendar today?
```

```
Any important emails I should know about?
```

```
What's the weather today?
```

Or enable the morning briefing to get this automatically:

```
/heartbeats morning on
```

***

## Calendar

### Reading Events

```
What's on my calendar tomorrow?
```

```
What do I have this week?
```

```
Am I free Friday afternoon?
```

```
When is my next meeting with Sarah?
```

### Creating Events

When you ask to create an event, the bot will parse your request and ask for confirmation:

<CodeGroup>
  ```text Request theme={null}
  Schedule dentist Friday 2pm for 1 hour
  ```

  ```text Response theme={null}
  I'll create this event:
  Title: Dentist
  When: Friday, Feb 14, 2:00pm - 3:00pm
  Calendar: Personal (Google)

  Reply YES 847291 to confirm, or NO to cancel.
  ```

  ```text Confirm theme={null}
  YES 847291
  ```

  ```text Result theme={null}
  Done! Added to your calendar.
  ```
</CodeGroup>

#### Tips for Event Creation

Be specific to reduce clarification:

| Instead of...      | Try...                                                       |
| ------------------ | ------------------------------------------------------------ |
| "Add meeting"      | "Schedule team standup Monday 9am for 30 minutes"            |
| "Dentist tomorrow" | "Schedule dentist tomorrow 2pm for 1 hour at Mission Dental" |
| "Lunch with Alex"  | "Schedule lunch with Alex Friday 12:30pm at Oren's Hummus"   |

The bot handles:

* Relative dates: "tomorrow", "next Monday", "this Friday"
* Durations: "for 30 minutes", "for 2 hours"
* Locations: "at Mission Dental", "at 123 Main St"

***

## Email

Gmail integration is read-only for security.

### Checking Email

```
Any important emails?
```

```
What emails did I get today?
```

```
Any emails from my boss?
```

```
Summarize my unread emails
```

The bot summarizes email subjects and senders without exposing full message bodies by default.

***

## Weather

### Current and Forecast

```
What's the weather?
```

```
What's the weather tomorrow?
```

```
Will it rain this weekend?
```

```
What's the forecast for the week?
```

### Different Locations

```
What's the weather in Tokyo?
```

The default location is set via `/integrations weather <location>`.

***

## Heartbeats

Automated messages at scheduled times.

### Morning Briefing

Delivered at 7am (your timezone) and includes:

* Today's weather forecast
* Today's calendar events
* Email highlights (unread count, important senders)

Enable with:

```
/heartbeats morning on
```

### Weekly Review

Delivered Sunday at 6pm (your timezone) and includes:

* Summary of the past week
* Preview of the upcoming week
* Any overdue items

Enable with:

```
/heartbeats weekly on
```

***

## Managing Integrations

### Check Status

```
/integrations
```

Shows what's connected and configured.

### Reconnect After Issues

If an integration stops working:

```
/integrations disconnect calendar
/integrations connect calendar
```

Complete the OAuth flow again in your browser.

### Change Weather Location

```
/integrations weather New York, NY
```

***

## Conversation Patterns

### Quick Questions

For simple queries, just ask naturally:

```
What time is my first meeting tomorrow?
```

```
Is it going to rain today?
```

```
How many unread emails do I have?
```

### Multi-Step Tasks

For complex requests, the bot may ask clarifying questions:

<CodeGroup>
  ```text Request theme={null}
  Schedule a recurring team meeting
  ```

  ```text Clarification theme={null}
  I can help schedule that. What day and time would you like the meeting?
  ```

  ```text Response theme={null}
  Every Monday at 10am for 1 hour
  ```

  ```text Confirmation theme={null}
  I'll create this recurring event:
  Title: Team meeting
  When: Every Monday at 10:00am
  Duration: 1 hour

  Reply YES 293847 to confirm, or NO to cancel.
  ```
</CodeGroup>

### Canceling Actions

If you change your mind after seeing the confirmation:

```
NO
```

Response: "Cancelled. No changes were made."

***

## Tips

<AccordionGroup>
  <Accordion title="Be specific with dates and times">
    "Friday 2pm" works better than "soon" or "sometime this week"
  </Accordion>

  <Accordion title="Include duration for events">
    "for 30 minutes" or "for 1 hour" prevents the bot from guessing
  </Accordion>

  <Accordion title="Use the morning briefing">
    Instead of checking manually each day, let heartbeats do it for you
  </Accordion>

  <Accordion title="Double-check confirmations">
    The preview shows exactly what will be created — review it before confirming
  </Accordion>
</AccordionGroup>
