← 返回 Skills 市场
kowl64

Excel weekly dashboards at scale

作者 KOwl64 · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
5021
总下载
4
收藏
27
当前安装
1
版本数
在 OpenClaw 中安装
/install excel-weekly-dashboard
功能描述
Designs refreshable Excel dashboards (Power Query + structured tables + validation + pivot reporting). Use when you need a repeatable weekly KPI workbook that updates from files with minimal manual work.
使用说明 (SKILL.md)

Excel weekly dashboards at scale

PURPOSE

Designs refreshable Excel dashboards (Power Query + structured tables + validation + pivot reporting).

WHEN TO USE

  • TRIGGERS:
    • Build me a Power Query pipeline for this file so it refreshes weekly with no manual steps.
    • Turn this into a structured table with validation lists and clean data entry rules.
    • Create a pivot-driven weekly dashboard with slicers for year and ISO week.
    • Fix this Excel model so refresh does not break when new columns appear.
    • Design a reusable KPI pack that updates from a folder of CSVs.
  • DO NOT USE WHEN…
    • You need advanced forecasting/valuation modeling (this skill is for repeatable reporting pipelines).
    • You need a BI tool build (Power BI/Tableau) rather than Excel.
    • You need web scraping as the primary ingestion method.

INPUTS

  • REQUIRED:
    • Source data file(s): CSV, XLSX, DOCX-exported tables, or PDF-exported tables (provided by user).
    • Definition of ‘week’ (ISO week preferred) and the KPI fields required.
  • OPTIONAL:
    • Data dictionary / column definitions.
    • Known “bad data” patterns to validate (e.g., blank PayNumber, invalid dates).
    • Existing workbook to refactor.
  • EXAMPLES:
    • Folder of weekly CSV exports: exports/2026-W02/*.csv
    • Single XLSX dump with changing columns month to month

OUTPUTS

  • If asked for plan only (default): a step-by-step build plan + Power Query steps + sheet layout + validation rules.
  • If explicitly asked to generate artifacts:
    • workbook_spec.md (workbook structure and named tables)
    • power_query_steps.pq (M code template)
    • refresh-checklist.md (from assets/) Success = refresh works after adding a new week’s files without manual edits, and validation catches bad rows.

WORKFLOW

  1. Identify source type(s) (CSV/XLSX/DOCX/PDF-export) and the stable business keys (e.g., PayNumber).
  2. Define the canonical table schema:
    • required columns, types, allowed values, and “unknown” handling.
  3. Design ingestion with Power Query:
    • Prefer Folder ingest + combine, with defensive “missing column” handling.
    • Normalize column names (trim, case, collapse spaces).
  4. Design cleansing & validation:
    • Create a Data_Staging query (raw-normalized) and Data_Clean query (validated).
    • Add validation columns (e.g., IsValidPayNumber, IsValidDate, IssueReason).
  5. Build reporting layer:
    • Pivot table(s) off Data_Clean
    • Slicers: Year, ISOWeek; plus operational dimensions
  6. Add a “Refresh Status” sheet:
    • last refresh timestamp, row counts, query error flags, latest week present
  7. STOP AND ASK THE USER if:
    • required KPIs/columns are unspecified,
    • the source files don’t include any stable key,
    • week definition/timezone rules are unclear,
    • PDF/DOCX tables are not reliably extractable without a provided export.

OUTPUT FORMAT

When producing a plan, use this template:

WORKBOOK PLAN
- Sheets:
  - Data_Staging (query output)
  - Data_Clean (query output + validation flags)
  - Dashboard (pivots/charts)
  - Refresh_Status (counts + health checks)
- Canonical Schema:
  - \x3CColumn>: \x3CType> | Required? | Validation
- Power Query:
  - Query 1: Ingest_\x3Cname> (Folder/File)
  - Query 2: Clean_\x3Cname>
  - Key transforms: \x3Cbullets>
- Validation rules:
  - \x3Crule> -> \x3Caction>
- Pivot design:
  - Rows/Columns/Values
  - Slicers

If asked for artifacts, also output:

  • assets/power-query-folder-ingest-template.pq (adapted)
  • assets/refresh-checklist.md

SAFETY & EDGE CASES

  • Read-only by default: provide a plan + snippets unless the user explicitly requests file generation.
  • Never delete or overwrite user files; propose new filenames for outputs.
  • Prefer “no silent failure”: include row-count checks and visible error flags.
  • For PDF/DOCX sources, require user-provided exported tables (CSV/XLSX) or clearly mark extraction risk.

EXAMPLES

  • Input: “Folder of weekly CSVs with PayNumber/Name/Date.”
    Output: Folder-ingest PQ template + schema + Refresh Status checks + pivot dashboard plan.

  • Input: “Refresh breaks when new columns appear.”
    Output: Defensive missing-column logic + column normalization + typed schema plan.

安全使用建议
This appears safe to install as an Excel workflow helper. When using the Power Query template, point it at a dedicated source folder and review generated workbook snippets before applying them to real business data.
功能分析
Type: OpenClaw Skill Name: excel-weekly-dashboard Version: 1.0.0 The skill bundle is clearly aligned with its stated purpose of designing refreshable Excel dashboards using Power Query. The `SKILL.md` instructions for the agent include explicit safety measures such as 'Read-only by default' and 'Never delete or overwrite user files', and instruct the agent to 'STOP AND ASK THE USER' in ambiguous situations. The `assets/power-query-folder-ingest-template.pq.md` contains standard Power Query M code for data transformation, intended to be provided to the user for use in Excel, not executed by the agent on the host system. There is no evidence of data exfiltration, malicious execution, persistence, prompt injection with harmful objectives, or obfuscation.
能力评估
Purpose & Capability
The skill purpose, inputs, workflow, and included assets all align around designing refreshable Excel weekly KPI dashboards using Power Query, validation, pivot reporting, and refresh checklists.
Instruction Scope
Instructions are scoped to user-provided data files and dashboard planning, with explicit stop-and-ask conditions for missing KPIs, unstable keys, unclear week rules, or unreliable PDF/DOCX extraction.
Install Mechanism
The package contains markdown instructions and non-executable template assets only; no install scripts, binaries, package hooks, or external dependency setup are present.
Credentials
The only data access pattern is a Power Query folder-ingest template with a placeholder local path, which is expected for the stated Excel reporting purpose.
Persistence & Privilege
The skill explicitly defaults to read-only planning, says not to delete or overwrite user files, and does not request credentials, privileged access, background execution, or persistent memory.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install excel-weekly-dashboard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /excel-weekly-dashboard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of excel-weekly-dashboard. - Designs refreshable Excel dashboards using Power Query, structured tables, validation, and pivot reporting. - Focuses on creating repeatable weekly KPI workbooks that update from files with minimal manual work. - Supports ingestion from CSV, XLSX, and exported table formats (DOCX/PDF). - Provides clear input requirements, step-by-step workflow, and sample output formats. - Defines robust validation, error detection, and refresh status features to ensure reliable weekly reporting. - Includes safety guidelines to prevent accidental overwrites and highlight extraction risks.
元数据
Slug excel-weekly-dashboard
版本 1.0.0
许可证
累计安装 29
当前安装数 27
历史版本数 1
常见问题

Excel weekly dashboards at scale 是什么?

Designs refreshable Excel dashboards (Power Query + structured tables + validation + pivot reporting). Use when you need a repeatable weekly KPI workbook that updates from files with minimal manual work. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 5021 次。

如何安装 Excel weekly dashboards at scale?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install excel-weekly-dashboard」即可一键安装,无需额外配置。

Excel weekly dashboards at scale 是免费的吗?

是的,Excel weekly dashboards at scale 完全免费(开源免费),可自由下载、安装和使用。

Excel weekly dashboards at scale 支持哪些平台?

Excel weekly dashboards at scale 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Excel weekly dashboards at scale?

由 KOwl64(@kowl64)开发并维护,当前版本 v1.0.0。

💬 留言讨论