# Technical feasibility ## v0.4 compatibility update The public Tool result and Terminal surfaces are language-agnostic, so Go, Python, Node.js, and TypeScript support is implemented entirely in the plugin parser chain. No Harness core changes or shell monkey-patching are required. Ordinary shell results still arrive only after completion; `loghud_run` remains the sole incremental-output mode. The existing HTTP prefix supports ignore/unignore and revisioned SSE without a Host download endpoint. JSON and Markdown exports use the bounded browser snapshot. The public Settings service supplies a native `settings.plugin.item` card and live namespace updates without a custom settings route. Optional Settings, Storage, and LLM services degrade independently. Target release train: DeepSeek Harness `0.1.2-rc.1`. Harness describes a plugin-first Cordis architecture and explicitly marks the project as developer preview. The implementation stays on its public extension surfaces: Cordis plugins/services, Tool lifecycle events, Terminal sessions, LLM streaming, Web route registration, and Web Client Slots. It does not modify Harness core or patch DOM/shell behavior. See the official [architecture](https://github.com/deepseek-ai/deepseek-harness/blob/master/docs/architecture.md) and [LLM streaming API](https://github.com/deepseek-ai/deepseek-harness/blob/master/docs/subsystems/llm-streaming.md). ## Why capture is hybrid In `0.1.2-rc.1`, `tools/result` exposes a final immutable tool outcome. It is suitable for ordinary shell compatibility but cannot promise stdout/stderr deltas. The official Terminal service does expose operation-scoped `readOutput()` deltas; therefore true incremental behavior is provided only by the explicit `loghud_run` tool. This is a product constraint, not a hidden emulation. ## Ecosystem comparison - [`dsh-ci-doctor`](https://github.com/jkrandom-sudo/dsh-ci-doctor) diagnoses remote GitHub Actions failures; it does not track a local Spring Boot process or supply this HUD lifecycle. - [`dsh-event-auditor`](https://github.com/qing3a/dsh-event-auditor) audits Harness events themselves rather than parsing application exceptions. - [`DSH-better-sidebar`](https://github.com/omdsh-dev/DSH-better-sidebar) provides generic workbench/sidebar infrastructure but not root-cause grouping, recovery state, or explicit AI diagnosis. ## Compatibility controls - All Harness peer/dev dependencies are exactly `0.1.2-rc.1`; mixed RCs are forbidden. - Public declarations from the installed packages are typechecked by strict TypeScript. - Optional Terminal/LLM capability is detected at call time with clear error messages. - Client registration is additive (`shell.overlay` plus `settings.plugin.item`), because the official `details` slot is single-owner. - The package file whitelist and tarball dry run prevent local caches or secrets entering a release. Persistence is intentionally capability-gated. The real-time authority is always bounded memory. Harness installations without a compatible public `storageDomain` service remain fully functional but restart without historical cards. Without a writable Settings provider, Cordis configuration remains authoritative and the settings page becomes read-only/unavailable.