ワンクリックで
google-sheets-skill
Read, write, and append data to Google Sheets spreadsheets. Supports cell ranges, formulas, and batch operations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read, write, and append data to Google Sheets spreadsheets. Supports cell ranges, formulas, and batch operations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-sheets-skill |
| description | Read, write, and append data to Google Sheets spreadsheets. Supports cell ranges, formulas, and batch operations. |
| allowed-tools | google_sheets |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Read and write data to Google Sheets spreadsheets.
Consolidated Google Sheets tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
read | Read data from a range | spreadsheet_id, range |
write | Write data to a range | spreadsheet_id, range, values |
append | Append rows to a table | spreadsheet_id, range, values |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "read" |
| spreadsheet_id | string | Yes | Spreadsheet ID from URL |
| range | string | Yes | A1 notation range (e.g., "Sheet1!A1:D10") |
How to find Spreadsheet ID:
From URL: https://docs.google.com/spreadsheets/d/SPREADSHEET_ID/edit
Range Notation (A1):
Sheet1!A1:D10 - Specific range on Sheet1Sheet1!A:D - Entire columns A through DSheet1!1:10 - Rows 1 through 10A1:D10 - Default sheet, specific rangeSheet1 - Entire sheetExample:
{
"operation": "read",
"spreadsheet_id": "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms",
"range": "Sheet1!A1:E10"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "write" |
| spreadsheet_id | string | Yes | Spreadsheet ID |
| range | string | Yes | A1 notation range |
| values | array | Yes | 2D array of values |
| value_input_option | string | No | "USER_ENTERED" or "RAW" (default: USER_ENTERED) |
Example - Write data:
{
"operation": "write",
"spreadsheet_id": "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms",
"range": "Sheet1!A1:C3",
"values": [
["Name", "Score", "Grade"],
["Alice", 95, "A"],
["Bob", 87, "B"]
]
}
Example - Write formula:
{
"operation": "write",
"spreadsheet_id": "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms",
"range": "Sheet1!D2",
"values": [["=SUM(B2:C2)"]],
"value_input_option": "USER_ENTERED"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "append" |
| spreadsheet_id | string | Yes | Spreadsheet ID |
| range | string | Yes | Table range (e.g., "Sheet1!A:E") |
| values | array | Yes | 2D array of rows to append |
| value_input_option | string | No | "USER_ENTERED" or "RAW" (default: USER_ENTERED) |
| insert_data_option | string | No | "INSERT_ROWS" or "OVERWRITE" (default: INSERT_ROWS) |
Example:
{
"operation": "append",
"spreadsheet_id": "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms",
"range": "Sheet1!A:E",
"values": [
["Charlie", "charlie@example.com", "Sales", "2024-02-01", "Active"],
["Diana", "diana@example.com", "HR", "2024-02-15", "Active"]
]
}
| Formula | Description |
|---|---|
=SUM(A1:A10) | Sum of range |
=AVERAGE(B1:B10) | Average of range |
=COUNT(A:A) | Count numbers in column |
=COUNTA(A:A) | Count non-empty cells |
=VLOOKUP(E1,A:C,2,FALSE) | Vertical lookup |
=IF(A1>90,"A","B") | Conditional logic |
=TODAY() | Current date |
=NOW() | Current date and time |
USER_ENTERED for formulas to workinput-tools handle