Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add naoterumaker/openclaw-gog-skills --skill google-sheets-opsgit clone --depth 1 https://github.com/naoterumaker/openclaw-gog-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/google-sheets-ops)<a href="https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/google-sheets-ops"><img src="https://agentmods.dev/badge/skills/naoterumaker/openclaw-gog-skills/google-sheets-ops/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/google-sheets-ops"><img src="https://agentmods.dev/badge/skills/naoterumaker/openclaw-gog-skills/google-sheets-ops.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00127 | $0.02676 |
| Opus 5 | $0.00063 | $0.01338 |
| Sonnet 5 | $0.00025 | $0.00535 |
| Haiku 4.5 | $0.00013 | $0.00268 |
Grade A, and why
google-sheets-ops scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 315 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Google Sheets 操作スキル (gog v0.10.0)
gog CLI を使ってGoogle スプレッドシートを操作する。
実行パス: gog
Execution Notes
execツールで実行時、timeout: 60を指定- 大量データ書き込みは分割して実行
絶対に守るルール
1. セル区切りはパイプ |、行区切りはカンマ ,
# ✅ 正しい:1行に3セル
gog sheets update "$ID" "シート1!A1:C1" "値1|値2|値3"
# ✅ 正しい:2行×3列
gog sheets update "$ID" "シート1!A1:C2" "行1列1|行1列2|行1列3,行2列1|行2列2|行2列3"
# ❌ 間違い:スペース区切りは全部1セルに入る
gog sheets update "$ID" "シート1!A1" "値1" "値2" "値3"
2. カンマ・パイプを含むデータは --values-json
gog sheets update "$ID" "シート1!A1:C2" --values-json '[
["名前", "金額", "備考"],
["田中", "500,000", "特記|なし"]
]'
3. 複数タブは create 時に --sheets で全部作る
gog sheets create "タイトル" --sheets "タブ1,タブ2,タブ3"
⚠️ gogにタブの後追加・削除・リネーム機能はない
4. 操作前にメタデータ確認
gog sheets metadata "$ID" # シート名を確認(日本語ロケールでは「シート1」)
5. 書き込み後は確認
gog sheets get "$ID" "シート1!A1:C2" --json
コマンドリファレンス
読み取り: get
gog sheets get <spreadsheetId> <range>
# 例
gog sheets get "$ID" "シート1!A1:C10"
gog sheets get "$ID" "シート1!A:A" # A列全体
gog sheets get "$ID" "シート1!1:1" # 1行目全体
gog sheets get "$ID" "シート1" --json # JSON出力
書き込み: update
gog sheets update <spreadsheetId> <range> <values>
# オプション
--input="USER_ENTERED" # 数式・日付を解釈(デフォルト)
--input="RAW" # そのまま文字列として入力
--values-json='[[...]]' # JSON形式で値指定
--copy-validation-from="Sheet1!A2" # データ検証をコピー
例:
# 単一行
gog sheets update "$ID" "シート1!A1:C1" "名前|部署|役職"
# 複数行
gog sheets update "$ID" "シート1!A2:C4" "田中|営業|主任,佐藤|開発|リーダー,鈴木|総務|担当"
# JSON形式(推奨:特殊文字を含む場合)
gog sheets update "$ID" "シート1!A1:B2" --values-json '[["項目","金額"],["売上","1,000,000"]]'
# 数式
gog sheets update "$ID" "シート1!D2" "=SUM(B2:C2)"
追加: append
gog sheets append <spreadsheetId> <range> <values>
# 例:シート末尾に行追加
gog sheets append "$ID" "シート1" "新しい|データ|行"
クリア: clear
gog sheets clear <spreadsheetId> <range>
# 例
gog sheets clear "$ID" "シート1!A2:C100"
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 315 lines · 127 tokens per session scan A e48850171298
google-sheets-ops is a skill published in the GitHub repository naoterumaker/openclaw-gog-skills (4 stars, last pushed 6mo ago), licensed MIT. It adds 127 tokens to every session and 2,676 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
dcf-model
Build discounted cash flow valuation workbooks in Excel.
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
google-drive-sheets
Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
large-file-parquet-analysis-and-highlight
A workflow for processing large Excel workbooks by counting their rows, converting them to Parquet when needed, and finding maximum values. Parquet is a data-file format designed for efficient reading.
excel-basic-statistics-and-routing
An Excel workflow for filtering grouped data, calculating averages, extracting row ranges, removing duplicates, and adding totals.