スキル一覧に戻る
ArtyMcLabin

google-sheets

by ArtyMcLabin

clone it (or unpack) , into: ~/.claude (windows: C:\Users\<username>\.claude )

1🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: google-sheets description: Google Sheets browser automation pitfalls and workarounds. Use when automating Sheets via browser (clicking, typing, navigating cells). Not needed for rclone/CLI/MCP access.

Google Sheets Browser Automation

Keyboard Shortcuts (Sheets ≠ Excel)

  • Ctrl+G does NOT work (that's Excel)
  • Navigate to cell: Accessibility → Go to range (most reliable), or Name Box click + type ref
  • Tab danger: Escapes grid, cycles browser UI
  • Arrow keys safer than Tab

Accessibility Menu (Preferred for Automation)

FeatureUse
Go to rangeNavigate to cell - preferred over Name Box
SelectionVerify current selection
Focus toolbarReset when lost in UI

Verification Protocol

  1. Screenshot after every structural change
  2. Verify Name Box shows expected cell before typing
  3. Never chain 5+ keyboard actions without screenshot
  4. If something seems off - STOP and screenshot

Reliable Alternatives

  • Accessibility → Go to range - Most reliable navigation
  • JavaScript cell manipulation - Direct DOM access
  • Batch data - Download CSV, modify, re-upload

Common Failures

  • Name Box misclick → typed ref becomes cell data ("A12" as content)
  • Tab spam → escapes grid
  • No verification → compounding errors

Special Characters

Values starting with +, -, =, @ → formula interpretation → #ERROR! Fix: Prefix with apostrophe: '+972... displays as +972...

Sheet Tab Bar

Bottom tab clicks unreliable. Use JavaScript contextmenu event dispatch instead.

Execution Rules

  • AUTO: Navigate, read, verification screenshots
  • ASK FIRST: Write operations (cell entry, insert, paste)
  • Abort: 2+ consecutive failures → STOP and report

スコア

総合スコア

35/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です