calculator
✓執行任意精度算術計算,包括加法、減法、乘法、除法和指數。當用戶要求計算、計算或評估數學表達式時,或者需要精確的十進制算術以避免浮點錯誤時使用。
SKILL.md
Evaluate arithmetic expressions with arbitrary-precision decimal math using big.js.
| + | Addition | 1 | | - | Subtraction | 1 | | | Multiplication | 2 | | / | Division | 2 | | ^ | Exponent (right-associative) | 3 | | () | Parentheses | Highest |
| "3 + 2" | 5 | | "10 / 4" | 2.5 | | "2 ^ 10" | 1024 | | "(2 + 3) 4" | 20 | | "1 + 4.5 (3-6) / 5" | -1.7 | | "-5 + 3" | -2 | | "2 ^ 3 ^ 2" | 512 (right-associative: 2^9) |
執行任意精度算術計算,包括加法、減法、乘法、除法和指數。當用戶要求計算、計算或評估數學表達式時,或者需要精確的十進制算術以避免浮點錯誤時使用。 來源:code-and-sorts/awesome-copilot-agents。
可引用資訊
為搜尋與 AI 引用準備的穩定欄位與指令。
- 安裝指令
npx skills add https://github.com/code-and-sorts/awesome-copilot-agents --skill calculator- 分類
- </>開發工具
- 認證
- ✓
- 收錄時間
- 2026-02-01
- 更新時間
- 2026-02-18
快速解答
什麼是 calculator?
執行任意精度算術計算,包括加法、減法、乘法、除法和指數。當用戶要求計算、計算或評估數學表達式時,或者需要精確的十進制算術以避免浮點錯誤時使用。 來源:code-and-sorts/awesome-copilot-agents。
如何安裝 calculator?
開啟你的終端機或命令列工具(如 Terminal、iTerm、Windows Terminal 等) 複製並執行以下指令:npx skills add https://github.com/code-and-sorts/awesome-copilot-agents --skill calculator 安裝完成後,技能將自動設定到你的 AI 程式設計環境中,可以在 Claude Code 或 Cursor 中使用
這個 Skill 的原始碼在哪?
https://github.com/code-and-sorts/awesome-copilot-agents