DeepSeek Harness plugin

dsh-plugin-workspace-rules

Load Cursor, Gemini CLI, and GitHub Copilot workspace instructions into DeepSeek Harness.

Jump to install

Source facts

Repository
youjiaqi421/dsh-plugin-workspace-rules
Latest update
Aug 14, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/youjiaqi421/dsh-plugin-workspace-rules
Plugin: dsh-plugin-workspace-rules
Author: youjiaqi421

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-plugin-workspace-rules

English | 中文

Load existing workspace instructions from Cursor, Gemini CLI, and GitHub Copilot into DeepSeek Harness.

The plugin reads these files from the workspace root, in order:

1. .cursorrules 2. GEMINI.md 3. .github/copilot-instructions.md

Missing and empty files are ignored. Existing files are joined into one ordered system-prompt section and re-read before each model request, so edits apply without restarting Harness. Literal {{...}} text is preserved and is not interpreted as a Harness prompt variable.

Install from GitHub

Until an npm release is available, install the repository into a Harness profile:

dsh plugin --profile web add github:youjiaqi421/dsh-plugin-workspace-rules

pnpm 10 and newer block git dependency build scripts by default. If installation asks you to approve the package build, add the exact package key it reports to the profile's pnpm-workspace.yaml:

allowBuilds:
  dsh-plugin-workspace-rules: true

Then repeat the install command. Allowing the build runs this repository's prepare script on your machine; review and pin the source commit when using it in a trusted setup.

Configure

The installed bundle works with no configuration. To override it, edit the profile's cordis.patch.yml:

- id: workspace-rules
  config:
    root: .
    files:
      - .cursorrules
      - GEMINI.md
      - .github/copilot-instructions.md
      - docs/agent-rules.md
    maxFileBytes: 65536
    maxTotalBytes: 131072
    order: 20

root is resolved from the directory where dsh starts. Every file path must be relative and remain inside that root. Duplicate paths, directories, invalid UTF-8, unreadable files, and size-limit violations fail loudly so the agent never runs with silently incomplete instructions.

Behavior

  • File order is configuration order.
  • Missing files and whitespace-only files contribute nothing.
  • Files are decoded as strict UTF-8; a leading byte-order mark is removed.
  • maxFileBytes limits each source file.
  • maxTotalBytes limits the complete rendered Markdown, including headings.
  • The prompt section defaults to order 20, after the deployment persona and before tool guidance.
  • Rule text is included in the request's recorded system prompt, preserving Harness replay behavior.

Develop

Requires Node.js ^22.19.0 || >=24 and pnpm.

pnpm install
pnpm run check

Install the checkout into a local profile from this directory:

dsh plugin --profile web add .

License

[MIT](LICENSE)