DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Pace Calc — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-pace-calc

Pace Calc

Pace calculator: converts distance and time into pace (minutes per kilometer) and speed (kilometers per hour), supporting any distance and hours, minutes, and seconds input.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:uckkk/dsh-pace-calc#f2953e60d9adb2888a7cd23d51ba6544aff5b515
READMECompatibilityVersions

Compatibility and provenance

Pace Calc is published as dsh-pace-calc and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/15/2026

Versions

0.1.1stable
9/15/2026
0.1.0stable
8/20/2026
Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
9/15/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

README

dsh-pace-calc · 配速计算

DeepSeek Harness 跑步配速计算插件 — 一次调用换算出配速(分/公里)与速度(公里/小时)。

纯 Node 实现,零依赖、无网络请求、离线可用。

工具

pace_calc

参数类型默认说明
distnumber5距离(公里),如 21.0975(半马)、42.195(全马)
minnumber30用时(分钟)
secnumber0用时(秒),与 min 相加

返回:距离、用时、配速(分′秒″/km)、速度(km/h)。

示例

pace_calc(dist=5, min=30)          → 6′00″/km,10 km/h
pace_calc(dist=21.0975, min=90)    → 4′16″/km,14.1 km/h   (半马 1:30:00)
pace_calc(dist=42.195, min=180)    → 4′16″/km,14.1 km/h   (全马 3:00:00)

计算方式:配速 = 总时间 ÷ 距离,速度 = 距离 ÷ 总时间。

安装

# npm(推荐)
npm install dsh-pace-calc

# 或从 GitHub 直装
dsh plugin add github:uckkk/dsh-pace-calc

装完重启 DSH 页面,之后在会话里直接让模型调用 pace_calc 即可。

许可

MIT