Quick Start Examples

Automatic Recording

1

Calendar Integration

# Connect your calendar
1. Go to Settings > Integrations
2. Click "Connect Calendar"
3. Select Google Calendar/Outlook
4. Grant permissions
2

Recording Rules

# Example recording rule
match:
  title: "Customer Meeting"
  participants: "*@clientdomain.com"
actions:
  record: true
  transcribe: true
  notify: true
3

Test Recording

# Schedule a test meeting
1. Create calendar event
2. Add test participants
3. Verify bot joins
4. Check recording

Summary Generation

Quick Summary

Instant meeting overview

Detailed Analysis

In-depth insights

Summary Examples

// Quick Summary Request
{
  "meetingId": "m123",
  "summaryType": "quick",
  "format": "bullet",
  "focus": ["decisions", "actions"]
}

// Detailed Analysis Request
{
  "meetingId": "m123",
  "summaryType": "detailed",
  "sections": [
    "overview",
    "keyPoints",
    "nextSteps",
    "sentiment"
  ]
}

Real-World Scenarios

Customer Meeting

Team Standup

Always inform participants about recording and get consent where required.

# Standup Configuration
meeting:
  type: "Daily Standup"
  duration: "15m"
  recording:
    audio: true
    transcription: true
  summary:
    format: "structured"
    sections:
      - updates
      - blockers
      - plans

Advanced Usage

Custom Templates

# Product Review Template
template:
  name: "Product Review"
  sections:
    - feature feedback
    - bug reports
    - user experience
    - performance
  signals:
    - priority items
    - trending issues
    - satisfaction metrics

Integration Examples

CRM Integration

crm:
  platform: "Salesforce"
  sync:
    - meeting notes
    - action items
    - follow-ups

Project Tools

jira:
  create:
    - tasks
    - bugs
    - features

Best Practices

Recording Quality

1

Audio Setup

  • Use good microphone
  • Quiet environment
  • Test audio levels
2

Meeting Structure

  • Clear agenda
  • Speaker identification
  • Regular pauses
3

Summary Focus

  • Key points first
  • Clear action items
  • Specific assignments

Troubleshooting Examples

Performance Tips

Optimization Examples

# Recording Optimization
quality:
  audio: "high"
  compression: "smart"
  storage: "efficient"

# Summary Optimization
processing:
  priority: "realtime"
  cache: true
  batch: false

Regular template updates improve summary quality and relevance.

Custom Workflows

Example Pipeline

Create workflow templates for recurring meeting types.

These examples can be customized based on your specific needs and use cases.