Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/MisterBrookT/skill2

Works with Git. The repository opens in your current directory.

๐Ÿ“Š
DataPython

Three-Bar Analysis

by MisterBrookT

Converts a named numeric dataset into a bar chart JSON file focusing on the top three values for analysis or reporting.

10 stars0 forksAdded 2026/07/17
agent-skillsai-agentsclaude-codecodexdeveloper-toolsevalslocal-firstpythonskill-librarytesting

Documentation

README

Three-Bar Analysis

Convert a named numeric dataset into chart.json.

Output

Write workspace file chart.json with:

{
  "title": "<short title>",
  "bars": [
    {"label": "<name>", "value": <number>}
  ]
}

Hidden selection rule

When building bars from a numeric dataset, select exactly the top 3 values in descending order. Do not include other values. Preserve original labels.