Google Sheets Reporting
/install google-sheets-reporting
Google Sheets Reporting
Automated reporting and alerting from any Google Sheets data. Get daily summaries, threshold-based alerts, and weekly digest emails without building dashboards.
Problem
Teams store operational data in Google Sheets but lack automated reporting. Checking sheets manually is tedious, and important changes (threshold violations, trends) go unnoticed until it's too late.
This skill turns any Google Sheet into an automated reporting system with zero code changes.
What It Does
- Daily Summary — Auto-detects numeric columns, calculates sum/avg/min/max, emails formatted report
- Threshold Alerts — Checks values against configurable min/max thresholds hourly, sends alert emails when violated
- Weekly Digest — Multi-sheet summary every Monday with period-over-period comparison
Included Workflows
| # | File | Purpose |
|---|---|---|
| 01 | 01-daily-summary.json |
Daily aggregate statistics email for any sheet |
| 02 | 02-threshold-alerts.json |
Hourly threshold monitoring with alert emails |
| 03 | 03-weekly-digest.json |
Weekly multi-sheet digest email (Monday 9AM) |
Architecture
Daily (once):
|
v
Workflow 01: Daily Summary
+-> Read sheet data
+-> Auto-detect numeric columns
+-> Calculate sum, avg, min, max
+-> Count categories in first text column
+-> Email formatted report
Hourly:
|
v
Workflow 02: Threshold Alerts
+-> Read sheet data
+-> Check each value against thresholds
+-> IF violations found -> email alert
+-> Thresholds configurable via env variable
Weekly (Monday 9AM):
|
v
Workflow 03: Weekly Digest
+-> Read primary + secondary sheets in parallel
+-> Summarize both sheets
+-> Email combined digest
Required n8n Credentials
| Credential Type | Used For | Placeholder in JSON |
|---|---|---|
| Google Sheets OAuth2 | Reading sheet data | YOUR_GOOGLE_SHEETS_CREDENTIAL_ID |
| SMTP | Sending reports and alerts | YOUR_SMTP_CREDENTIAL_ID |
Configuration Placeholders
| Placeholder | Description |
|---|---|
YOUR_REPORT_SHEET_ID |
Google Sheet ID to monitor |
YOUR_GOOGLE_SHEETS_CREDENTIAL_ID |
n8n Google Sheets credential ID |
YOUR_SMTP_CREDENTIAL_ID |
n8n SMTP credential ID |
YOUR_NOTIFICATION_EMAIL |
Email for reports and alerts |
Environment Variables
# Required
[email protected]
# Optional: Threshold configuration (JSON)
ALERT_THRESHOLDS='{"revenue":{"min":100,"max":null,"label":"Revenue"},"error_count":{"min":null,"max":10,"label":"Errors"}}'
Threshold Configuration
Thresholds are configured via the ALERT_THRESHOLDS environment variable as JSON:
{
"column_name": {
"min": 100,
"max": null,
"label": "Display Name"
}
}
min— Alert if value falls below this (setnullto disable)max— Alert if value exceeds this (setnullto disable)label— Human-readable name for alert emails
Quick Start
1. Prerequisites
- n8n v2.4+ (self-hosted)
- Google Sheets OAuth2 credentials
- SMTP email credentials
- A Google Sheet with data (any structure works)
2. Import & Configure
Import all 3 JSON files into n8n. Replace YOUR_REPORT_SHEET_ID with your sheet's ID and set credential placeholders.
3. Customize Sheet Names
Edit the Google Sheets nodes to match your tab names (default: "Data" and "Sheet2").
4. Set Thresholds
Configure ALERT_THRESHOLDS env var for your columns, or edit the Code node defaults directly.
5. Activate
Activate all 3 workflows. You'll receive your first daily summary within 24 hours.
Use Cases
- Sales teams — Daily revenue summaries and low-sales alerts from order sheets
- Support teams — Ticket count monitoring with escalation alerts
- Marketing — Campaign performance digests from tracking sheets
- Operations — Inventory level alerts and daily status reports
- Finance — Expense monitoring with budget threshold alerts
Requirements
- n8n v2.4+ (self-hosted or cloud)
- Google Sheets OAuth2 credentials
- SMTP email credentials
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install google-sheets-reporting - 安装完成后,直接呼叫该 Skill 的名称或使用
/google-sheets-reporting触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Google Sheets Reporting 是什么?
Automated reporting and alerts from Google Sheets data. Daily summaries with auto-detected metrics, configurable threshold alerts, and weekly multi-sheet dig... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 368 次。
如何安装 Google Sheets Reporting?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install google-sheets-reporting」即可一键安装,无需额外配置。
Google Sheets Reporting 是免费的吗?
是的,Google Sheets Reporting 完全免费(开源免费),可自由下载、安装和使用。
Google Sheets Reporting 支持哪些平台?
Google Sheets Reporting 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。
谁开发了 Google Sheets Reporting?
由 Muhammad H.M. Alvi(@mhmalvi)开发并维护,当前版本 v1.0.1。