omdsh-dev/web-components

插件Plugin 原生Native ⭐ 2 cat_label.dshcat_label.dsh

Web-components支持

项目介绍Project Overview

这是 DSH 的 Web Component 适配器插件包,提供浏览器端 webComponent 服务,把已注册插槽树挂载为原生自定义元素,并在边界内管理类型描述符、属性/事件绑定、DOM 出口与生命周期。需要在 Web 配置中显式启用,且插槽宿主、浏览器运行时和 React 渲染接缝须由所选 DSH 提供。注意自定义元素注册后无法注销,适配器会拒绝替换构造函数。

This is the DSH Web Component adapter plugin bundle. It provides a browser-side webComponent service that mounts registered slot trees as native Custom Elements, keeping typed descriptors, property/event bindings, DOM outlets, and incarnation lifetimes behind the adapter boundary. Enable it explicitly in a Web profile after the slot host and browser runtime exist. The profile must supply the DSH slot host, browser runtime, and React renderer seam. Note that Custom Element registrations cannot be unregistered, and constructor replacement is rejected.

或使用命令行安装(适合开发者)Or use CLI install (for developers)

命令行安装CLI Install

dsh plugin --profile web add github:omdsh-dev/web-components

omdsh-dev/web-components 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

@deepseek-ai/dsh-client-web-component

English | 中文

The DSH Web Component adapter as an installable profile bundle. It exposes a browser-side webComponent service that mounts registered slot trees as native Custom Elements, while keeping slot ownership, typed descriptors, property/event bindings, DOM outlets, and incarnation lifetimes behind the adapter boundary.

Repository shape

package.json              # plugin package and dsh.bundle/dshClient manifests
cordis.patch.yml          # browser opt-in profile layer
src/index.ts              # host loader entry
src/client/               # browser implementation
src/invariant.ts          # package invariant companion
lib/                      # generated host/client artifacts
legacy/                   # source-compatible host integration patch for older DSH snapshots
docs/                     # detailed protocol reference
tests/                    # unit, composition, and terminal-free browser tests

Bundle behavior

Installing the bundle adds a disabled web-component row. A Web profile enables it explicitly after the slot host and browser runtime are present:

- id: web-component
  disabled: false
  name: '@deepseek-ai/dsh-client-web-component'

The bundle layer only composes the plugin row. Slot host APIs, descriptor types, browser runtime, and the React renderer seam must come from the DSH version selected by the profile. The previous host-source integration patch is retained under legacy/ for migration of older DSH snapshots and is not part of the bundle package contract.

The client module never exposes a live React tree or raw DOM context to feature plugins. It accepts plain descriptors, resolves declared values from the incarnation context, assigns JavaScript properties rather than serialized attributes, and reports CustomEvent details through declared handlers.

Development

A full typecheck expects a sibling DSH checkout:

~/git/deepseek-harness
~/git/web-components
pnpm install
pnpm run typecheck
pnpm test
pnpm run build

The prepare script builds the host and browser entries directly from src/, so a Git install does not require sibling project references. pnpm 10 may ask the profile to allow the package's prepare script; only approve a pinned, trusted checkout.

Model Experience

This package contributes no model-visible text, tools, or prompt sections. It only projects browser slot state and Custom Element events; model-visible behavior remains owned by the DSH services rendered through the slots.

Known Limitations and Deferred Work

  • CustomElementRegistry definitions are page-lifetime resources and cannot be unregistered; the adapter rejects constructor replacement.
  • The bundle does not provide a DOM or React renderer; the profile must already mount the DSH slot host and browser runtime.
  • Older DSH snapshots require the compatibility patch in legacy/ because a bundle cannot add missing host source APIs; the current master also predates the Slots election/incarnation APIs, so full typecheck requires the compatible Slots change (for example d97d6a1e).
上一个 Prev dsh-plugin-graph 下一个 Next dsh-cluster