New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@diegosouza.pw/dsh-plugins

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@diegosouza.pw/dsh-plugins

Unofficial catalog and safe installer for DeepSeek Harness plugins

latest
npmnpm
Version
0.1.0
Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

@diegosouza.pw/dsh-plugins

Unofficial community project. Not affiliated with, endorsed by, or sponsored by DeepSeek. DeepSeek names and marks belong to their respective owner.

@diegosouza.pw/dsh-plugins is a thin catalog client and safety boundary for public DeepSeek Harness (DSH) plugin entries. Its canonical invocation is:

npx @diegosouza.pw/dsh-plugins --help

The npm artifact is MIT-licensed executable JavaScript built from a private source repository. It contains no private harvesting logic, candidate ledger, credentials or source maps.

Requirements

  • Node.js 20 or newer.
  • The official dsh executable on PATH for add, update and remove operations.
  • A public catalog snapshot for non-empty discovery. Version 0.1.0 embeds the intentionally empty public snapshot at revision d4a7dc788572a48d12f45eb0188f1ad978a1b8a3.

Discover and validate

npx @diegosouza.pw/dsh-plugins search vision
npx @diegosouza.pw/dsh-plugins info example-plugin
npx @diegosouza.pw/dsh-plugins catalog validate --catalog ./awesome-omni-dsh-plugins
npx @diegosouza.pw/dsh-plugins catalog validate \
  --catalog ./awesome-omni-dsh-plugins \
  --revision <40-character-commit>
npx @diegosouza.pw/dsh-plugins catalog docs-check ./awesome-omni-dsh-plugins
npx @diegosouza.pw/dsh-plugins catalog github-forms-check ./awesome-omni-dsh-plugins

An empty catalog is valid and reports 0 entries valid; catalog is empty. catalog validate performs local structural and semantic validation: safe YAML, the public schema, SPDX, exact SemVer, SHA-512 SRI and duplicate identity checks. It does not prove repository identity or pinned-source evidence. Those remain a separate maintainer provenance gate. The revision is a declared local pin because the public layout has no signed snapshot manifest.

Safe installation boundary

Preview an operation without downloads, file changes or subprocesses:

npx @diegosouza.pw/dsh-plugins add example-plugin --profile web --dry-run

Dry-run is strictly syntactic. It does not load a local or remote catalog and does not read or write install state, profiles, cache files, locks or subprocesses. No network request is made.

The official DSH command delegates plugin management to pnpm. Package lifecycle or prepare code may execute during that delegated step. The CLI therefore refuses mutation unless you provide explicit consent:

npx @diegosouza.pw/dsh-plugins add example-plugin \
  --profile web \
  --allow-code-execution
npx @diegosouza.pw/dsh-plugins update example-plugin \
  --profile web \
  --allow-code-execution
npx @diegosouza.pw/dsh-plugins remove example-plugin \
  --profile web \
  --allow-code-execution

Native Windows policy for v0.1.0: code-executing add, update, and remove are disabled before any profile, state, cache, or subprocess access because complete descendant containment cannot be proven. Use WSL for mutations. --dry-run and the read-only catalog, search, info, list, and doctor commands remain available. A native Windows recovery marker is never auto-cleared; doctor reports that documented manual recovery is required.

Before delegation, the CLI:

  • accepts only catalog entries in eligible or verified state for installation;
  • blocks unavailable, archived, stale and quarantined entries;
  • requires an exact npm version with matching SHA-512 integrity, or an allowlisted GitHub source repository with a full 40-character commit pin;
  • stages content under a canonical private cache using temporary paths and atomic rename;
  • rejects path traversal and symlink escapes;
  • reads package metadata without loading or executing plugin code;
  • snapshots the complete DSH profile and restores it if DSH returns a failure;
  • serializes every profile behind one canonical DSH-home mutation lease and global fencing lock;
  • stores catalog-managed install state atomically with generation and fencing-token CAS;
  • records old and intended install-state fingerprints before spawn, then makes a durable roll-forward decision only after DSH success and an active-profile fingerprint;
  • invokes dsh plugin --profile <name> ... with a literal argument array and shell: false.

Add and update use a private per-transaction artifact lease and an immutable bounded loopback byte channel. A normal or fully reaped POSIX child releases that lease only after close. If the POSIX process group cannot be reaped, the CLI retains the profile backup, journal, private artifact and global mutation lock; the durable pre-spawn barrier blocks every later mutation. Native Windows code-executing mutations are disabled rather than claiming unproven descendant containment. Explicit POSIX recovery is available with:

npx @diegosouza.pw/dsh-plugins recover

Recovery does not load the catalog. Before durable DSH success it rolls back; after durable DSH success it verifies the active profile and rolls the intended state forward. Profile finalization, artifact release, and marker removal are separate idempotent phases, and the marker is removed last. Native Windows markers remain fail-closed for documented manual recovery. doctor reports the boundary and never performs recovery itself.

Add and update converge on the catalog pin and are idempotent. Removing an entry that is not catalog-managed is also a successful no-op.

Inspect the local environment

npx @diegosouza.pw/dsh-plugins list --profile web
npx @diegosouza.pw/dsh-plugins doctor

These commands are read-only. Output never intentionally includes tokens, credentials, stack traces or absolute DSH-home paths.

Security scope

A catalog listing is not an endorsement, certification or guarantee. eligible means structural and integration checks passed. Only verified means an installation smoke test passed for the pinned artifact. Review the original repository, commit, license and package behavior before granting --allow-code-execution.

Pinned catalog snapshots

--catalog accepts a local catalog directory, a local omni-dsh-catalog-snapshot-v1 JSON file, or the allowlisted raw GitHub snapshot URL. Remote snapshots require --revision <40-character-commit-sha> and the same SHA must appear in the URL and snapshot document. Redirects, alternate hosts, traversal, symlinks, oversized inputs, and revision mismatches are rejected before catalog validation.

FAQs

Package last updated on 18 Aug 2026

Related posts