DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

App Native — DeepSeek Harness 插件(DSH Plugin)
← Plugins
A

dsh-app-native

App Native

适用于 DeepSeek Harness (dsh) 的移动端原生开发代理预设:iOS(Objective-C/Swift)、Android(Kotlin/Java)和 HarmonyOS(ArkTS/C++)。安装后会自动写入用户预设根目录,并可在每个配置文件中选择。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:LoserForLoser/dsh-app-native#eb037442648d9a0df37ba6a5db8ebdaab2680528
README兼容性版本

兼容性与来源证明

App Native 以 dsh-app-native 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/11

版本

0.1.0stable
2026/9/11

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/11
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-app-native

A mobile native development agent preset for DeepSeek Harness (dsh): one preset covering iOS, Android and HarmonyOS in all of their native languages, with the platform detected from the workspace.

Installing it lands the preset in $DSH_HOME/.agent-presets/app-native/, so it is selectable in the preset picker of every profile.

Install

dsh plugin --profile web add dsh-app-native

Restart that profile, then pick 移动端原生开发 in the preset picker of a new session.

No manual copying: the bundle's single host row installs the packaged preset/app-native/ into $DSH_HOME/.agent-presets/app-native/ idempotently.

What the preset does

Instead of a generic coding agent, you get one that identifies the platform first and then works by that platform's rules:

PlatformLanguagesDiscipline baked into the persona
iOSObjective-C, Swift, C/C++Do not switch languages (no ObjC→Swift ports), no new pods/packages for a bug fix; get real compiler answers from the lsp_* tools (clangd for .m/.mm/.h/.c/.cpp, sourcekit-lsp for .swift); build with ios_sim_build_run and read the xcodebuild error tail; never hand-edit .xcodeproj/.pbxproj; drive UI through ios_sim_* and confirm every action with expect_text / expect_gone
AndroidKotlin, Java, C/C++ (NDK)Kotlin-first in new code but match the module you are in (no incidental Java→Kotlin rewrites, no View→Compose migration as a side effect); build with the project's own ./gradlew and read Gradle failures; dependencies live in build.gradle(.kts) / version catalogs, not dropped-in jars; never hand-edit generated files (merged manifest, BuildConfig, R, build/, the wrapper); runtime evidence comes from the device loop (adb install / am start + logcat)
HarmonyOSArkTS, C/C++ (Native API), legacy JS/FATake platform APIs from official, version-classified sources (hms_api / hms_docs / hms_api_change / hms_knowledge) and state the target version; prefer ArkTS in new code; arkts_check → build_project as the verify loop; hdc_log for device logs; the hdc-bridge observe → locate → act → verify device loop; never hand-edit hvigor/ohpm output

Shared rules: conservative production changes (no new dependency, permission, entitlement or build configuration without asking), never touch vendored or generated code (Pods/, oh_modules/, .gradle/, build/, *.pbxproj), and — because the active model may be text-only — send device and UI screenshots to modlens_read_image for structured evidence rather than read_image.

Workspace markers the preset dispatches on:

oh-package.json5 + hvigorfile.ts + *.ets                              -> HarmonyOS
*.xcodeproj | *.xcworkspace + Podfile | Package.swift + *.m/*.swift   -> iOS
settings.gradle(.kts) | build.gradle(.kts) + AndroidManifest.xml + *.kt/*.java -> Android

The tool set is identical to the shipped standard preset (files, shell, search, web, skills, plan, goals, subagents, workflows). Only the persona differs — the preset changes who the agent is and how it works, never how much it can do.

Companion plugins (optional)

The capabilities the persona names come from other plugins / host rows, not from this package. Without them the preset still runs — those specific tools are just absent:

ForInstall
lsp_* code intelligence (clangd / sourcekit-lsp / tsc)dsh-lsp-actions, with a servers table in the profile's cordis.patch.yml
iOS simulator/device loop (ios_sim_*, ios_real_start_wda)@zseven-w/dsh-ios (macOS + full Xcode)
HarmonyOS device loop (hdc_*) and HarmonyOS NEXT skillsdsh-hdc-bridge, github:linhay/harmony-next.skills
Vision for a text-only model (screenshot evidence)@liustack/modlens
arkts_check / build_project / hms_*provided by the deployment's DevEco / deveco-cli toolchain

Update and removal

  • Update: dsh plugin --profile web update dsh-app-native, then restart. Note the installer never overwrites an existing $DSH_HOME/.agent-presets/app-native/ that already holds an agent.cordis.yml, so your local edits survive. To take the packaged version instead, delete that directory and restart.
  • Remove: dsh plugin --profile web remove dsh-app-native. The preset files are not deleted for you — they live in your own home directory. Delete $DSH_HOME/.agent-presets/app-native/ when you no longer want them.
  • Switching: a preset can only be chosen on a new session, or one that has produced nothing yet (no messages, no tool calls); a running session keeps the composition it started with.
  • Rename or disable: set presetId or installPreset: false on the host row's config.

Consistency

The preset composition is byte-identical to the shipped standard preset except for the persona block, and it passes agentPresets.standingKeyFor() mount validation (the same mount a session start performs). The preset/app-native/ directory in this package is exactly what gets installed.

License

MIT