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.

Introspect — DSH Plugin for DeepSeek Harness
← Plugins
I

dsh-introspect

Introspect

Local-first self-observability for DeepSeek Harness: record real events, project them onto five observation axes (MEL/ROI/ARCTIC/TSA/RRI), store them in local SQLite, and watch MEL x RRI on a right-side panel.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:guhanfei-ai/dsh-introspect#c8f8a5156de5c7833ed890e8603c31dd535d9fb1
READMECompatibilityVersions

Compatibility and provenance

Introspect is published as dsh-introspect and currently resolves to version 0.1.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/17/2026

Versions

0.1.0stable
9/17/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in ui-customization.

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)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundle

README

dsh-introspect

Local-first self-observability for DeepSeek Harness.

Observe your events, energy, time, value, direction and reality feedback — locally.

Observe the world. Introspect the self.


What it does

Records real events into a local SQLite database and projects them onto five observation axes:

AxisQuestionRange
MELHow much usable mental energy is available?0–200
RRIDid the real world observably move?0–100
ROIWhat did this return to me relative to what it cost?unbounded
ARCTICDid this move me toward where I want to go?-10..+10
TSAHow much finite time did this consume?minutes, nullable

The right-side Introspect panel shows all five, a MEL × RRI time series, and recent events.

Why MEL × RRI? High internal energy does not necessarily imply high external progress. dsh-introspect deliberately keeps mental energy and reality feedback as separate dimensions so you can see when they diverge.


Install

dsh plugin --profile web add link:/path/to/dsh-introspect

Or from a published tag:

dsh plugin --profile <profile> add <pkg>#v<version>

Tools

ToolDescription
introspect_recordStore one event (only when the user explicitly asks to record).
introspect_statusToday's compact state block.
introspect_todayToday's aggregation and timeline.
introspect_historyBounded multi-day query with filters and sorting.
introspect_getOne event with its verbatim raw text.
introspect_updateCorrect a score when the user says it is wrong.
introspect_deleteRemove one event (requires explicit user confirmation).

How it works

You describe what happened
    ↓
DeepSeek Harness model understands the event
    ↓
introspect_record stores it in local SQLite
    ↓
Introspect panel refreshes automatically
  • The plugin itself never calls any LLM.
  • Events are recorded only when you explicitly ask ("记录一下", "记一笔", "/self ...").
  • All data stays in $DSH_HOME/introspect/events.sqlite3 on your machine.

Right-side panel

The Introspect panel (toggle with the "内观" button) shows:

  1. Five metrics — latest MEL, RRI, ROI, ARCTIC, TSA with trend arrows and averages.
  2. MEL × RRI chart — dual-line time series with the energy-reality gap shaded between them.
  3. Recent events — click to expand full details (raw text, all metrics with reasons, tags).
  4. Live refresh — the panel updates automatically after each recorded event.

Supports dark mode and light mode (follows the DeepSeek Harness theme).


Data

ItemLocation
Database$DSH_HOME/introspect/events.sqlite3
SchemaPRAGMA user_version, single events table
BackupCopy the .sqlite3 file; it's a standard SQLite database

Override with dbPath in the plugin config (cordis.patch.yml).


Privacy

  • No cloud account. No registration, no login, no remote identity.
  • No upload. The plugin does not send its database or any event data to any external service.
  • No external AI calls. The plugin calls no LLM API directly.
  • No telemetry. No analytics, no usage tracking.
  • No auto-capture. Only explicitly requested events are stored.

If the DeepSeek Harness session uses a remote AI provider, the conversation content (including event descriptions) may transit that provider's infrastructure. The plugin controls only its own local storage.

See docs/PRIVACY.md for the full statement.


Development

npm install
npm run build:client   # build client.js from src/client/ fragments
npm test               # run all tests
npm run verify         # build + syntax check + test

Tests cover: SQLite initialization, migration, CRUD, unicode, null metrics, timezone boundaries, tool validation, approval hooks, API trust fence, client pure functions, chart geometry, and secret/hygiene scans.


Metrics documentation

See docs/METRICS.md for the full definition of each axis, their ranges, bands, aggregation rules, and limitations.


Architecture

See docs/ARCHITECTURE.md.


License

MIT