vnx-orchestration: Skill for Claude Code

.claude/skills/excel-reporter/SKILL.md

excel-reporter is a skill for Claude Code from Vinix24/vnx-orchestration. It costs 15 tokens per session (1,284 once invoked), scanned A, original, MIT.

A guide for creating formatted Excel workbooks from SEO website-crawl data. It covers multiple sheets, charts, conditional formatting, statistics, and Dutch number, date, and currency formats.

In plain words
What is it for?
Use it to prepare crawl and metric data, generate an Excel report, format prices and dates for Dutch readers, add charts and conditional formatting, and include findings or recommendations.
Why use it?
It turns crawl results into reports that business readers can inspect and use. It also reduces manual formatting work and helps avoid errors when displaying Dutch-style values.

Skill for Claude Code

Written for Claude Code: paths in frontmatter.

This is Vinix24/vnx-orchestration's own configuration. It tells Claude Code how to work on vnx-orchestration itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vnx-orchestration configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Vinix24/vnx-orchestration. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Vinix24/vnx-orchestration/main/.claude/skills/excel-reporter/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Vinix24/vnx-orchestration

Made for: Claude Code.

Wrote 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.

agentmods badge for excel-reporter

README.md
[![agentmods](https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/excel-reporter/github.svg)](https://agentmods.dev/skills/vinix24/vnx-orchestration/excel-reporter)
Your own site
<a href="https://agentmods.dev/skills/vinix24/vnx-orchestration/excel-reporter"><img src="https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/excel-reporter/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.

agentmods 80×15 button for excel-reporter

Your own site · 80×15
<a href="https://agentmods.dev/skills/vinix24/vnx-orchestration/excel-reporter"><img src="https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/excel-reporter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,284 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.01284
Opus 5 $0.00008 $0.00642
Sonnet 5 $0.00003 $0.00257
Haiku 4.5 $0.00002 $0.00128

Measured 11d ago against content hash 5775327454ba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

excel-reporter 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 11d 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.

.claude/skills/excel-reporter/SKILL.md · 198 lines

How it starts

The opening of the file, as written. The whole thing — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@excel-reporter - Excel Report Generation Specialist

You are an Excel Reporter specialized in creating multi-sheet, formatted Excel reports from SEOcrawler V2 data with Dutch market compatibility.

Core Mission

Transform crawl data into professional Excel reports with charts, formatting, and insights tailored for business stakeholders.

Report Principles

  • Professional Formatting: Clean, branded layouts
  • Dutch Compatibility: Proper decimal/date formats
  • Visual Impact: Charts and conditional formatting
  • Actionable Insights: Clear recommendations

Excel Generation Workflow

  1. Data Preparation

    import pandas as pd
    import xlsxwriter
    from datetime import datetime
    
    # Load and prepare data
    df_crawls = pd.read_sql(crawl_query, connection)
    df_metrics = pd.read_sql(metrics_query, connection)
    
    # Dutch formatting
    df_crawls['price'] = df_crawls['price'].apply(
        lambda x: f"€ {x:,.2f}".replace(',', 'X').replace('.', ',').replace('X', '.')
    )
    
  2. Workbook Creation

    # Create Excel writer with xlsxwriter engine
    writer = pd.ExcelWriter('seo_report.xlsx', engine='xlsxwriter')
    workbook = writer.book
    
    # Define formats
    formats = {
        'header': workbook.add_format({
            'bold': True,
            'bg_color': '#4472C4',
            'font_color': 'white',
            'border': 1
        }),
        'currency_nl': workbook.add_format({
            'num_format': '€ #,##0.00'
        }),
        'percentage': workbook.add_format({
            'num_format': '0.0%'
        })
    }
    
  3. Sheet Structure

    • Summary: Executive dashboard
    • Crawl Results: Detailed crawl data
    • SEO Metrics: Technical SEO scores
    • Competitors: Competitor analysis
    • Web Vitals: Performance metrics
    • Recommendations: Action items
  4. Visual Elements

    # Add charts
    def create_charts(worksheet, workbook):
        # Performance trend chart
        chart = workbook.add_chart({'type': 'line'})
        chart.add_series({
            'categories': '=Data!$A$2:$A$30',
            'values': '=Data!$B$2:$B$30',
            'name': 'Load Time Trend'
        })
        worksheet.insert_chart('H2', chart)
    
        # SEO score distribution
        pie_chart = workbook.add_chart({'type': 'pie'})
        pie_chart.add_series({
            'categories': '=Metrics!$A$2:$A$5',
            'values': '=Metrics!$B$2:$B$5'
        })
        worksheet.insert_chart('H15', pie_chart)
    

Read the full file on GitHub · 198 lines

Changes

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.

  1. 11d ago First seen · 198 lines · 15 tokens per session scan A 5775327454ba

Subscribe to this mod's changes

excel-reporter is a skill published in the GitHub repository Vinix24/vnx-orchestration (61 stars, last pushed today), licensed MIT. It adds 15 tokens to every session and 1,284 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

doc-reader

Read any common document/data file — PDF, Word (.docx), Excel (.xlsx/.xls), PowerPoint (.pptx), images (OCR), CSV/TSV, plain text, JSON/YAML/TOML, HTML/XML, and most source-code files. Use the readdocument tool.

HKUDS/Vibe-Trading · 65 tokens

skill-doc-delivery

Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.

nyldn/claude-octopus · 29 tokens

officecli-commonly-templates

Use this skill when producing a polished, Commonly-branded deliverable (.docx brief / memo, .xlsx data matrix, .pptx deck) and you do not have specific brand guidance from the user. Trigger on: 'write me a brief', 'one-pager', 'memo', 'data sheet', 'status matrix', 'short deck', 'summary deck', 'closing slide', 'final…

Team-Commonly/commonly · 182 tokens

markdown-converter

Convert binary documents (PDF, DOCX, XLSX, PPTX, HTML, EPUB, images) to clean LLM-friendly Markdown using Microsoft's markitdown Python tool. Use when a user attaches a binary file and you need to read its contents.

Team-Commonly/commonly · 57 tokens

xlsx

Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file; create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Also trigger for…

mateaix/mateclaw · 93 tokens

officecli

Use the optional iOfficeAI/OfficeCLI engine for advanced inspection, validation, copy-on-write editing, template merge, or visual rendering of existing .docx, .xlsx, and .pptx files. Prefer MateClaw's built-in renderDocx/renderXlsx/renderPptx tools for simple new documents. Use this skill when preserving an existing…

mateaix/mateclaw · 123 tokens