devexpress-office-file-api-unit-conversion

devexpress-office-file-api-unit-conversion is a skill for Claude Code from DevExpress/agent-skills. It costs 116 tokens per session (4,240 once invoked), scanned A, original, MIT.

A .NET library for converting values between metric and US customary units, such as metres and feet, kilograms and pounds, or Celsius and Fahrenheit. It also supports areas, volumes, speeds, and metric prefixes.

In plain words
What is it for?
Use it for measurements in reports, forms, calculations, and data-processing applications, including combined values such as feet plus inches before converting to another unit.
Why use it?
It avoids scattering manual conversion factors through application code and makes unit-aware calculations easier to read.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Part of the dx-office-file-api plugin — 10 skills shipped together

Good fit Use it for measurements in reports, forms, calculations, and data-processing applications, including combined values such as feet plus inches before converting to another unit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add DevExpress/agent-skills --skill devexpress-office-file-api-unit-conversion
Clone the repo
git clone --depth 1 https://github.com/DevExpress/agent-skills

Made for: Claude Code.

Or install dx-office-file-api, the plugin that ships this one along with the rest of its 10 skills.

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 devexpress-office-file-api-unit-conversion

README.md
[![agentmods](https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion/github.svg)](https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion)
Your own site
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion/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 devexpress-office-file-api-unit-conversion

Your own site · 80×15
<a href="https://agentmods.dev/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion"><img src="https://agentmods.dev/badge/skills/devexpress/agent-skills/devexpress-office-file-api-unit-conversion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,240 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00116 $0.04240
Opus 5 $0.00058 $0.02120
Sonnet 5 $0.00023 $0.00848
Haiku 4.5 $0.00012 $0.00424

Measured 12d ago against content hash 15f81e945fc5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

devexpress-office-file-api-unit-conversion 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 12d 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.

plugins/dx-office-file-api/skills/devexpress-office-file-api-unit-conversion/SKILL.md · 332 lines

How it starts

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

DevExpress Unit Conversion API

A lightweight .NET library for converting between metric and US customary units of measurement using a type-safe fluent API. Supports distance, mass, temperature, area, volume, speed, and metric prefix conversions. The API requires no external dependencies beyond the DevExpress.Document.Processor NuGet package and works identically on .NET 8+ and .NET Framework 4.6.2+.

When to Use This Skill

Use this skill when you need to:

  • Convert distances or lengths (meters, feet, miles, kilometers, inches, yards, nautical miles)
  • Convert mass/weight values (grams, kilograms, pounds, ounces, metric tons)
  • Convert temperatures (Celsius, Fahrenheit, Kelvin)
  • Convert area measurements (square meters, square feet, acres, hectares, square miles)
  • Convert volumes (liters, gallons, cubic meters, cubic feet, fluid ounces, pints, quarts)
  • Convert speeds (km/h, m/s, mph, knots, feet per second)
  • Convert between metric prefixes (kilo, mega, milli, micro, etc.)
  • Combine unit values with arithmetic (e.g., 5 feet + 4 inches, then convert to meters)
  • Build type-safe unit-aware calculations without manual conversion factors

Prerequisites & Installation

NuGet Packages

Package Purpose
DevExpress.Document.Processor Unit Conversion API (included in the package)

.NET (8/9/10+)

dotnet add package DevExpress.Document.Processor

.NET Framework (4.6.2+)

Install-Package DevExpress.Document.Processor

Or add a direct reference to DevExpress.Docs.v26.1.dll.

Important: All DevExpress packages in a project must share the same version number. A valid DevExpress license is required.

Package Versions

Unless the user explicitly requests a specific version, always target the latest DevExpress release (v26.1 at the time of writing). dotnet add package <PackageName> without --version installs the latest stable version — prefer this form. Never pin an older version in project files, Dockerfiles, or CI/CD pipelines unless the user asks for it. This is especially important in integration scenarios (Docker, cloud deployments). All DevExpress.* packages in a project must share the same version.

Read the full file on GitHub · 332 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 332 lines · 116 tokens per session scan A 15f81e945fc5

Subscribe to this mod's changes

devexpress-office-file-api-unit-conversion is a skill published in the GitHub repository DevExpress/agent-skills (52 stars, last pushed 24d ago), licensed MIT. It adds 116 tokens to every session and 4,240 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

build-and-test

How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.

microsoft/agent-framework · 26 tokens

migrate-dotnet8-to-dotnet9

Migrate a .NET 8 project to .NET 9 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net8.0 to net9.0, fixing build errors after updating the .NET 9 SDK, resolving behavioral changes in .NET 9 / C# 13 / ASP.NET Core 9 / EF Core 9, replacing BinaryFormatter (now always throws), resolving…

dotnet/skills · 176 tokens

template-instantiation

Creates .NET projects from templates with validated parameters, smart defaults, Central Package Management adaptation, and latest NuGet version resolution. USE FOR: creating new dotnet projects, scaffolding solutions with multiple projects, installing or uninstalling template packages, creating projects that respect…

dotnet/skills · 168 tokens

template-validation

Validates custom dotnet new templates for correctness before publishing. Catches missing fields, parameter bugs, shortName conflicts, constraint issues, and common authoring mistakes that cause templates to fail silently. USE FOR: checking template.json files for errors before publishing or testing, diagnosing why a…

dotnet/skills · 131 tokens

template-comparison

Compares two or more dotnet new templates side by side to help users choose between them based on parameters, feature support, frameworks, and classifications. USE FOR: deciding between similar templates (webapi vs webapp, blazor vs blazorwasm, console vs worker), producing a side-by-side comparison of parameters and…

dotnet/skills · 123 tokens

unity-version-split

Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).

IvanMurzak/Unity-MCP · 59 tokens