$npx -y skills add EXboys/evotown --skill calculatorA simple calculator that can add, subtract, multiply, and divide numbers. Use when the user needs to perform basic arithmetic operations.
| 1 | # Calculator Skill |
| 2 | |
| 3 | A simple calculator that performs basic arithmetic operations. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | Provide an operation and two numbers to get the result. |
| 8 | |
| 9 | ### Examples |
| 10 | |
| 11 | - Add: `{"operation": "add", "a": 5, "b": 3}` → `8` |
| 12 | - Subtract: `{"operation": "subtract", "a": 10, "b": 4}` → `6` |
| 13 | - Multiply: `{"operation": "multiply", "a": 6, "b": 7}` → `42` |
| 14 | - Divide: `{"operation": "divide", "a": 20, "b": 4}` → `5` |