N5Tar/dsh-workspace-view0

dsh-workspace-view

DeepSeek Harness workspace file-tree drawer plugin

AI Analysis

核心用途是在 DSH 界面中直接浏览和管理工作区文件。适合在 DSH 中进行代码编写或项目管理、需要频繁查看本地文件结构的用户。

Package
dsh-workspace-view
Version
0.1.0
License
MIT
Last updated
Aug 18, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:N5Tar/dsh-workspace-view

配置

插件配置位于 cordis.patch.yml

- insert:
    - id: workspace-view
      name: dsh-workspace-view
      config:
        maxEntries: 500
        maxScannedEntries: 10000
        ignoredNames:
          - .git
          - node_modules
字段类型默认值约束说明
maxEntriesnumber50015000每层最多返回给 Client 的条目数
maxScannedEntriesnumber10000150000Host 每层最多扫描的目录项数量,用于限制超大目录的 CPU 与内存消耗
ignoredNamesstring[]['.git', 'node_modules']Host 完全忽略的文件或目录名称

ignoredNames 与隐藏文件开关的行为不同:

  • ignoredNames 匹配的条目不会由 Host 返回。
  • 其他点文件仍会返回,但默认在界面中隐藏,可通过抽屉工具栏切换显示。

当扫描或返回结果超过上限时,Client 会在对应目录层级显示截断提示。