数据分析

Google Sheets

试用

Google Sheets (workspace.google.com). Use this skill for ANY Google Sheets request — reading, creating, updating, and deleting data. Whenever a task involves Google Sheets, use this skill instead of calling the API directly.

它能做什么

Operate **Google Sheets** through your OOMOL-connected account. This skill calls the connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.

技能文档

Google Sheets

Operate Google Sheets through your OOMOL-connected account. This skill calls the googlesheets connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.

Running an action

Assume the user has already installed the oo CLI, signed in, and connected Google Sheets. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.

1. Inspect the contract to get the authoritative input/output schema before building a payload:

oo connector schema "googlesheets" --action ""

2. Run the action with a JSON payload that matches the input schema:

oo connector run "googlesheets" --action "" --data '' --json
  • --data takes a JSON object string or @path/to/file.json; omit it to send {}.
  • The response is { "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.

Each action is listed below with a one-line description; actions that change state carry a [write] or [destructive] tag. Before constructing --data, fetch the action's live schema with oo connector schema to get its authoritative input fields.

Available actions

  • add_sheet — Add a new sheet through spreadsheets.batchUpdate and return stable batch replies. [write]
  • aggregate_column_data — Aggregate numeric values from a target column, optionally filtered by another column, with stable counters.
  • append_dimension — Append rows or columns through spreadsheets.batchUpdate and return stable batch replies. [write]
  • auto_resize_dimensions — Auto-resize rows or columns through spreadsheets.batchUpdate and return stable batch replies. [write]
  • batch_clear_values_by_data_filter — Clear spreadsheet values through values.batchClearByDataFilter and return the cleared ranges. [destructive]
  • batch_get — Read multiple spreadsheet ranges through values:batchGet and return stable valueRanges output.
  • batch_update_values_by_data_filter — Write spreadsheet values through values.batchUpdateByDataFilter and return stable aggregate counters. [write]
  • clear_basic_filter — Clear a basic filter through spreadsheets.batchUpdate and return stable batch replies. [destructive]
  • clear_values — Clear a single spreadsheet value range through values.clear and return the cleared A1 range. [destructive]
  • create_chart — Create a chart through spreadsheets.batchUpdate and return stable batch replies. [write]
  • create_google_sheet1 — Create a Google Sheets spreadsheet and return stable spreadsheet metadata for the new file. [write]
  • create_spreadsheet_column — Insert an empty column into a sheet through spreadsheets.batchUpdate with stable top-level fields. [write]
  • create_spreadsheet_row — Insert an empty row into a sheet through spreadsheets.batchUpdate with stable top-level fields. [write]
  • delete_dimension — Delete rows or columns through spreadsheets.batchUpdate and return stable batch replies. [destructive]
  • delete_sheet — Delete a sheet through spreadsheets.batchUpdate and return stable batch replies. [destructive]
  • find_replace — Run find and replace through spreadsheets.batchUpdate and return stable batch replies. [write]
  • format_cell — Format cells through spreadsheets.batchUpdate and return stable batch replies. [write]
  • get_conditional_format_rules — Read spreadsheet conditional formatting rules and project them into a stable per-sheet structure.
  • get_data_validation_rules — Read spreadsheet data validation rules from the minimum necessary sheet ranges and return flattened rule entries.
  • get_sheet_names — List visible or all sheet names from a spreadsheet and include a stable name-to-sheetId map.
  • get_spreadsheet_by_data_filter — Read spreadsheet metadata through spreadsheets.getByDataFilter and return the normalized spreadsheet payload.
  • get_spreadsheet_info — Read spreadsheet metadata through spreadsheets.get with optional ranges and grid data flags.
  • insert_dimension — Insert rows or columns through spreadsheets.batchUpdate and return stable batch replies. [write]
  • lookup_spreadsheet_row — Find the first row where a cell exactly matches the query and return a stable found/rowData payload.
  • mutate_conditional_format_rules — Mutate conditional format rules through spreadsheets.batchUpdate and return stable batch replies. [write]
  • search_developer_metadata — Search spreadsheet developer metadata via developerMetadata:search and return matched entries only.
  • search_spreadsheets — Search Google Sheets files in Drive with spreadsheet-only filters and normalized summary output.
  • set_basic_filter — Set a basic filter through spreadsheets.batchUpdate and return stable batch replies. [write]
  • set_data_validation_rule — Set or clear data validation through spreadsheets.batchUpdate and return stable batch replies. [write]
  • spreadsheets_sheets_copy_to — Copy a sheet to another spreadsheet through sheets.copyTo and return a stable copiedSheet payload. [write]
  • spreadsheets_values_append — Append values through values.append and flatten the nested updates payload into stable top-level fields. [write]
  • spreadsheets_values_batch_clear — Clear multiple spreadsheet value ranges through values.batchClear and return cleared ranges only. [destructive]
  • spreadsheets_values_batch_get_by_data_filter — Read spreadsheet values through values:batchGetByDataFilter and return matched value ranges with their filters.
  • update_dimension_properties — Update row or column properties through spreadsheets.batchUpdate and return stable batch replies. [write]
  • update_sheet_properties — Update a sheet's properties through spreadsheets.batchUpdate and return stable batch replies. [write]
  • update_spreadsheet_properties — Update spreadsheet-level properties through spreadsheets.batchUpdate and return stable batch replies. [write]
  • update_values_batch — Write multiple spreadsheet value ranges through values.batchUpdate and return stable aggregate counters. [write]
  • upsert_rows — Upsert rows by key while preserving uncovered columns, adding missing headers when needed, and returning stable counters. [write]
  • values_get — Read a single spreadsheet value range and return a stable ValueRange without a wrapper envelope.
  • values_update — Write a single spreadsheet value range through values.update and return stable update counters. [write]

Safety

  • Untagged actions are reads (get / list / search) — safe to run directly.
  • Actions tagged [write] change Google Sheets state — confirm the exact payload and effect with the user before running.
  • Actions tagged [destructive] remove or overwrite data — always confirm the target and get explicit approval first.

First-time setup

These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.

  • oo: command not found — install the oo CLI (other platforms: ):

    curl -fsSL https://cli.oomol.com/install.sh | bash    # macOS / Linux
    
    irm https://cli.oomol.com/install.ps1 | iex           # Windows PowerShell
    
  • Not signed in / authentication error — sign in to your OOMOL account once:

    oo auth login
    
  • scope_missing / credential_expired / app_not_ready / app_not_found — Google Sheets is not connected, or the connection expired or lacks a scope. Connect once (auth type: OAuth2) at:

    https://console.oomol.com/app-connections?provider=googlesheets
    
  • HTTP 402 / OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.

Resources

相关技能

通过托管 OAuth 访问 Microsoft Graph Excel 接口,读写 OneDrive 中的工作簿、工作表、区域、表格与图表。

作者 byungkyu800 次安装42 星标

以 AI 机器人身份加入视频会议,提供语音、虚拟形象与屏幕共享四种模式。

作者 johnpatternai21 次安装8 星标

把自然语言描述转为结构化 JSON,并由 mcp-diagram-generator MCP 服务生成 Draw.io、Mermaid 或 Excalidraw 图表文件。

作者 nssa.io1.0k 次安装47 星标

按用户明确指令,在得到大脑(Get笔记)中保存、搜索并管理笔记与知识库。

作者 iswalle763 次安装66 星标

诊断生产力系统反复失效的根因,给出最小干预——容量测算、瓶颈定位、可靠的本地记录。

作者 Iván2 次安装

oomol 的更多技能

浏览全部技能

GitHub (github.com). Use this skill for ANY GitHub request — reading, creating, updating, and deleting data. Whenever a task involves GitHub, use this skill instead of calling the API directly.

作者 oomol12 次安装

Excel (microsoft.com). Use this skill for ANY Excel request — reading, creating, updating, and deleting data. Whenever a task involves Excel, use this skill instead of calling the API directly.

作者 oomol14 次安装

Google Drive (workspace.google.com). Use this skill for ANY Google Drive request — reading, creating, updating, and deleting data. Whenever a task involves Google Drive, use this skill instead of calling the API directly.

作者 oomol10 次安装

Home Assistant (home-assistant.io). Use this skill for ANY Home Assistant request — reading, creating, updating, and deleting data. Whenever a task involves Home Assistant, use this skill instead of calling the API directly.

作者 oomol9 次安装

AgentMail (agentmail.to). Use this skill for ANY AgentMail request — reading, creating, updating, and deleting data. Whenever a task involves AgentMail, use this skill instead of calling the API directly.

作者 oomol10 次安装

Gitea (about.gitea.com). Use this skill for ANY Gitea request — reading, creating, updating, and deleting data. Whenever a task involves Gitea, use this skill instead of calling the API directly.

作者 oomol8 次安装