소스 정보
- 저장소
- zgiai/zgi
- 최근 소스 활동
- 2026년 7월 15일 14:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 320
- 포크
- 17
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/zgiai/zgi --skill calculator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Navigate the visible console to a safe internal page when the user asks to open, switch to, or go to another module.
Generate downloadable files from provided content, including basic exports, SVG files, styled DOCX documents, HTML-rendered PDFs, and static editable PPTX decks.
Call workflows explicitly bound to the current Agent as structured process tools.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | calculator |
| description | Perform deterministic arithmetic, percent-based math, and change-rate math. |
| when_to_use | Use this skill when the user asks for exact arithmetic, percents, growth or decrease rates, discounts, markups, ratios, or numeric comparisons that should not be estimated mentally. |
| provider_type | builtin |
| provider_id | calculator |
| runtime_type | tool |
| tools | ["evaluate_expression","calculate","percentage"] |
| supported_callers | ["aichat","agent","workflow"] |
| max_calls_per_turn | 50 |
| timeout_seconds | 5 |
| display | {"icon":"calculator","category":"general_tools","scenarios":["general","data_insights","office_collaboration"],"label":{"en_US":"Calculator","zh_Hans":"计算器"},"description":{"en_US":"Designed for amounts, percentages, discounts, rates of change, and other exact calculations; performs arithmetic and numeric comparisons without relying on mental math.","zh_Hans":"适用于金额、百分比、折扣、变化率等精确计算,可完成算术运算和数值比较,避免依赖模型心算。"},"when_to_use":{"en_US":"Use when answers require exact calculation instead of mental math.","zh_Hans":"当问题需要精确计算,而不是让模型心算时启用。"},"tags":{"en_US":["Math","Arithmetic"],"zh_Hans":["数学","精确计算"]}} |
Use this skill for exact arithmetic and percentage tasks.
call_skill_tool call with tool_name set to evaluate_expression when the task can be represented as one arithmetic expression.calculate only when a single binary operation is clearer than a full expression.percentage only when the user asks specifically for percent-of, percentage change, or applying a percentage increase/decrease and a single expression would be less clear.evaluate_expression, convert the calculation into a pure numeric expression with ASCII operators. Remove units, natural-language notes, labels, thousands separators, and non-standard operators such as × or ÷.evaluate_expression accepts:
expression: a restricted arithmetic expression using numbers, parentheses, +, -, *, /, %, and ^.precision: optional decimal places from 0 to 12.Use decimal percentages inside expressions. For example, use 0.85 for an 85 percent multiplier and 0.15 for a 15 percent decrease.
Example for a grocery total with a fixed reduction and member discount:
expression: (9.5*10 + 4.8*15 + 15*5 - 30) * 0.85precision: 2calculate accepts:
operation: add, subtract, multiply, , , or .dividepowermodleft: left operand.right: right operand.precision: optional decimal places from 0 to 12.percentage accepts:
operation: percent_of, change, apply_increase, or apply_decrease.value: base value for percent_of, apply_increase, and apply_decrease.percent: percentage value, for example 15 means 15 percent.from: original value for change.to: new value for change.precision: optional decimal places from 0 to 12.