simple-math ยท diff
git:20260129.1b978c7 to git:20260903.e815686
5 added, 22 removed. Audit A to A.
---
name: simple-math
- description: Perform basic arithmetic operations safely using standard operators without eval or exec
- license: MIT
- allowed-tools:
- - Python
+ description: Perform basic arithmetic using a direct operator implementation
+ license: Apache-2.0
+ allowed-tools: []
---
- # Simple Math Skill
-
- Performs basic arithmetic operations safely.
-
- ## Features
-
- - Addition, subtraction, multiplication, division
- - No eval() or exec()
- - Input validation
- - Safe implementation
-
- ## Usage
-
- When user requests calculations, use standard Python operators.
-
- ## Example
+ # Simple Math
- User: "What's 25 + 17?"
- Agent: *uses simple-math skill* The result is 42.
+ Use [math_ops.py](math_ops.py) to add two numbers.