AI Math Solver Skill for Agents
AI Math Solver — Agent Skill
Solve math problems programmatically via the AI Pass API.
Usage
curl -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4.1-mini",
"messages": [
{"role": "system", "content": "Solve step by step. Show your work clearly."},
{"role": "user", "content": "Integrate x^2 from 0 to 3"}
]
}'
Response
The choices[0].message.content field contains the step-by-step solution.
API Key
Get yours at aipass.one/dashboard
Live App
Skill File
# AI Math Solver Skill
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"openai/gpt-4.1-mini","messages":[{"role":"system","content":"Solve step by step."},{"role":"user","content":"MATH_PROBLEM_HERE"}]}'
Download Skill File