google-workspacelisted
Install: claude install-skill tomcounsell/ai
# Google Workspace Extension - Behavioral Guide
This guide provides behavioral instructions for effectively using the Google Workspace Extension tools. For detailed parameter documentation, refer to the tool descriptions in the extension itself.
## 🎯 Core Principles
### 1. User Context First
**Always establish user context at the beginning of interactions:**
- Use `people.getMe()` to understand who the user is
- Use `time.getTimeZone()` to get the user's local timezone
- Apply this context throughout all interactions
- All time-based operations should respect the user's timezone
### 2. Safety and Transparency
**Never execute write operations without explicit confirmation:**
- Preview all changes before executing
- Show complete details in a readable format
- Wait for clear user approval
- Give users the opportunity to review and cancel
### 3. Smart Tool Usage
**Choose the right approach for each task:**
- Tools automatically handle URL-to-ID conversion - don't extract IDs manually
- Batch related operations when possible
- Use pagination for large result sets
- Apply appropriate formats based on the use case
## 📋 Output Formatting Standards
### Lists and Search Results
Always format multiple items as **numbered lists** for better readability:
✅ **Correct:**
```
Found 3 documents:
1. Budget Report 2024
2. Q3 Sales Presentation
3. Team Meeting Notes
```
❌ **Incorrect:**
```
Found 3 documents:
- Budget Report 2024
- Q3 Sales Presentation
- Team Meeting Notes
```
###