exportando-arquivos

Generate downloadable Excel, CSV, or JSON files from JSON input via stdin.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/Rafael-2109/frete-sistema --skill exportando-arquivos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: exportando-arquivos
Source: https://github.com/Rafael-2109/frete-sistema/tree/main/.claude/skills/exportando-arquivos
Command: npx skills add https://github.com/Rafael-2109/frete-sistema --skill exportando-arquivos

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, xlsxwriter, and includes scripts (resource) components.

What problem does it solve?

Cria arquivos para download com dados formatados (Excel, CSV ou JSON) para uso externo ou compartilhamento.

Core Features & Use Cases

  • Geração de Excel (.xlsx) com formatação e cabeçalho destacado.
  • CSV com encoding UTF-8 BOM.
  • JSON com indentação adequada para integração.

Quick Start

echo '{"dados": [...]}') | python .claude/skills/exportando-arquivos/scripts/exportar.py --formato excel --nome pedidos

Frequently Asked Questions about exportando-arquivos

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I export data to Excel, CSV, or JSON format?

Export data by piping JSON input to the exportar.py script with a format flag (--formato excel, csv, or json). The Skill generates formatted files with proper encoding, headers, and indentation, then returns a download URL for each output file.

Can I customize column selection and formatting when exporting?

Yes, the Skill supports column selection and applies formatting including highlighted headers for Excel, UTF-8 BOM encoding for CSV, and proper indentation for JSON. Specify your dataset structure and desired columns in the input JSON.

What's the best way to generate multiple export formats from the same dataset?

Run the script multiple times with different --formato flags (excel, csv, json) against the same input data. Each execution produces a uniquely named file and returns its download URL, allowing parallel exports in all three formats.

Does this work for large datasets or reports?

The Skill handles dataset and report exports using pandas for processing and xlsxwriter for Excel formatting. It generates files with unique filenames and HTTP-accessible URLs suitable for external sharing and integration workflows.

What input format do I need to provide for the export?

Provide input as JSON via stdin containing your dataset. The Skill parses this JSON, applies the requested format transformation (Excel, CSV, or JSON), and outputs a file with a download URL and basic error handling.