Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ The extension provides the following tools:
- `docs.getSuggestions`: Retrieves suggested edits from a Google Doc.
- `docs.getComments`: Retrieves comments from a Google Doc.
- `docs.writeText`: Writes text to a Google Doc at a specified position.
- `docs.find`: Finds Google Docs by searching for a query in their title.
- `docs.move`: Moves a document to a specified folder.
- `docs.getText`: Retrieves the text content of a Google Doc.
- `docs.replaceText`: Replaces all occurrences of a given text with new text in
a Google Doc.
Expand All @@ -30,7 +28,6 @@ The extension provides the following tools:
### Google Slides

- `slides.getText`: Retrieves the text content of a Google Slides presentation.
- `slides.find`: Finds Google Slides presentations by searching for a query.
- `slides.getMetadata`: Gets metadata about a Google Slides presentation.
- `slides.getImages`: Downloads all images embedded in a Google Slides
presentation to a local directory.
Expand All @@ -42,7 +39,6 @@ The extension provides the following tools:
- `sheets.getText`: Retrieves the content of a Google Sheets spreadsheet.
- `sheets.getRange`: Gets values from a specific range in a Google Sheets
spreadsheet.
- `sheets.find`: Finds Google Sheets spreadsheets by searching for a query.
- `sheets.getMetadata`: Gets metadata about a Google Sheets spreadsheet.

### Google Drive
Expand Down
27 changes: 27 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Release Notes

## 0.0.7 (2026-03-11)

### Breaking Changes

- **Google Sheets**: Removed `sheets.find` tool. Use `drive.search` with MIME
type filter instead (e.g.,
`mimeType='application/vnd.google-apps.spreadsheet'`).
- **Google Slides**: Removed `slides.find` tool. Use `drive.search` with MIME
type filter instead (e.g.,
`mimeType='application/vnd.google-apps.presentation'`).

### Improvements

- **Skills**: Renamed all skill directories to `google-*` prefix (e.g.,
`calendar` → `google-calendar`) to avoid slash command conflicts.
- **Calendar Skill**: Added explicit `calendarId='primary'` mandate to prevent
agents from omitting the required parameter.

### Skills

- **Sheets Skill**: New skill with `drive.search` guidance for finding
spreadsheets.
- **Slides Skill**: New skill with `drive.search` guidance for finding
presentations.
- **Docs Skill**: Updated with `drive.search` guidance and removed stale
`docs.find`/`docs.move` references from skill and documentation.

## 0.0.6 (2026-03-08)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-workspace",
"version": "0.0.6",
"version": "0.0.7",
"contextFileName": "workspace-server${/}WORKSPACE-Context.md",
"mcpServers": {
"google-workspace": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gemini-workspace-extension",
"version": "0.0.6",
"version": "0.0.7",
"description": "Google Workspace Server Extension",
"private": true,
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion workspace-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workspace-server",
"version": "0.0.6",
"version": "0.0.7",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand Down
Loading