dsh-plugin-om 0.0.2 → 0.0.4

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 CHANGED
@@ -111,3 +111,8 @@ src/
111
111
  scripts/ # release-archive.mjs(CHANGELOG 归档)
112
112
  tests/ # vitest 单元测试(52 例)
113
113
  ```
114
+
115
+ ## 开发计划
116
+
117
+ - 在消息记录/轨迹中添加OM结果
118
+ - 将OM会话的token加入主会话中
@@ -0,0 +1,4 @@
1
+ # 用于 dsh add
2
+ - insert:
3
+ - id: dsh-plugin-om
4
+ name: dsh-plugin-om
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-plugin-om",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",
@@ -11,6 +11,9 @@
11
11
  "harness",
12
12
  "plugin"
13
13
  ],
14
+ "repository": {
15
+ "url": "https://github.com/FanetheDivine/dsh-plugin-om"
16
+ },
14
17
  "exports": {
15
18
  ".": {
16
19
  "types": "./dist/index.d.ts",
@@ -19,13 +22,15 @@
19
22
  },
20
23
  "files": [
21
24
  "dist",
25
+ "cordis.patch.yml",
22
26
  "README.md"
23
27
  ],
24
- "license": "MIT",
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/FanetheDivine/dsh-plugin-om.git"
28
+ "dsh": {
29
+ "bundle": {
30
+ "patch": "./cordis.patch.yml"
31
+ }
28
32
  },
33
+ "license": "MIT",
29
34
  "packageManager": "pnpm@11.7.0",
30
35
  "engines": {
31
36
  "node": "^22.19.0 || >=24.0.0"