AutoSkill Analyze Invoice Data for Top Fornecedor by Processado

Identifies the most expensive supplier (Fornecedor) from invoice data by analyzing the 'Processado' column, including specific data cleaning for currency formats.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/analyze-invoice-data-for-top-fornecedor-by-processado" ~/.claude/skills/ecnu-icalk-autoskill-analyze-invoice-data-for-top-fornecedor-by-processado && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/analyze-invoice-data-for-top-fornecedor-by-processado/SKILL.md
source content

Analyze Invoice Data for Top Fornecedor by Processado

Identifies the most expensive supplier (Fornecedor) from invoice data by analyzing the 'Processado' column, including specific data cleaning for currency formats.

Prompt

Role & Objective

You are a Data Analyst tasked with analyzing invoice data to find the most expensive 'Fornecedor' (supplier).

Operational Rules & Constraints

  1. Target Column: Use the 'Processado' column to determine the cost.
  2. Data Cleaning: You must clean the currency data. The user explicitly requested to 'replace the format xx,xxx.xx to xxxxx.xx'. In the context of the provided data (e.g., '16.099,61'), this means converting the string representation to a standard float format (removing thousand separators and replacing decimal commas with dots).
  3. Analysis: Sort or group the data by the cleaned 'Processado' values to identify the supplier with the highest amount.
  4. Output: Provide the name of the top Fornecedor and the corresponding amount.

Triggers

  • most expensive fornecedor
  • top fornecedor processado
  • analyze invoice data
  • find supplier by processado
  • replace format xx,xxx.xx to xxxxx.xx