DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Context Taxonomy — DeepSeek Harness 插件(DSH Plugin)
← Plugins

@artificialnotimbecile/dsh-context-taxonomy

Context Taxonomy

DeepSeek Harness Web 配置的逻辑调用上下文分类体系

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

npx -y @deepseek-ai/dsh plugin --profile web add @artificialnotimbecile/dsh-context-taxonomy@0.1.0
README兼容性版本

兼容性与来源证明

Context Taxonomy 以 @artificialnotimbecile/dsh-context-taxonomy 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.0stable
2026/8/14

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
978.2 kB
文件数
42
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
32
查看源码 ↗
项目主页 ↗
README Badge

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

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

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

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

相关插件

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

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。

README

@artificialnotimbecile/dsh-context-taxonomy

See how DeepSeek Harness assembles each ordinary agent call: the complete system prompt, conversation history, current prompt, tool definitions, model options, token composition, cache usage, and logical reasoning evidence.

This read-only Web-profile plugin is designed for learning Harness architecture and debugging agent behavior. It captures the provider-neutral GenerateOptions values that reach this plugin's public llm/stream listener and presents them as an explorable Context Taxonomy beside the conversation. Use it to study prompt construction, compare presets, audit which tools the model could call, diagnose context growth, and understand retries without reading a Session log by hand.

A real DeepSeek Harness session opening Context Taxonomy and inspecting the assembled context

Recorded from a real DeepSeek-V4-Flash run on the official Harness 0.1.0-rc.6 Web profile—not a mock or fixture.

It does not capture a provider HTTP body, headers, endpoint, transport attempt, or delivery status. Calls that fail before LLM dispatch or are intercepted by an earlier waterfall listener are not visible.

Install

The package targets DeepSeek Harness 0.1.0-rc.6 exactly.

npx @deepseek-ai/dsh@0.1.0-rc.6 plugin --profile web add @artificialnotimbecile/dsh-context-taxonomy@0.1.0

For local development, pack the repository and install the resulting tarball:

pnpm install --ignore-scripts
pnpm run build
pnpm run test
pnpm --filter @artificialnotimbecile/dsh-context-taxonomy pack --pack-destination "$PWD"
npx @deepseek-ai/dsh@0.1.0-rc.6 plugin --profile web add ./artificialnotimbecile-dsh-context-taxonomy-0.1.0.tgz

A pinned Git source install can target the workspace subdirectory:

npx @deepseek-ai/dsh@0.1.0-rc.6 plugin --profile web add \
  'github:ArtificialNotImbecile/dsh-context-taxonomy#v0.1.0&path:packages/dsh-context-taxonomy'

This runs the package's prepare build. The first attempt stops safely and prints the exact codeload URL + commit + workspace-path key pnpm 11 requires under allowBuilds in the Web profile's pnpm-workspace.yaml; review the pinned source, add that exact key, then repeat the command. A package-name-only entry is insufficient for Git dependencies. The precompiled npm package is the normal installation path.

The bundle is Web-only because it uses the Web profile's storage-domain, API Gateway, client-module, and conversation-view services.

Open a Session and select the Context Taxonomy conversation tab. New ordinary agent-loop calls are followed automatically; selecting an older call pins the view until Jump to latest is used.

Configuration

The bundle patch supplies these explicit defaults:

FieldDefaultMeaning
root$DSH_HOME/context-taxonomyAbsolute private sidecar directory.
captureContentsanitizedStore sanitized logical JSON; structure-only stores summaries only.
retentionDays30Maximum settled-capture age.
maxCapturesPerSession200Maximum settled rows per Session lifecycle.
maxStoredBytes536870912Global compressed-blob budget.
maxCaptureBytes16777216Maximum sanitized bytes for one blob. Larger calls keep a summary with omitted-size-limit.
maxPendingCaptures64Background capture admission cap. Full queues omit new captures without changing the model stream.
extraRedactKeyPatterns[]Additional case-insensitive Unicode regular expressions for object keys.

The logical-request and RPC schemas use formatVersion: 1, taxonomyVersion: 1, and source: "dsh-logical-call". Captures are fenced by Session id, creation time, and working directory so a reused id cannot read an older lifecycle's sidecar.

Privacy and retention

Installation is the opt-in. The default bundle stores sanitized logical JSON locally for 30 days, up to 200 captures per Session lifecycle, 512 MiB globally, and 16 MiB per capture. The private data directory uses mode 0700; gzip blobs use 0600. Built-in secret-key, bearer token, credential query, data URL, and large-base64 redaction cannot be disabled. The plugin does not provide at-rest encryption or a delete Remote in v1.

The UI labels provider-reported usage as actual and category composition as estimated. A cache usage field only records what the downstream usage chunk disclosed; it does not identify which section hit a provider cache. The DeepSeek reasoning check evaluates logical messages only and is not evidence about serialized provider content.

License

MIT