SenseNova-Skills is a collection of modular skills that extend SenseNova models with office-assistant capabilities such as image generation, presentation creation, spreadsheet analysis, and research. The skills are designed for use in agent runtimes and can be combined into productivity workflows; the catalogue entries are individual skills and agents from this collection.
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 OpenSenseNova/SenseNova-Skills --skill sn-da-excel-workflowgit clone --depth 1 https://github.com/OpenSenseNova/SenseNova-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/opensensenova/sensenova-skills/sn-da-excel-workflow)<a href="https://agentmods.dev/skills/opensensenova/sensenova-skills/sn-da-excel-workflow"><img src="https://agentmods.dev/badge/skills/opensensenova/sensenova-skills/sn-da-excel-workflow/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/opensensenova/sensenova-skills/sn-da-excel-workflow"><img src="https://agentmods.dev/badge/skills/opensensenova/sensenova-skills/sn-da-excel-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00348 | $0.03476 |
| Opus 5 | $0.00174 | $0.01738 |
| Sonnet 5 | $0.00070 | $0.00695 |
| Haiku 4.5 | $0.00035 | $0.00348 |
Grade A, and why
sn-da-excel-workflow 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 — 289 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excel Data Analysis Workflow
End-to-end workflow for structured Excel analysis. Each step maps to a capability sub-skill that can be loaded for detailed patterns.
Workflow
Step 1 — Count rows across all sheets (lightweight, no full load)
Count rows per sheet without loading data into memory. Use openpyxl
read_only mode — this works for any file size.
import openpyxl, gc
wb = openpyxl.load_workbook(file_path, read_only=True, data_only=True)
total_rows = 0
sheet_info = {}
for name in wb.sheetnames:
ws = wb[name]
row_count = sum(1 for _ in ws.iter_rows(min_row=2, values_only=True))
total_rows += row_count
sheet_info[name] = row_count
print(f"Sheet '{name}': {row_count} rows")
wb.close()
print(f"总行数={total_rows}")
⚠️ Do NOT use pd.read_excel() to count rows — it loads all data into
memory, which will OOM on large files.
→ capability: excel-reading/multi-sheet-reading
Step 2 — Large file gate (CRITICAL — choose strategy by row count)
| total_rows | Strategy | What to do |
|---|---|---|
| < 10k | Direct read | df = pd.read_excel(file_path, sheet_name=target_sheet) |
| 10k – 100k | Parquet cache | pd.read_excel() once → df.to_parquet() → all later reads from Parquet |
| >= 100k | STOP. Load sn-da-large-file-analysis skill |
Read its SKILL.md, then follow its streaming read + Parquet pattern. Do NOT use pd.read_excel() at all — it will OOM or timeout on 100k+ rows. |
For >= 100k rows:
read_file(path="<skills_base>/sn-da-large-file-analysis/SKILL.md")
Then use stream_excel_to_parquet() from that skill — it reads via
openpyxl iter_rows in 50k-row chunks with constant memory.
For 10k – 100k rows (only):
import pandas as pd
parquet_path = "/tmp/_auto_parquet.parquet"
df = pd.read_excel(file_path, sheet_name=target_sheet)
df.to_parquet(parquet_path, engine="pyarrow")
del df; gc.collect()
df = pd.read_parquet(parquet_path)
→ capability: excel-reading/large-excel-reading
What ships with it
44 files 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.
- capability/excel-cell-coloring/category-coloring/SKILL.md 3.4 KB
- capability/excel-cell-coloring/duplicate-value-coloring/SKILL.md 3.0 KB
- capability/excel-cell-coloring/outlier-coloring/SKILL.md 4.0 KB
- capability/excel-cell-coloring/threshold-cell-coloring/SKILL.md 4.3 KB
- capability/excel-cell-coloring/top-value-coloring/SKILL.md 3.7 KB
- capability/excel-conditional-formatting/data-bar-formatting/SKILL.md 4.1 KB
- capability/excel-data-analysis/comparison-analysis/SKILL.md 3.6 KB
- capability/excel-data-analysis/group-by-analysis/SKILL.md 3.6 KB
- capability/excel-data-analysis/kpi-metric-analysis/SKILL.md 2.5 KB
- capability/excel-data-analysis/pivot-table-analysis/SKILL.md 4.4 KB
- capability/excel-data-analysis/time-series-analysis/SKILL.md 5.6 KB
- capability/excel-data-analysis/trend-analysis/SKILL.md 4.2 KB
- capability/excel-data-cleaning/duplicate-removal/SKILL.md 2.9 KB
- capability/excel-data-cleaning/invalid-data-cleaning/SKILL.md 2.2 KB
- capability/excel-data-cleaning/missing-value-handling/SKILL.md 3.5 KB
- capability/excel-data-cleaning/numeric-format-normalization/SKILL.md 2.5 KB
- capability/excel-data-cleaning/outlier-detection/SKILL.md 4.6 KB
- capability/excel-data-cleaning/text-normalization/SKILL.md 2.3 KB
- capability/excel-data-filtering/category-filtering/SKILL.md 7.4 KB
- capability/excel-data-filtering/condition-filtering/SKILL.md 2.9 KB
- capability/excel-data-filtering/range-filtering/SKILL.md 2.6 KB
- capability/excel-data-filtering/threshold-filtering/SKILL.md 1.9 KB
- capability/excel-data-statistics/basic-statistics/SKILL.md 3.8 KB
- capability/excel-data-statistics/category-statistics/SKILL.md 5.5 KB
- capability/excel-data-statistics/grouped-statistics/SKILL.md 3.7 KB
- capability/excel-data-statistics/percentage-calculation/SKILL.md 3.6 KB
- capability/excel-data-visualization/bar-chart-visualization/SKILL.md 4.6 KB
- capability/excel-data-visualization/histogram-visualization/SKILL.md 5.0 KB
- capability/excel-data-visualization/line-chart-visualization/SKILL.md 6.8 KB
- capability/excel-data-visualization/pie-chart-visualization/SKILL.md 4.5 KB
- capability/excel-data-visualization/scatter-plot-visualization/SKILL.md 3.8 KB
- capability/excel-data-visualization/stacked-chart-visualization/SKILL.md 3.5 KB
- capability/excel-reading/large-excel-reading/SKILL.md 3.9 KB
- capability/excel-reading/multi-file-reading/SKILL.md 3.2 KB
- capability/excel-reading/multi-sheet-reading/SKILL.md 5.0 KB
- capability/excel-reading/range-reading/SKILL.md 4.1 KB
- capability/excel-reading/single-sheet-reading/SKILL.md 4.4 KB
- capability/excel-reading/specific-sheet-reading/SKILL.md 6.0 KB
- capability/excel-reading/structured-header-reading/SKILL.md 2.2 KB
- capability/excel-result-export/chart-embedded-export/SKILL.md 4.6 KB
- capability/excel-result-export/formatted-export/SKILL.md 2.7 KB
- capability/excel-result-export/report-generation-export/SKILL.md 4.9 KB
- capability/excel-result-export/single-sheet-export/SKILL.md 2.6 KB
- capability/excel-table-styling/table-theme-styling/SKILL.md 2.2 KB
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 · 289 lines · 348 tokens per session scan A 47348dffc7c9
sn-da-excel-workflow is a skill published in the GitHub repository OpenSenseNova/SenseNova-Skills (5,515 stars, last pushed yesterday), licensed MIT. It adds 348 tokens to every session and 3,476 once invoked, about $0.0017 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-30.
Other skills, from other repositories
ha-data-analytics
A local-first data-analysis and reporting skill for CSV and spreadsheet files. It produces decision-ready analyses and shareable offline reports while separating facts, calculations, interpretations, and recommendations.
office-xlsx
Use when the user asks to create, inspect, verify, analyze, format, or deliver Excel .xlsx workbooks, Google Sheets-targeted spreadsheet artifacts, trackers, budgets, models, tables, dashboards, formulas, CSV/TSV-to-XLSX conversions, or spreadsheet-ready data packs.
xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…
agent-office
A guide for creating, editing, rewriting, converting, processing, or delivering Word documents, spreadsheets, presentations, and PDF files.
csv-analysis
Use this skill for CSV data analysis tasks that require reading a local CSV file, checking row counts and columns, grouping records, computing rates or aggregates, creating a chart, and writing a short Markdown report.
data-analysis
Use this skill when the user uploads Excel (.xlsx/.xls) or CSV files and wants to perform data analysis, generate statistics, create summaries, pivot tables, SQL queries, or any form of structured data exploration. Supports multi-sheet Excel workbooks, aggregation, filtering, joins, and exporting results to…