🧮
AI EngineeringTypeScript

Calculator

by Code-and-Sorts

Calculator is an AI Engineering skill for Claude Code, published by Code-and-Sorts in awesome-copilot-agents.

561 stars92 forkson Code-and-Sorts/awesome-copilot-agentsAdded 2026/08/25Repository updated 2026/04/29
agent-skillsai-agentsawesomeawesome-listcopilot-instructionscopilot-promptingcustom-agentsgithub-copilotmcpprompt-engineeringvscode-copilot-chat
Install in seconds
Install Calculator
Copy Calculator into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/Code-and-Sorts/awesome-copilot-agents/tree/main/skills/calculator ~/.claude/skills/calculator

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/Code-and-Sorts/awesome-copilot-agents.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/calculator/SKILL.md in Code-and-Sorts/awesome-copilot-agents
Installs to
~/.claude/skills/calculator
Collection
One of 4 skills cataloged from this repository
Category
AI Engineering2451 skills

What Calculator does

Calculator evaluates arithmetic expressions with arbitrary-precision decimal math. Use it to calculate expressions with parentheses, operator precedence, exponents, or to avoid floating-point errors.

Calculator is cataloged under AI Engineering on DirSkills. Calculator comes from a repository tagged agent-skills, ai-agents, awesome, awesome-list and copilot-instructions.

Documentation

README

Calculator

Evaluate arithmetic expressions with arbitrary-precision decimal math using big.js.

When to Use

  • User asks to calculate or evaluate a math expression
  • Precise decimal arithmetic is needed (avoids floating-point errors like 0.1 + 0.2 = 0.30000000000000004)
  • Expressions involve parentheses, operator precedence, or exponents

Supported Operations

Operator Description Precedence
+ Addition 1
- Subtraction 1
* Multiplication 2
/ Division 2
^ Exponent (right-associative) 3
() Parentheses Highest

Usage

cd scripts
npm ci || npm install
npm run build
npm run calculate "<expression>"

Examples

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Calculator

  • What else does Code-and-Sorts publish alongside Calculator?

    Calculator is one of 4 skills that DirSkills catalogs from Code-and-Sorts/awesome-copilot-agents, the repository it ships in. Its siblings there include Az CLI, Azure Prices and Jira CLI. Each one is a separate skill with its own page in this directory, installs the same way Calculator does, and is maintained by Code-and-Sorts in that same repository. The rest of the collection is listed on the Code-and-Sorts/awesome-copilot-agents page.

  • How does Calculator compare to other AI Engineering skills?

    Calculator ranks #2027 by stars among the 2451 AI Engineering skills in this catalog. The most-starred ones next to it are Architecture Decision Records, AI-First Engineering and Agentic OS. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Calculator against them. Open each page to compare what they document and how they install.