with one click
calculator
Perform mathematical calculations using various operations
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Perform mathematical calculations using various operations
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Get current weather information for any location
A skill with unexpected fields in frontmatter for testing validation
This is from the lowercase skill.md file
A skill with lowercase skill.md filename for testing
Perform systematic code reviews following best practices and team standards
Compose and send professional emails with optional attachments and formatting
| name | calculator |
| description | Perform mathematical calculations using various operations |
| version | 1.0.0 |
| author | AgentSkills.NET Sample |
| tags | ["math","calculation","arithmetic"] |
| allowed-tools | ["add","subtract","multiply","divide"] |
Perform mathematical calculations using the calculator tools.
This skill enables you to perform basic arithmetic operations when users request calculations. Use the appropriate tool based on the operation needed.
When a user asks for a calculation:
add for addition: "What is 5 plus 3?"subtract for subtraction: "What is 10 minus 4?"multiply for multiplication: "What is 6 times 7?"divide for division: "What is 15 divided by 3?"User: "What's 25 plus 17?"
Action: Call add(25, 17)
Response: "25 plus 17 equals 42."
User: "Subtract 8 from 20"
Action: Call subtract(20, 8)
Response: "20 minus 8 equals 12."
User: "Calculate 9 times 6"
Action: Call multiply(9, 6)
Response: "9 times 6 equals 54."
User: "Divide 100 by 5"
Action: Call divide(100, 5)
Response: "100 divided by 5 equals 20."
allowed-tools