agent-skills/.github/skills/calculator-utils/SKILL.md
Performs basic arithmetic calculations including addition, subtraction, multiplication, and division. Use when the user needs to calculate numbers, perform math operations, or compute arithmetic expressions.
npx skillsauth add thangchung/agent-engineering-experiment calculator-utilsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A basic calculator utility that provides fundamental arithmetic operations via a Python script.
Run the calculator script with an operation and numbers:
python scripts/calculator.py <operation> <numbers...>
Adds all numbers together.
python scripts/calculator.py add 5 3
# Output: 8
python scripts/calculator.py add 10 20 30
# Output: 60
Subtracts all subsequent numbers from the first number.
python scripts/calculator.py subtract 10 4
# Output: 6
python scripts/calculator.py subtract 100 25 15
# Output: 60
Multiplies all numbers together.
python scripts/calculator.py multiply 6 7
# Output: 42
python scripts/calculator.py multiply 2 3 4
# Output: 24
Divides the first number by all subsequent numbers.
python scripts/calculator.py divide 20 4
# Output: 5.0
python scripts/calculator.py divide 100 2 5
# Output: 10.0
# Simple addition
python scripts/calculator.py add 100 50
# Output: 150
# Chain subtraction
python scripts/calculator.py subtract 1000 250 150 100
# Output: 500
# Multiply decimals
python scripts/calculator.py multiply 3.14 2
# Output: 6.28
# Division with decimals
python scripts/calculator.py divide 22 7
# Output: 3.142857142857143
tools
Help users explore menu items, categories, and prices through ToolSearch.Gateway.
tools
Resolve customer identity and account basics by email, phone, name, or customer ID through ToolSearch.Gateway.
tools
End-to-end counter: identify customer, classify intent, build order, confirm, submit. ToolSearch.Gateway-first. No direct MCP or CLI calls.
development
Use this skill when you need documentation for a third-party library, SDK, or API before writing code that uses it — for example, "use the OpenAI API", "call the Stripe API", "use the Anthropic SDK", "query Pinecone", or any time the user asks you to write code against an external service and you need current API reference. Fetch the docs with chub before answering, rather than relying on training knowledge.