DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Electro Lab — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-electro-lab

Electro Lab

DSH plugin: electrical & electronics problem solving

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-electro-lab@0.13.0
READMECompatibilityVersions

Compatibility and provenance

Electro Lab is published as dsh-electro-lab and currently resolves to version 0.13.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.13.0stable
9/17/2026
0.12.0stable
9/16/2026
0.11.0stable
9/15/2026
Show 13 more versionsCollapse versions
0.10.0stable
9/6/2026
0.9.0stable
9/2/2026
0.8.1stable
9/2/2026
0.8.0stable
9/1/2026
0.7.0stable
8/30/2026
0.6.0stable
8/29/2026
0.5.1stable
8/29/2026
0.5.0stable
8/29/2026
0.4.0stable
8/27/2026
0.3.0stable
8/27/2026
0.2.0stable
8/26/2026
0.1.1stable
8/26/2026
0.1.0stable
8/26/2026
Latest
0.13.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
2 MB
Files
71
Surface
web
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
416
Security scan
✓ v0.13.0 scan passed
Last push
9/17/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

README

DeepSeek Harness ElectroLab

An electrical & electronics calculation plugin for the DeepSeek Harness.

简体中文

Contents

  • Install
  • ElectroLab Mode
  • Records
  • Article generation
  • External solvers
  • Configuration
  • Documentation
  • License

Install

dsh plugin --profile web add dsh-electro-lab

ElectroLab Mode

The plugin works as an agent preset: pick ElectroLab Mode when starting a session and ask any electrical or electronics question in plain language. The session is isolated to the plugin's tools, with no shell, file system or network, so every number in the answer comes from the engine, and the agent stops and asks when the conditions are insufficient.

All calculation happens inside a deterministic engine. The agent writes typed values into slots, calls one of 38 built-in solvers, and reads the result back; the engine converts units at the calculation boundary and records every step into a readable record.

primitiveeffect
setwrites one typed value into a slot
getreads one slot back
callruns a registered solver and stores its result
solver_inforeturns a solver's signature before it is called
record_question / record_analyse / record_answerbracket a solve into a record

The catalog covers expression algebra, series, transfer functions, DSP and DFT, signal quality, circuits, electronics, RF and Smith chart, transmission lines, noise and filter design.

Records

Settled records are listed in the client panel's Records tab, refreshed every 5 s, and a record that was never sealed is marked incomplete. Opening one shows its timeline: a collapsible card per write, read, call and failure, values as JSON trees, the toolbar and title fixed while the timeline scrolls. The list supports multi-select and delete.

A record is the process of one solve: every step reads on its own, and a solve that was interrupted continues from its record after a host restart.

Article generation

Each record can be written up as a standalone solution article. The host LLM writes it from the trace — question, conditions, analysis, solver steps with their arguments and results, and the final answer — in the model's own voice, never mentioning the plugin.

formatoutput
Markdowna flat .md file, never compiled
LaTeXa XeLaTeX document, compiled to PDF by a LaTeX driver

The setup dialog remembers the article language, the output directory and the file name. Compilation needs latexmk or MiKTeX's texify together with the xelatex engine, and the dialog checks the toolchain once per host start: without a usable driver Generate is disabled with the reason shown. A run is cancellable, and its progress dialog minimizes to a corner pill that survives navigation. The article or its folder can be opened from that dialog.

External solvers

Beyond the built-in catalog you can register solvers of your own, reached over http. A declaration lives in ~/.dsh-electro-lab/external-solvers.jsonl and is compiled into the solver registry at engine start, so solver_info and call treat it like a built-in.

way to declarehow
the panelExternal solvers tab: list, add, edit, enable, disable, delete
the agentexternal_solver_add, external_solver_update, external_solver_delete
the fileedit the archive directly

A declaration carries a name, a description, the parameters, an explicit returns shape and the endpoint, and it may be written in the panel's guided form. Changes apply after a host restart, and the panel shows a pending-restart notice until then.

The peer answers a POST of { "requestId": …, "args": … } with { "requestId": …, "result": … }, or with { "requestId": …, "error": "…" } to report a failure. Arguments and results are typed values, so units travel as SI numbers rather than as symbols or unit words.

Engine manual §6 holds the full contract, and external-solvers-example/ is a runnable peer with a field-by-field register guide.

Configuration

settingmeaning
DSH_ELECTRO_LAB_HOMEthe plugin home, ~/.dsh-electro-lab by default
DSH_ELECTRO_LAB_LOG_LEVELdebug, info, warn, error or off; default info

The home holds the records, the declaration archive, the plugin state and one log file per host run. Both are described in the engine manual: storage and logs.

Documentation

documentcontent
Engine manual · 简体中文typed values, primitives, the solver catalog, external solvers, storage, logs
external-solvers-example · 简体中文a runnable echo peer and the field-by-field register guide
Contributing · 简体中文setup, commit conventions, release process

License

MIT © 2026 curtainsmall