Files
AutoGPT/docs/platform/blocks/google/sheet.md
Nicholas Tindle a318832414 feat(docs): update dev from gitbook changes (#11740)
<!-- Clearly explain the need for these changes: -->
gitbook branch has changes that need synced to dev
### Changes 🏗️
Pull changes from gitbook into dev
<!-- Concisely describe all of the changes made in this pull request:
-->

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> Migrates documentation to GitBook and removes the old MkDocs setup.
> 
> - Removes MkDocs configuration and infra: `docs/mkdocs.yml`,
`docs/netlify.toml`, `docs/overrides/main.html`,
`docs/requirements.txt`, and JS assets (`_javascript/mathjax.js`,
`_javascript/tablesort.js`)
> - Updates `docs/content/contribute/index.md` to describe GitBook
workflow (gitbook branch, editing, previews, and `SUMMARY.md`)
> - Adds GitBook navigation file `docs/platform/SUMMARY.md` and a new
platform overview page `docs/platform/what-is-autogpt-platform.md`
> 
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
e7e118b5a8. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Documentation**
* Updated contribution guide for new documentation platform and workflow
  * Added new platform overview and navigation documentation

* **Chores**
  * Removed MkDocs configuration and related dependencies
  * Removed deprecated JavaScript integrations and deployment overrides

<sub>✏️ Tip: You can customize this high-level summary in your review
settings.</sub>

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 19:22:05 +00:00

2.2 KiB

Google Sheets Read

What it is

A block that reads data from a Google Sheets spreadsheet.

What it does

This block retrieves information from a specified range within a Google Sheets spreadsheet.

How it works

The block connects to Google Sheets using provided credentials, then fetches data from the specified spreadsheet and range.

Inputs

Input Description
Credentials Authentication information required to access Google Sheets
Spreadsheet ID The unique identifier of the spreadsheet you want to read from
Range The specific area of the spreadsheet you want to read (e.g., "Sheet1!A1:B2")

Outputs

Output Description
Result The data retrieved from the spreadsheet, organized in rows and columns
Error Any error message that occurred during the process

Possible use case

A marketing team could use this block to automatically retrieve the latest campaign performance data from a shared Google Sheets document for analysis and reporting.


Google Sheets Write

What it is

A block that writes data to a Google Sheets spreadsheet.

What it does

This block allows you to input data into a specified range within a Google Sheets spreadsheet.

How it works

The block authenticates with Google Sheets using provided credentials, then updates the specified spreadsheet range with the given data.

Inputs

Input Description
Credentials Authentication information required to access Google Sheets
Spreadsheet ID The unique identifier of the spreadsheet you want to write to
Range The specific area of the spreadsheet where you want to write data (e.g., "Sheet1!A1:B2")
Values The data you want to write to the spreadsheet, organized in rows and columns

Outputs

Output Description
Result Information about the write operation, such as the number of cells, columns, and rows updated
Error Any error message that occurred during the process

Possible use case

An automated inventory system could use this block to update stock levels in a Google Sheets spreadsheet whenever products are sold or restocked, ensuring real-time inventory tracking.