Перейти к основному содержимому
M

dsh-medseek

mr-neutr0n/dsh-medseek

Clinical documentation toolkit for DeepSeek Harness: SBAR and I-PASS handovers, SOAP and APSO notes, admission H&P, discharge summaries with pending-results enforcement, patient-instruction readability scoring, HIPAA Safe Harbor de-identification, and cit

Установка

dsh plugin --profile web add github:mr-neutr0n/dsh-medseek

README

MedSeek

ci license node dsh

Clinical documentation and reference tools for DeepSeek Harness, as an installable dsh plugin bundle.

Built for the daily work of physicians, advanced practice providers, nurses, and residents: rounding notes, handovers, admissions, discharges, patient instructions, and cited answers from FDA labeling, MedlinePlus, PubMed, and ClinicalTrials.gov.

MedSeek drafts; a named clinician reviews everything before it is used. It is not a medical device.

中文说明 · Intended use · Recipes · Security

GUI integration

The bundle does not just ship tools; it takes over its slice of the dsh web GUI through sanctioned plugin surfaces only:

SurfaceWhat you see
ThemeWarm-paper light and espresso dark palettes across 85 platform tokens, including markdown citation chips, code banners, composer input, and scrollbars
Polish layerSolid-core keyboard focus rings (3:1+ on every surface), teal selection tint, themed scrollbars, and a global reduced-motion kill switch
Brand badgeA small ring mark on the frame overlay layer; decorative, click-through safe
Settings cardGuard mode (block / ask / off) and the screened-tool list editable in Settings > Plugins, with revision-fenced writes that apply live
Tool resultsLookup tools render as native search cards with structured source lists; label lookups render as fetch summaries pointing at DailyMed

Accessibility posture: every text pair is asserted in CI against WCAG 2.x AA ratios and APCA Lc gates (75 body / 60 general) in both modes. APCA remains draft guidance, so compliance claims are WCAG 2.2 AA only.

Why

Ambient scribes capture encounters. They do not structure a note against a checklist, insist on pending results at discharge, force explicit allergy statements on admission, score patient-instruction readability, or attach a citation and retrieval date to every fact they surface. That post-hoc, deterministic layer is what MedSeek adds, locally and without EHR access, on top of any dsh deployment.

Design rules, enforced in code:

  • Drafts, never directives. Every drafting tool returns structure plus a gap list under a review banner. Nothing prescribes care.
  • Cited or silent. Lookup results carry source, identifier, link, and retrieval date. An empty result says so instead of filling the gap.
  • Terms and codes only leave the building. A PHI guard screens every network-tool call for identifiers before it runs; the destination allowlist has exactly five hosts.
  • Structure, not judgment. Documentation checklists check presence. No diagnosis ranking, no severity scoring, no billing-code-level suggestion, no interaction checking.

Tools (11)

ToolAnswersBasisNetwork
deidentify_textStrip HIPAA Safe Harbor identifiers, typed placeholders45 CFR 164.514(b)(2) categoriesno
sbar_handover_draftSBAR or I-PASS structure, then a gap listIHI SBAR; Starmer, NEJM 2014no
discharge_summary_draftSkeleton with pending results requiredJoint Commission components; Kripalani, JAMA 2007no
progress_note_draftSOAP or APSO daily/follow-up note, MDM-aware fieldsWeed, NEJM 1968; AMA CPT E/M elementsno
admission_history_physical_draftAdmission H&P, allergies and reconciliation explicitJoint Commission 24-hour H&P; AMA E/M hospital careno
patient_instructions_draftPlain-language scaffold plus readability gradeFlesch-Kincaid, SMOG; AHRQ targetno
note_completeness_checkMissing sections, error-prone abbreviations, PENDING markersJC Do Not Use; ISMP listsno
drug_label_lookupVerbatim FDA label sections, DailyMed linkopenFDA, RxNormyes
patient_education_lookupNLM-curated handouts in English or SpanishMedlinePlus Connect, Clinical Tablesyes
pubmed_evidence_searchCitations with abstracts, reproducible queryNCBI E-utilitiesyes
trial_searchStudies with NCT number, status, phase, sponsorClinicalTrials.gov v2yes

Draft tools never invent clinical facts: called once they return the template, called again with filled_fields they validate and assemble the draft. Lookup tools display source material verbatim where the source is text.

Architecture

flowchart LR
    subgraph dsh["DeepSeek Harness (host)"]
        WEB[Web GUI]
        TOOLS[Tool registry]
    end
    subgraph BUNDLE["dsh-medseek bundle"]
        PATCH[cordis.patch.yml<br/>persona + rows]
        HOST[medseek-tools<br/>11 tool definitions]
        GUARD[medseek-guard<br/>PHI egress screen]
        BRAND[medseek-brand<br/>title, favicon, tokens]
        CLIENT[client theme<br/>Owly-derived palette]
    end
    subgraph LOCAL["Local, deterministic"]
        T1[Templates<br/>SBAR I-PASS SOAP APSO H&amp;P]
        T2[Safe Harbor engine]
        T3[Readability scorer]
    end
    subgraph API["Allowlisted reference APIs"]
        A1[eutils.ncbi.nlm.nih.gov]
        A2[api.fda.gov / rxnav / dailymed]
        A3[medlineplus / clinicaltables]
        A4[clinicaltrials.gov]
    end
    WEB --> PATCH --> HOST --> TOOLS
    HOST --> T1 & T2 & T3
    HOST -- arguments screened by --> GUARD
    HOST --> A1 & A2 & A3 & A4
    CLIENT --> WEB

One package, three host plugins (medseek-tools, medseek-guard, medseek-brand) and one client plugin for theming, polish, the badge, and the settings card, composed by cordis.patch.yml. Install pins the whole bundle.

Install

dsh plugin --profile web add dsh-medseek@0.1.0

Restart the web GUI or hard-refresh the tab, then confirm the layer:

dsh --profile web --dump-config   # expect "# == dsh-medseek"

If dsh is not on PATH:

npx -y --package @deepseek-ai/dsh@0.1.0-rc.8 dsh plugin --profile web add dsh-medseek@0.1.0

Uninstall with dsh plugin --profile web remove dsh-medseek. From a local checkout: clone, pnpm install && pnpm verify, then dsh plugin --profile web add ./.

Quick start

Use synthetic text first. Never paste a real chart into a model provider that is not covered by your BAA.

Round a patient. Paste overnight events and vitals, then: "Draft today's SOAP note." The agent scaffolds with progress_note_draft, drafts each field from context, validates, and hands back a banner-marked draft plus its gap list.

Hand over a shift. "Turn these into an SBAR" (or "an I-PASS"). Same two-call pattern against sbar_handover_draft.

Discharge a patient. discharge_summary_draft refuses to pass while pending results are unowned. Pair it with patient_instructions_draft until readability hits the 6th-to-8th grade target.

Answer with receipts. "Boxed warning and contraindications for metformin" returns verbatim label sections, SPL set id, DailyMed link, retrieval date. Absence of an interactions section is reported as absence, never spun as safety.

De-identify before sharing. "Scrub this teaching snippet" replaces identifiers with typed placeholders and lists low-confidence spans for your review. It assists Safe Harbor de-identification; it does not certify it.

Safety model

LayerMechanism
Output disciplineDraft banners on every artifact; next-step guidance in every result
PHI egressGuard denies (or escalates, per config) network calls whose arguments match high-confidence identifier patterns
Destination allowlistFive hosts, enforced in code before fetch; anything else throws
Request hygieneLookups send terms, codes, and status filters only
Regulatory postureSelf-mapped against the four non-device CDS criteria per tool in docs/regulatory-checklist.md; informational and non-directive by construction

Known platform limits, documented rather than hidden: dsh persists tool arguments in local session logs with no deletion API, so treat $DSH_HOME/sessions as PHI storage; keep telemetry off. The sidebar wordmark stays stock dsh in this release. Details: docs/permissions-and-data.md.

Configuration

Optional NCBI and openFDA keys, timeouts, result caps, and the guard mode (block, ask, off) are documented in docs/configuration.md.

Compatibility

dshtested against @deepseek-ai/dsh 0.1.0-rc.8; type-compatible with 0.1.1-rc.2
Node>= 22.19
pnpm>= 10

The latest dist-tag on @deepseek-ai/dsh-tools is stale; the bundle pins the rc line deliberately.

Development

pnpm install
pnpm verify     # typecheck, tests (synthetic data only), bundle, declarations
pnpm test:mount # pack the tarball into a scratch dsh profile and assert the layer mounts

CI runs both on a Node matrix. Releases publish from tags with provenance. See CONTRIBUTING.md; issues and tests carry synthetic data only.

Security

Private reports only via GitHub private vulnerability reporting. See SECURITY.md.

License

Apache License 2.0. Attribution in NOTICE. The dsh-plugin topic is a discovery tag, not a DeepSeek endorsement and not a medical clearance.

FAQ

Is this a medical device? No. MedSeek displays and reorganizes information the clinician supplies, cites public reference sources, and produces drafts that require human approval. The four-criteria mapping per tool is maintained in docs/regulatory-checklist.md.

Can it replace our ambient scribe? No, and it does not try. Scribes capture audio in the room; MedSeek structures what already exists as text and looks things up with citations. They compose.

Does it connect to Epic? No. There is no EHR read or write anywhere in the bundle. Everything arrives as pasted text the operator chose.

Why no drug-interaction checker? NLM retired the free RxNav interaction API in January 2024. MedSeek quotes label sections verbatim and declines to pretend a replacement exists.

Where does my data go? Nowhere automatically. Local tools make zero network calls. Lookup tools send terms and codes to the five allowlisted hosts after the guard screens them. Model traffic goes wherever the operator pointed dsh, which is why the BAA warning sits at the top of this file.

What clinicians is it for? Physicians, advanced practice providers, nurses, pharmacists, and residents who already run dsh. The operator installs it; the clinician reviews everything.

Похожие плагины