AI Agent Hub
Back to plugins
⚙️

dsh-project-ops

Workflow Updated 2026.08.28

Run the following command in DeepSeek Harness:

dsh plugin install Missher12/dsh-project-ops

Paste the following prompt into your AI chat to install this plugin:

Install the dsh-project-ops plugin in DeepSeek Harness; source at https://github.com/Missher12/dsh-project-ops ; run dsh plugin install Missher12/dsh-project-ops.

About this plugin

In Agent-driven workflows, a recurring source of friction is this: the Agent knows which files changed but lacks a bounded map of the project declared tasks to answer which checks should run, how they depend on each other, and whether results can be verified. dsh-project-ops fills that gap as a declarative execution-autopilot Bundle for DeepSeek Harness. It reads only task declarations from package.json, Makefile, Justfile, and pnpm workspaces; it installs no second shell, job registry, or workflow engine. Approvals, cancellation, and output retention remain under the Harness host.

Six model tools carry the core logic. task_list enumerates bounded declared tasks with their dependency edges. task_plan accepts a set of changed files and a verification goal (test, lint, typecheck, or build), performs topological ordering, and restricts auto-selection to those four safe purposes. task_run offers foreground, background, and auto modes; auto is background-first with a bounded wait window and returns a terminal or running receipt. task_collect polls under Harness JobRegistry caller-ownership enforcement. verification_gate rediscovers manifests, recomputes the plan, and issues a passed, pending, failed, or stale verdict on version-2 receipts, returning only task IDs and reason codes without echoing commands, paths, or approval content. capability_search ranks only the calling Agent visible tool schemas and in-project tasks.

Built for teams already running DeepSeek Harness on monorepos or Make/Just workflows that want the Agent to execute checks autonomously and produce auditable receipts, without introducing a parallel shell job system or an extra workflow engine. Execution policy authority stays with the Harness host.

Use Cases

  • After an Agent modifies files across a monorepo, automatically plan and run the affected test, lint, and typecheck tasks
  • Delegate long-running build tasks to the background and collect a terminal receipt to gate the next verification step
  • In local or CI pipelines, gate on receipt reason codes to confirm Agent-submitted results are complete and not stale
  • Agent discovers runnable tasks within a bounded workspace and selects foreground or auto mode for dispatch

Best For

  • Teams running Agent workflows on monorepos with DeepSeek Harness
  • Engineers who declare tasks via Make, Just, or pnpm workspaces and want autonomous check execution without an extra engine
  • Platform or infra teams that need auditable execution receipts to gate release or merge pipelines