@listen1954/board 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Board
2
+
3
+ 作者:**listen**
4
+ 包名:`@listen1954/board`
5
+
6
+ DeepSeek Harness 的统一看板:普通列和每个会话对应的任务列存于同一块全局数据;会话入口只投影本会话列,人在 Web 里编辑,模型在对话里用自然语言查看和改。
7
+
8
+ ## 设计口径(实现以这三份为准)
9
+
10
+ | 文档 | 内容 |
11
+ | --- | --- |
12
+ | [docs/product.md](docs/product.md) | 产品:范围、隔离、模型体验 |
13
+ | [docs/technical.md](docs/technical.md) | 技术:数据、工具、Remote、提醒 |
14
+ | [docs/ui.md](docs/ui.md) | 交互:侧栏入口、会话芯片、编辑器 |
15
+
16
+ 当前已实现统一存储、旧会话 sidecar 自动迁移、四个工具、`ctx.board` Remote、提醒通知,以及 Web 侧栏「看板」+ 输入栏芯片/浮层。
17
+
18
+ ## 本地挂载
19
+
20
+ ```sh
21
+ dsh plugin --profile web add "link:$(pwd)"
22
+ dsh --profile web --dump-config # 应出现 id: board
23
+ ```
24
+
25
+ 发布到 npmjs 后:
26
+
27
+ ```sh
28
+ dsh plugin --profile web add @listen1954/board
29
+ ```
package/client.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export const inject: string[]
2
+ export function apply(ctx: unknown): void
@@ -0,0 +1,3 @@
1
+ - insert:
2
+ - id: board
3
+ name: '@listen1954/board'