agentsclimarketplace

Calculator

Skill ternary-ai/skills/skills/basic/calculator

A collection of agent skills for investment finance

Install
npx -y skills add ternary-ai/skills --skill calculator

Assembled 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

  1. Restate inputs and assumptions (units, rounding, time basis).
  2. Build a single expression or small sequence of steps.
  3. Compute with a calculator tool or the local script at scripts/calc.py (prefer deterministic math).
  4. 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.