Skills Overview¶
ExtraSuite provides skills that enable AI agents to work with Google Workspace applications. Each skill is a set of instructions and utilities that teach your AI agent how to interact with specific Google services.
Available Skills¶
| Skill | Status | Description |
|---|---|---|
| Google Sheets | Stable | Read, write, and manipulate spreadsheets |
| Google Docs | Alpha | Create and edit documents |
| Google Slides | Alpha | Build presentations |
What is a Skill?¶
A skill is a package that contains:
- SKILL.md - Instructions for the AI agent
- Utility scripts - Python code for common operations
- Requirements - Dependencies needed to run the skill
- Authentication helpers - Token management and verification
When your AI agent encounters a task related to a skill (like working with a spreadsheet), it reads the skill instructions and uses the provided utilities.
How Skills Work¶
graph LR
A[User Prompt] --> B[AI Agent]
B --> C{Skill Detected?}
C -->|Yes| D[Load Skill Instructions]
D --> E[Execute Skill Code]
E --> F[Google Workspace API]
F --> G[Return Results]
C -->|No| H[Normal Response]
1. Detection¶
The AI agent recognizes when a skill is needed based on:
- URLs in the prompt (e.g., Google Sheets URL)
- Keywords (e.g., "spreadsheet", "document")
- Explicit skill references
2. Loading¶
The agent reads the SKILL.md file to understand:
- How to initialize the environment
- What functions are available
- Best practices and patterns
3. Execution¶
The agent writes and runs Python code using:
- Custom utilities (e.g.,
gsheet_utils.py) - Standard libraries (e.g.,
gspread) - ExtraSuite authentication
4. Results¶
The agent interprets results and responds to your request.
Skill Installation Location¶
Skills are installed in platform-specific directories:
| Platform | Location |
|---|---|
| Claude Code | ~/.claude/skills/gsheets/ |
| Codex CLI | ~/.codex/skills/gsheets/ |
| Gemini CLI | ~/.gemini/skills/gsheets/ |
| Cursor | ~/.cursor/skills/gsheets/ |
Skill Components¶
Each skill directory contains:
gsheets/
├── SKILL.md # Agent instructions
├── checks.py # Environment verification
├── verify_access.py # Access verification
├── gsheet_utils.py # Utility functions
├── requirements.txt # Python dependencies
└── venv/ # Virtual environment (created on first use)
SKILL.md¶
The main instruction file that tells the AI agent:
- How to initialize the environment
- What workflow to follow
- Available functions and their usage
- Best practices and error handling
checks.py¶
Verifies the environment is set up correctly:
- Python version
- Virtual environment
- Required packages
- Network connectivity
verify_access.py¶
Confirms access to a specific spreadsheet:
- Tests authentication
- Verifies sharing permissions
- Provides troubleshooting guidance
gsheet_utils.py¶
Custom utility functions that extend standard libraries:
open_sheet()- Opens spreadsheet with authenticationget_shape()- Analyzes table structurehas_table()- Checks for defined tablesconvert_to_table()- Creates tables from ranges
Skill Updates¶
Skills are updated when you re-run the install command from ExtraSuite:
This downloads the latest version of all skills.
Troubleshooting¶
Skill Not Recognized¶
If your AI agent doesn't recognize the skill:
-
Verify the skill is installed:
-
Check the skill content:
-
Try explicitly referencing the skill in your prompt:
Environment Issues¶
If the skill fails to run:
-
Run the checks script:
-
Verify Python is installed:
-
Recreate the virtual environment:
Authentication Issues¶
If authentication fails:
-
Run the verification script:
-
Clear cached tokens:
-
Re-authenticate via the ExtraSuite website