smithery/korallis

document-processing-xlsx

Process, parse, create, and manipulate Excel spreadsheets (.xlsx, .xls) using libraries like xlsx, exceljs, or SheetJS for data import/export and spreadsheet automation.

Installation

$ npx skills add smithery/korallis --skill document-processing-xlsx

Summary

  • Process, parse, create, and manipulate Excel spreadsheets (.xlsx, .xls) using libraries like xlsx, exceljs, or SheetJS for data import/export and spreadsheet automation.
  • Use when reading Excel files for data import, generating Excel reports, exporting data to spreadsheets, parsing bulk uploads, creating financial reports, manipulating workbooks and worksheets, or building data export features.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/korallis · top by installs.

npx skills add smithery/korallis

Browse all from smithery/korallis

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,520 B
  • docs SUMMARY.md 428 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Document Processing - Excel Files

When to use this skill

  • Reading Excel files for data import and processing
  • Generating Excel reports and spreadsheets
  • Exporting application data to Excel format
  • Parsing bulk data uploads from spreadsheets
  • Creating financial reports and statements
  • Manipulating workbooks, worksheets, and cells
  • Building CSV to Excel converters
  • Creating templates for data entry
  • Extracting data from uploaded spreadsheets
  • Generating dynamic Excel reports with formulas
  • Handling large dataset imports from Excel
  • Building data export and reporting features

When to use this skill

  • Creating, parsing Excel spreadsheets.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Creating, parsing Excel spreadsheets.

Example

\\\`typescript import * as XLSX from 'xlsx';

const ws = XLSX.utils.aoatosheet([[1, 2], [3, 4]]); const wb = XLSX.utils.booknew(); XLSX.utils.bookappend_sheet(wb, ws, "Sheet1"); \\\`

Resources