Calculator
A collection of agent skills for investment finance
npx -y skills add ternary-ai/skills --skill calculatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Perform accurate numeric calculations and conversions. Use when the user asks for arithmetic, percentages, ratios, growth rates, unit conversions, or any multi-step computation where precision matters.
SKILL.md
1.4 KB, as published. Nobody here has run it
Calculator
Overview
Compute precise results from user inputs, using a reliable calculation method, and return a clear final value with units and rounding.
Quick Use
- Restate inputs and assumptions (units, rounding, time basis).
- Build a single expression or small sequence of steps.
- Compute with a calculator tool or the local script at
scripts/calc.py(prefer deterministic math). - Return the final result with units and any requested precision.
Tasks
Arithmetic and percentages
Use explicit formulas. Example: "X is 12% of 350" -> 350 * 0.12.
Ratios and growth rates
Normalize to consistent units, then compute. Example: growth rate = (new - old) / old.
Unit conversions
Convert to base units before combining values. If a conversion factor is ambiguous, ask a clarifying question.
Ranges and rounding
If inputs are ranges, compute min and max. Round only at the end unless the user specifies otherwise.
Output
Use a short, direct result format.
Example:
Result: 42.75 USD
Script
Use scripts/calc.py for deterministic evaluation when the math is non-trivial or the user requests strict accuracy.