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.

DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
L

dsh-lifecycle-inspector

Lifecycle Inspector

Visual lifecycle diagnostics for DeepSeek Harness plugins, Cordis Effects, and teardown outcomes

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Rex16200513/dsh-lifecycle-inspector#86b3e0236b019f224346e14f646856c19065f829
READMECompatibilityVersions

Compatibility and provenance

Lifecycle Inspector is published as dsh-lifecycle-inspector and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/14/2026

Versions

0.2.0stable
9/14/2026
0.1.0stable
9/13/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/14/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
Lifecycle Inspector — DSH Plugin for DeepSeek Harness

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

DSH Lifecycle Inspector

Lifecycle diagnostics for DeepSeek Harness (DSH): see what each plugin owns, spot unhealthy Fiber states, and verify Cordis-managed cleanup without reading raw runtime output.

中文说明 · DeepSeek Harness · Report an issue

This is an independent community plugin built specifically for DSH. It follows DSH's plugin-first architecture and observes the existing Cordis lifecycle instead of modifying the agent loop.

Why use it?

DSH treats registrations as Effects so they can be disposed with their owning plugin. That lifecycle is powerful, but it is difficult to inspect when a plugin fails to load, remains pending, unloads slowly, or appears to leave resources behind.

Lifecycle Inspector turns that internal state into an operator-friendly dashboard and concise diagnostic commands. It helps plugin users answer three practical questions:

  • Which plugins are active, inactive, or need attention?
  • What services, event listeners, commands, tools, and child plugins does a plugin currently register?
  • Did Cordis finish disposing the Effects it manages, and how long did the observed teardown take?

Features

  • Native DSH Web dashboard: health totals, search, problem-only filtering, refresh, and expandable Effect details under Settings → Plugins → Lifecycle.
  • Readable lifecycle reports: groups low-level Effect labels into services, event listeners, commands and tools, child plugins, and cleanup-sensitive resources.
  • Fiber health signals: highlights failed, pending, and unloading plugins and distinguishes active, disabled, disposed, and unmounted entries.
  • Teardown observations: records recent Fiber transitions and flags cleanup that exceeds the configurable threshold.
  • Agent-accessible diagnostics: exposes the read-only lifecycle_inspect tool alongside /lifecycle commands.
  • Lifecycle-safe implementation: its command, tool, event listener, HTTP route, locale, styles, and UI slot are themselves registered as disposable Effects.
  • Bilingual UI and documentation: follows the active DSH locale and supports English and Chinese.

Install

Requirements: DSH Web profile and Node.js ^22.19.0 || >=24.0.0.

dsh plugin --profile web add github:Rex16200513/dsh-lifecycle-inspector

Restart the DSH Web process after installation, then open Settings → Plugins → Lifecycle.

Use it from commands or an agent

/lifecycle list
/lifecycle list --verbose
/lifecycle inspect lifecycle-inspector
/lifecycle inspect <plugin-id> --verbose

/lifecycle list gives a short health summary. inspect accepts a loader path, configured entry ID, full package name, or package name without the dsh- prefix. Add --verbose only when exact Effect labels are useful.

Agents can call the read-only lifecycle_inspect tool with an optional plugin argument. The tool observes runtime state and does not unload or mutate plugins.

Configuration

The included DSH patch installs the plugin with these defaults:

- insert:
    - id: lifecycle-inspector
      name: dsh-lifecycle-inspector
      config:
        slowTeardownMs: 2000
        historyLimit: 100
  • slowTeardownMs controls when an observed teardown is reported as slow.
  • historyLimit limits retained in-memory Fiber transitions.

What the result proves

A cleared Effect tree means Cordis completed every disposer registered in that tree. It does not prove that the plugin created no process, timer, socket, watcher, or other resource outside Cordis Effects. Lifecycle Inspector states this limit in both its human reports and model-tool description so a clean result is not mistaken for a complete external-resource audit.

External resource probes are a natural future extension, but they should remain separate providers: the core inspector stays read-only and reports authoritative Cordis state.

DSH architecture fit

Lifecycle Inspector is intentionally a plugin, not a change to DSH's agent loop. It uses DSH and Cordis extension points for commands, tools, Web UI, HTTP reporting, localization, lifecycle events, and cleanup. This keeps the feature installable, removable, and independently evolvable while demonstrating the same Effect ownership rules it helps users inspect.

Contributing

Bug reports and focused feature proposals are welcome in GitHub Issues. When reporting a lifecycle problem, include the affected DSH version, plugin ID, observed phase, and whether the resource was registered through ctx.effect() or ctx.on().

MIT License.