| name | plugin-runtime-debug |
| description | Use when an installed DSH Web plugin misbehaves only at runtime in the browser — paste/attachment/composer features that work once then fail, chips or panels showing stale placeholder state, update chips claiming the wrong version — and the fix must be diagnosed against the exact host API semantics rather than guessed from names. Also use when reviewing a plugin's calls into input-machine or facade verbs (insert, consume, remove, subscribe) before a release. |
Debug DSH Web Plugin Runtime Behavior
External Web plugins call host client APIs whose contracts live in the DSH
source tree, not in the plugin's own types. When behavior diverges from
intent at runtime, the failure is almost always a misread contract — and the
diagnosis must come from the host source, never from the API's name.
The standing rule: read the verb's contract in the host source first
Before changing any call into a host API, open the implementing package in
the DSH source checkout (~/.dsh/source/current, or the vendored copy) and
read the actual method — its doc comment, its guards, and the types it
compares against. Repeat for every value the plugin passes. Three questions
cover most incidents:
- Which text does an offset count into? When a verb takes a span or an
offset, find out what string those numbers index. Published snapshot
fields and internal editor projections are not always the same string; a
plugin that feeds one representation's offsets into a verb whose guard
compares against another representation fails silently — the call returns
false or no-ops, nothing throws.
- What does one "unit" weigh in each representation? If the document
contains opaque inline units (chips, tokens, attachments), check whether a
unit occupies the same width in the published field as in the projection
the verb guards. When widths differ, offsets are only correct while no
unit exists — verify what the first call succeeding and every later call
failing tells you.
- When the verb declines, who notices? A boolean-returning verb that
fails silently turns into a downstream state bug: the caller deletes its
own bookkeeping anyway, and the UI renders a "missing/unavailable"
placeholder next to an object that never went away. Audit every call site
for the "fire, ignore the result, clean up state anyway" shape.
Symptom families and where they point
- First interaction works, every subsequent one errors — state written by
the earlier call changed the mapping between what the plugin computes and
what the verb expects. Compare the two representations before and after
one insertion; derive the correction from the unit widths in the host
source, then apply the same derivation at every call site that passes
offsets, not just the crashing one.
- A removal button leaves the row behind with a placeholder label — the
removal verb declined (see question 3) while bookkeeping was already
dropped. Confirm with the verb's return value, and only retire the
bookkeeping after the removal actually applied.
- Derived UI shows stale or phantom entries — find the authoritative
source of the fact and derive the view from it. A plugin-side cache with a
subscription that retires entries on any transient snapshot (an empty
moment during reconcile/remount) will drop live entries; prefer reading the
live published state at decision time and treat the cache as an accelerator
only.
- Update/version chips report a wrong "latest" — remote tag and raw-file
endpoints are CDN-cached and lag minutes behind a real push. Never present
a fetched remote value as ground truth when it can be older than the
running build; decide "current vs update" against the running version and
display the newer of the two.
- A whole slot's UI silently vanishes after a release — a throwing
expression inside a slot component (classically a dangling identifier:
another component's state variable referenced out of scope) is caught by
the framework's slot-level error boundary, which unmounts the entire
entry; the error is console-only, so users just report "the chips/panel
are gone". Two latency mechanisms hide it from the author: an
||
short-circuit keeps the expression unevaluated until the left operand is
false, and components that early-return on the empty state never evaluate
it until real data renders. Do not blame the newest diff by default —
bisect by rollback or a minimal render mount with data present, check
whether the throwing line shipped earlier, and fix by removing the
reference (scope any such state locally). Cheap hardening for slot
components: defensive reads (x?.items ?? []) and optional-chained DOM
access (target.closest?.()) — inside an error boundary any throw costs
the whole slot.
- Repo edits never reach the GUI / EBUSY under the profile's node_modules —
first determine the install mode:
Get-Item <profile>/node_modules/<pkg> | Select LinkType, Target (or the link:<path> marker in cordis.patch.yml).
A Junction/link install means the repo working tree IS the installed copy —
no copy step exists or is needed, and Copy-Item into node_modules is a
no-op at best. The EBUSY holder is the running dsh host process (closing
the browser does not release it), and the browser can still serve a cached
client bundle after the host restarts. Activation for a link-installed
lib-only plugin: fully stop the host, restart , hard-refresh,
then verify the loaded version marker. Never rename-aside files under an
unresolved path: through a junction "two" directories are one, and the
rename moves the only copy.
Workflow
- Reproduce once and capture the exact user-visible strings (toast text,
chip labels, console output) — they are the contract of the bug report.
- Map each string to the code path that emitted it; identify the host verb
at the boundary.
- Open the host source for that verb; answer the three standing questions.
- State the mismatch precisely (which representation, which guard, which
call sites) before writing any fix; if you cannot state it, you have not
read enough source.
- Fix every call site that passes representation-dependent values, not only
the reported symptom; the same mismatch usually breaks two features
through two different verbs.
- Prove the fix with the interaction sequence that failed: repeat the
action twice in a row and assert both attempts behave identically, and
assert the removal path clears every view of the object.
- For lib-only plugin bundles (no build step): keep hand-inlined version
constants in sync with
package.json, syntax-check the bundle
(node --check), and verify in the browser after a hard refresh — the
served artifact is the file you edited.