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.

Loci Dsh — DSH Plugin for DeepSeek Harness
← Plugins
L

loci-dsh

Loci Dsh

loci second-brain plugin for DeepSeek Harness (dsh): search / ask / remember your local knowledge base from the web sidebar

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

npx -y @deepseek-ai/dsh plugin --profile web add github:IvenKooLab/loci-dsh#99da1c27b827c761f3e47ccef05bb2e3d197d919
READMECompatibilityVersions
searchaskmemoriesstatus

Compatibility and provenance

Loci Dsh is published as loci-dsh and currently resolves to version 0.1.1. 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/19/2026

Versions

0.1.1stable
9/19/2026

Related plugins

Loading related plugins…

Latest
0.1.1
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/19/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 memory-context.

Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.Reme@agentscope-ai/remeReMe client and memory integrations for TypeScript agentsStratagate Dshstratagate-dshRecent conversations stay vivid. Older ones fade into summaries, not oblivion. StrataGate gives DeepSeek Harness six-layer, time-decaying memory, while lasting events and relationships settle into a knowledge graph. Bring your memories from other AIs withMeow Memorymeow-memoryCross-session project memory for DeepSeek Harness: seven-layer SQLite memory, first-turn snapshot injection, per-message keyword hits, memory_remember/search/project tools, automatic reflection with reflection-fold UI, and idle-triggered dream consolidati

README

loci-dsh

[!TIP] 🧠 Your loci second brain, living in the DeepSeek Harness (dsh) web UI sidebar.

中文文档:README.zh-CN.md

loci-dsh is a UI-layer plugin for dsh ("everything is a plugin"): it mounts a 🧠 loci memory tab in the web sidebar where you can search, ask questions, jot down memories, and inspect your loci knowledge base — without leaving the conversation.

SearchAsk
searchask
MemoriesStatus
memoriesstatus

How it works

Pure UI layer — no Python embedded, no core fork. The plugin's host half (Node) mounts /loci-dsh/api/* routes on the dsh web server and proxies them to a local loci serve-http instance (REST + Bearer auth). The client half (React) registers the sidebar tab via dsh-better-sidebar and talks to the host half same-origin — so loci never needs CORS.

loci-dsh architecture

  • Search — hybrid retrieval with result count, memories-only (tag=memory) and path filters
  • Ask — LLM answers from your knowledge base with citation chips, optional claim-by-claim verification
  • Memories — keyword-driven memory retrieval grouped by day, plus quick capture (title / text / tags)
  • Status — connection state, store summary, per-source chunk counts

loci's HTTP API answers in plain-text envelopes, so the host half re-derives structure (search blocks, stats, citations, memory timestamps from filenames). Parsers live in src/parse.ts and track loci's de-facto wire format.

Requirements

  1. Node.js ≥ 24 (dsh's launcher uses import.meta.main; Node 20/22 exit silently)

  2. dsh: npm i -g @deepseek-ai/dsh

  3. The sidebar host: dsh plugin --profile web add dsh-better-sidebar

  4. loci ≥ v0.6.2 with its HTTP server running and a fixed token in loci's config.toml:

    [http]
    token = "<a random string>"
    
    loci serve-http   # defaults to 127.0.0.1:8765; --host/--port or the [http] section override
    

Install

# from npm (once published)
dsh plugin --profile web add loci-dsh

# or straight from git (lib/ artifacts are committed — no local build needed)
dsh plugin --profile web add github:IvenKooLab/loci-dsh

Then point the plugin at your loci instance. Edit ~/.dsh/profiles/web/cordis.patch.yml and add an id-targeted override row (no insert — the bundle is already mounted by dsh plugin add; a second insert of the same id fails the boot with a duplicate-entry error):

- id: loci-dsh
  config:
    baseUrl: 'http://127.0.0.1:8765'
    token: '<same value as [http] token in loci config.toml>'

dsh patch rows replace config wholesale (no deep merge) — restate every key you care about.

Alternatively use the LOCI_URL / LOCI_TOKEN environment variables before starting dsh web.

Launch dsh web — the 🧠 loci memory tab appears in the bottom workbench sidebar.

Configuration

KeyDefaultDescription
baseUrlhttp://127.0.0.1:8765loci serve-http address
token(empty)Bearer token, matching loci's [http] token
timeoutMs20000Short-request timeout (health/stats/search/remember)
askTimeoutMs180000/ask timeout — a full LLM round-trip (~21 s with glm-4.6)

Development

pnpm install
pnpm build        # tsc typecheck + tsdown dual-entry bundle → lib/
pnpm watch        # rebuild on change

# mount into a profile as a live link (rebuild + browser hard-refresh to apply)
cd ~/.dsh && dsh plugin --profile web add /absolute/path/to/loci-dsh
  • src/index.ts — host half: route mounting, loci proxy, error mapping
  • src/loci-client.ts — loci HTTP client (fetch + AbortSignal timeouts)
  • src/parse.ts — plain-text → structured parsers (search blocks / stats / citations)
  • src/trust-fence.ts — Host-header loopback fence (same semantics as dsh's /api gateway)
  • src/client/ — client half: tab registration, views, zh/en dictionaries

Structured after the dsh-better-sidebar external-plugin guide and dsh-sentinel's standalone build.

Related

  • loci — local-first second brain CLI (pip install loci-rag)
  • DeepSeek Harness — the harness this plugin extends
  • dsh-better-sidebar — the sidebar foundation hosting the tab

License

MIT