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.

Sms Webhook — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-sms-webhook

Sms Webhook

SMS forwarding webhook for DeepSeek Harness: receives pushes from SMS Forwarder apps, stores them, and exposes sms_recent / sms_search tools.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:huaxiren6/dsh-sms-webhook#fce8fad0c76c11076bc3b79af256f1fca9366172
READMECompatibilityVersions

Compatibility and provenance

Sms Webhook is published as dsh-sms-webhook and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/20/2026

Versions

0.1.2stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
Weekly downloads
0
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

Related plugins

More verified plugins in integrations-communication.

Im@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-base

README

📲 dsh-sms-webhook

DeepSeek Harness 短信转发 Webhook 插件

接收手机短信转发 App 推来的消息,落盘存储,让模型可以读取手机短信(验证码场景开箱即用)。


简介

在电脑上起一个本地 HTTP 服务,手机上的短信转发 App(SMS Forwarder / Tasker / iOS 快捷指令)把新短信 POST 过来,插件落盘存储并暴露给模型查询。

功能特性

  • 📨 sms_recent — 最近短信(可选关键词过滤)
  • 🔍 sms_search — 全文搜索存储
  • 🔑 自动提取 otp 字段(第一个 4–8 位数字),验证码直接可用
  • 💾 JSONL 落盘,重启不丢(上限 5000 条自动裁剪)
  • 🔎 可选 keywords 白名单,只收含指定词的短信(如 ["验证码", "code"])

安装

dsh plugin --profile web add dsh-sms-webhook

手机端设置

用任意能「转发短信到 HTTP」的 App,例如:

  • SMS Forwarder(安卓,最常用)
  • Tasker / MacroDroid 的自定义 HTTP POST
  • iOS 的快捷指令(收到短信 → 获取 URL 内容)

转发目标填:

POST http://<电脑IP>:8899/
Content-Type: application/json

JSON 格式(字段名兼容常见别名):

{
  "from": "10086",
  "body": "您的验证码是 123456,5 分钟内有效。",
  "receivedAt": 1787180000000,
  "device": "Pixel 8"
}
  • from 也可写作 sender / number / phone
  • body 也可写作 text / message / content
  • 时间戳省略则用服务器当前时间

HTTP 接口

方法/路径用途
POST /接收短信(200=已存储,202=被关键词过滤)
GET /?limit=20&q=验证码查询最近短信(q 可选过滤)
GET /health存活探针

配置

键默认含义
host0.0.0.0监听地址(局域网转发保持默认)
port8899监听端口
store$DSH_HOME/data/dsh-sms-webhook/messages.jsonl存储文件
keywords[]非空时只收含这些词的消息(如 ["验证码", "code"])

⚠️ 0.0.0.0 意味着局域网内任何人都能 POST——建议在手机 App 里限制来源,或仅在可信网络使用。

License

MIT