nsforge-mcp: Skill for Claude Code

.claude/skills/nsforge-quick-calculate/SKILL.md

nsforge-quick-calculate is a skill for Claude Code from u9401066/nsforge-mcp. It costs 56 tokens per session (2,124 once invoked), scanned A, original, Apache-2.0.

A quick mathematics tool for simplifying expressions, solving equations, and performing calculus and other symbolic calculations. The description is in Chinese, but its listed operations include differentiation, integration, limits, series, inequalities, probability, matrices, and unit conversion.

In plain words
What is it for?
Use it for algebraic simplification, factorisation, derivatives, integrals, equation solving, differential equations, matrix calculations, transforms, and unit conversions.
Why use it?
It reduces the need to perform routine algebra and calculus by hand. It also requires the calculation result to be shown after each operation.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is u9401066/nsforge-mcp's own configuration. It tells Claude Code how to work on nsforge-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nsforge-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to u9401066/nsforge-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/u9401066/nsforge-mcp/master/.claude/skills/nsforge-quick-calculate/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/u9401066/nsforge-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nsforge-quick-calculate

README.md
[![agentmods](https://agentmods.dev/badge/skills/u9401066/nsforge-mcp/nsforge-quick-calculate/github.svg)](https://agentmods.dev/skills/u9401066/nsforge-mcp/nsforge-quick-calculate)
Your own site
<a href="https://agentmods.dev/skills/u9401066/nsforge-mcp/nsforge-quick-calculate"><img src="https://agentmods.dev/badge/skills/u9401066/nsforge-mcp/nsforge-quick-calculate/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nsforge-quick-calculate

Your own site · 80×15
<a href="https://agentmods.dev/skills/u9401066/nsforge-mcp/nsforge-quick-calculate"><img src="https://agentmods.dev/badge/skills/u9401066/nsforge-mcp/nsforge-quick-calculate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,124 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.02124
Opus 5 $0.00028 $0.01062
Sonnet 5 $0.00011 $0.00425
Haiku 4.5 $0.00006 $0.00212

Measured 9d ago against content hash 6111c0eac1c8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

nsforge-quick-calculate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/nsforge-quick-calculate/SKILL.md · 143 lines

How it starts

The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.

快速計算 Skill

⚠️ 每次計算後必須向用戶展示結果!

  • 在推導中使用 derivation_show() 顯示當前狀態
  • 單獨計算用 print_latex_expression() (SymPy-MCP)

工具分工

我想要... MCP 工具
簡化/展開/分解 SymPy simplify_expression, expand_expression, factor_expression
展開表達式 NSForge expand_expression(expr, deep?, modulus?) 🆕
因式分解 NSForge factor_expression(expr, modulus?) 🆕
收集同類項 NSForge collect_expression(expr, symbols) 🆕
三角化簡 NSForge trigsimp_expression(expr, method?) 🆕
冪次化簡 NSForge powsimp_expression(expr, deep?) 🆕
根式化簡 NSForge radsimp_expression(expr) 🆕
組合函數化簡 NSForge combsimp_expression(expr) 🆕
部分分式 NSForge apart_expression(expr, var) 🆕🔥🔥
約分 NSForge cancel_expression(expr) 🆕
合併分式 NSForge together_expression(expr, deep?) 🆕
微分/積分 SymPy differentiate_expression, integrate_expression
解方程 SymPy solve_algebraically, solve_linear_system
ODE/PDE SymPy dsolve_ode, pdsolve_pde
矩陣 SymPy matrix_* 系列
單位換算 SymPy convert_to_units
Laplace 變換 NSForge laplace_transform_expression(expr, t, s) 🆕🔥🔥
反 Laplace NSForge inverse_laplace_transform_expression(expr, s, t) 🆕🔥🔥
Fourier 變換 NSForge fourier_transform_expression(expr, x, k) 🆕🔥
反 Fourier NSForge inverse_fourier_transform_expression(expr, k, x) 🆕🔥
極限 NSForge calculate_limit(expr, var, point, direction?)
級數展開 NSForge calculate_series(expr, var, point?, order?)
求和 Σ NSForge calculate_summation(expr, index, lower, upper)
不等式 NSForge solve_inequality(ineq, var, domain?)
不等式系統 NSForge solve_inequality_system(ineqs, var)
定義分佈 NSForge define_distribution(type, params, name?)
統計量 NSForge distribution_stats(type, params, stats?)
機率計算 NSForge distribution_probability(type, params, condition)
假設查詢 NSForge query_assumptions(expr, query, assumptions?)
假設簡化 NSForge refine_expression(expr, assumptions)
數值計算 NSForge evaluate_numeric(expr, values, precision?)
等價檢查 NSForge symbolic_equal(expr1, expr2)

Read the full file on GitHub · 143 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 143 lines · 56 tokens per session scan A 6111c0eac1c8

Subscribe to this mod's changes

nsforge-quick-calculate is a skill published in the GitHub repository u9401066/nsforge-mcp (4 stars, last pushed 9d ago), licensed Apache-2.0. It adds 56 tokens to every session and 2,124 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

drug-discovery

Drug discovery: ChEMBL search, drug-likeness, interactions.

NousResearch/hermes-agent · 19 tokens

jupyter-notebook

Iterative Python via live Jupyter kernel (hamelnb).

NousResearch/hermes-agent · 18 tokens

batch-processing-clinical-text

Run large-scale batch NER, PII extraction, or de-identification over many clinical notes on-device with OpenMed, with sharding, checkpointing, resumability, and append-only JSONL output. Use when the user needs to process a corpus or folder of notes, de-identify a dataset, run NER over thousands of documents, build a…

maziyarpanahi/openmed · 161 tokens

coding-hcc-risk-adjustment

Maps chronic conditions extracted by OpenMed to CMS-HCC V28 risk-adjustment categories and estimates a RAF (Risk Adjustment Factor) score as decision support. Use when the user wants to surface risk-adjustable diagnoses from notes, map ICD-10-CM codes to HCC categories, estimate or reconcile a patient/panel RAF, find…

maziyarpanahi/openmed · 200 tokens

detecting-pv-signals

Computes disproportionality signals — PRR, ROR, EBGM, and IC (BCPNN) — over FAERS / OpenFDA drug-event data to flag potential safety signals. Use when the user wants to mine spontaneous-report data for drug-reaction associations, build a 2x2 contingency table, compute a Proportional Reporting Ratio or Reporting Odds…

maziyarpanahi/openmed · 218 tokens

structuring-radiology-reports

Converts free-text radiology narratives into structured findings and impression — with measurements, laterality, anatomy, and follow-up recommendations — after OpenMed NER. Use when the user has a CT/MRI/X-ray/ultrasound/mammography report and needs the sections split (technique, comparison, findings, impression)…

maziyarpanahi/openmed · 195 tokens