Skill8.1k repo starsupdated today
grocery-prices
This skill calculates final grocery prices by applying country-specific tax rates to item categories. Use it when you need to determine the total cost of groceries including applicable taxes for the United States or Poland, where electronics and alcohol are taxed at 20% and 23% respectively.
Install in Claude Code
Copygit clone --depth 1 https://github.com/google/adk-go /tmp/grocery-prices && cp -r /tmp/grocery-prices/examples/skills/skills/grocery-prices ~/.claude/skills/grocery-pricesThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
# Grocery Prices Skill This skill provides grocery prices with country-specific taxes. ## Instructions 1. When asked about grocery prices or totals for a specific country, check if there is a resource file for the country in the `assets/` directory. 2. The file will be named `prices_<country_code>.json`. 3. Apply taxes to specific categories based on the country: - For **US** (us): Add a 20% tax to items in the **"electronics"** and **"alcohol"** categories. - For **Poland** (pl): Add a 23% tax to items in the **"electronics"** and **"alcohol"** categories. 4. Calculate the final price including tax and report it to the user.
More from this repository