
LeslieWylie/dsh-ops-kit
30Last commit Aug 14, 2026
dsh-ops-kit DSH plugin
dsh-ops-kit provides five conservative skill packs for DSH agents: bounded memory search, evidence-based workflow planning, agent-loop coordination, benchmark-result gating, and plugin release hygiene. All tools are read-only by default and never silently create issues, call remote APIs, mutate repositories, or read credentials.
How to install the dsh-ops-kit DSH plugin
dsh plugin --profile <profile> add github:LeslieWylie/dsh-ops-kitThis source command needs manual review. Copying does not run it.
dsh-ops-kit DSH plugin data source
dsh-ops-kit DSH plugin snapshot date: Aug 16, 2026
discovered
What the dsh-ops-kit DSH plugin can do
- Search bounded local Markdown/code roots for prior context with source provenance
- Produce a scope→baseline→work→review→handoff plan for multi-agent or benchmark work
- Audit Git cleanliness, untracked files, and credential-path hygiene
- Generate a complete DSH plugin release checklist with evidence gating
- List all included capability packs via a catalog tool
- Read a packaged full skill definition
Where the dsh-ops-kit DSH plugin fits
- Before an agent claims memory, search configured local roots for relevant prior context
- Verify a plan is evidence-supported before executing it in a multi-agent orchestration
- Audit repository cleanliness and credential safety before a release
- Gate benchmark results on prechecks and artifact integrity
- Produce a release checklist that includes all required steps and evidence
Who the dsh-ops-kit DSH plugin is for
- DSH plugin developers who need to enforce evidence-based agent behavior
- Teams running multi-agent workflows that require coordination and audit trails
dsh-ops-kit DSH plugin limitations
- All tools are read-only; mutating actions must be performed externally
- Requires explicit configuration of local roots for memory search and repository audit
- Package is not on npm registry; install must be from GitHub directly
- No remote API calls; all operations are local to the DSH process working directory
dsh-ops-kit DSH plugin: from the repository README
Quoted from the LeslieWylie/dsh-ops-kit README, the upstream source of the dsh-ops-kit DSH plugin. Copyright remains with the original authors.
**Five read-only skills that make an agent show its evidence — before it claims memory, a finished plan, a clean benchmark, or a safe release.** ## Why this exists Agents are persuasive even when they are wrong. This bundle is built around one rule: before an agent says "I remember this," "the plan is ready," "the benchmark passed," or "the release is safe," it should be able to point at evidence for the claim instead of just asserting it. Five focused skill packs share that discipline — bounded memory search, evidence-based orchestration planning, agent-loop coordination rules, benchmark-result gating, and plugin release hygiene — instead of shipping the same idea as five separate packages that each need their own install and their own place in a plugin index. Everything here is conservative by default: nothing silently creates issues, calls a remote API, starts a benchmark, mutates a repository, or reads credentials. The bundle gives an agent plans, checks, and evidence vocabulary; anything with a side effect stays an explicit, reviewable action taken outside the bundle. ## Install The package is not on the npm registry yet, so install it straight from GitHub. Add it to a DS
Read the full READMERepository license: MIT
dsh-ops-kit DSH plugin questions
How do I install dsh-ops-kit?
dsh-ops-kit is not on npm registry, so you need to install it from GitHub. Add the dependency to your DSH profile's package.json: `"@dsh-community/dsh-ops-kit": "github:LeslieWylie/dsh-ops-kit"`, then reinstall dependencies and restart the profile. Alternatively, use the CLI command: `dsh plugin --profile <profile> add github:LeslieWylie/dsh-ops-kit`.
Do the tools have any side effects?
No, all tools in dsh-ops-kit are read-only. They never create issues, call remote APIs, start benchmarks, mutate repositories, or read credentials. Any side-effect actions must be performed explicitly outside the bundle.
What are the memory search and repository audit tools?
They are `dsh_ops_memory_search` and `dsh_ops_repository_audit`. Both require you to configure local `roots` in the plugin config. `memory_search` searches bounded local Markdown and code directories for prior context. `repository_audit` checks Git cleanliness, untracked files, and credential-path hygiene. Both are read-only.
Can I use dsh-ops-kit without DSH?
No, dsh-ops-kit is designed specifically as a DSH plugin. It must be installed into a DSH profile's configuration and run within the DSH framework. It is not a standalone CLI tool.
What is the 'evidence-based orchestration' skill?
It is the `dsh_ops_workflow_plan` tool. It produces a structured plan (scope → baseline → work → coverage-review → handoff) for research, multi-agent, benchmark, or release work. The plan is designed to ensure an agent shows evidence before making claims.