DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Deepjit — DeepSeek Harness 插件(DSH Plugin)
← Plugins
D

deepjit

Deepjit

DeepJIT:将重复的代理工作流即时编译为适用于 deepseek-harness (dsh) 的技能和流程模板

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

npx -y @deepseek-ai/dsh plugin --profile web add github:fly3366/DeepJIT#a370f9b4be258bf1680e48fa659001c683cdddb3
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/20

相关插件

正在加载相关插件…

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

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

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

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

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

相关插件

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

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序Subagent Claude Code@deepseek-ai/dsh-subagent-claude-code基于官方 Agent SDK 的一次性 Claude Code 子代理提供方

README

DeepJIT banner

DeepJIT

A JIT compiler plugin for deepseek-harness (dsh).

中文文档

Overview

DeepJIT watches agent execution traces, mines recurring "hot" workflows, and compiles them with an LLM into reusable skills (markdown) or flows (step templates) — then feeds them back into the running harness, no restart. It is for anyone who repeats similar multi-tool workflows and wants dsh to turn them into fast, reusable assets.

traces ──► SQLite ──► hot-path mining ──► LLM compile ──► skills / flows ──► dsh
  • Artifacts live under ~/.dsh/deepjit/ and hot-reload into dsh.
  • JIT never compiles its own tools, so it can't feed on itself.
  • Lifecycle (compiler-style): an AOT pass validates flows against the live tool registry and constant-folds literal args; tiering promotes hot, reliable skills to flows and deoptimizes unreliable flows; GC prunes stale artifacts.

Compatibility

ItemValue
DSH version@deepseek-ai/dsh 0.1.0-rc.8 (runtime-verified)
DSH mainline141eb6fe (static-checked 2026-08-19; used APIs unchanged)
Verified commit5869674 (2026-08-13)
Node^22.19 || >=24
Profilesheadless, web

dsh is pre-release; APIs may drift. Pins @deepseek-ai/* to 0.1.0-rc.6.

Install / Uninstall

# install (git, no npm release needed)
dsh plugin --profile web add github:fly3366/DeepJIT

# disable for one profile
dsh plugin --profile web remove deepjit

# fully remove local data
rm -rf ~/.dsh/deepjit

Quick start

dsh plugin --profile headless add github:fly3366/DeepJIT
DEEPSEEK_API_KEY=... dsh --profile headless "read package.json and tsconfig.json, then summarize"
# repeat similar tasks; deepjit mines and compiles hot flows automatically
dsh --profile headless "use deepjit_status to list compiled artifacts"

Configuration

Override in cordis.patch.yml or a profile patch. Key options (full list in src/config.ts):

KeyDefaultDescription
enabledtruemaster switch
summarizeIntervalMs600000JIT cycle (mine + compile)
minRepeat3min occurrences for a hot sequence
argumentAwarefalseinclude sorted arg-key signatures in mined sequences
minFlowSteps2min tool steps a flow must have to be compiled
minPatternValue6min value score (count × steps) to justify a compile
flushBatchSize200trace rows per batched SQLite write
maxPendingCalls10000cap for in-memory pending/raw maps (bounds memory)
minerMaxRows20000max trace rows read per session per mining cycle
transcriptMaxRows2000max tool rows read per compile transcript
gcEnabled / gcStaleMs / gcProtectMstrue / 14d / 1dGC: disable artifacts unused beyond gcStaleMs after a gcProtectMs grace
dryRunfalsepublish artifacts as disabled; enable manually via deepjit_status
traceRetentionMs / patternRetentionMs7d / 7dprune trace rows / stale uncompiled patterns older than this
deoptMinUses / deoptMaxSuccessRate5 / 0.5disable a flow used ≥N times with success rate ≤ this (deoptimization)
qualityMinUses / minQuality5 / 0

Sensitive: no keys are stored. The compile call uses dsh's credential service or the launching environment's DEEPSEEK_API_KEY.

Permissions & data

  • Files: writes only under ~/.dsh/deepjit/ (SQLite traces, skills, flows, log); reads session JSONL via ctx.sessionPersistence for compile drill-down.
  • Network: LLM calls go through dsh's ctx.llm (DeepSeek provider); no other network access.
  • Credentials: none stored; resolved by dsh or the environment.
  • User data: stores compact execution traces (tool args/results, message text).
  • Tools: flow steps run through ctx.tools.execute and the normal permission gates.
  • Observability: dsh's OTel telemetry covers agent sessions only; DeepJIT keeps its own counters (traces flushed, compiles, LLM latency, GC/deopt/promote) and emits GenAI semantic-convention spans (gen_ai.*: system/model/usage tokens) for each LLM call. Read counters via deepjit_status {action:"metrics"}; spans export via dsh-o11y-plugin when present.

Troubleshooting

  • Log: ~/.dsh/deepjit/deepjit.log. Database: ~/.dsh/deepjit/deepjit.db.
  • MISSING_CREDENTIAL → export DEEPSEEK_API_KEY or store it in dsh's Models page.
  • TRANSPORT/NO_ADAPTER on compile → usually a transient LLM call failure; deepjit retries and falls back to the next cycle.
  • Roll back: dsh plugin --profile <p> remove deepjit, then rm -rf ~/.dsh/deepjit.

Development

npm install && npm test     # node:test, run natively via Node type stripping
npm run typecheck && npm run build

See CONTRIBUTING.md and AGENTS.md.

License & security

MIT. Report vulnerabilities privately per SECURITY.md.

disable active artifacts used ≥N times whose quality score < minQuality (0 = off)
promoteMinUses / promoteMinSuccessRate5 / 0.8recompile a hot, reliable skill's pattern as a flow (promotion)
llmProvider / llmModeldeepseek-official / (session)compile model; empty = reuse session model
localeautoen / zh / auto (dsh locale → LANG → English)