@cniot/mdd-editor 0.3.3 → 0.3.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 +15 -0
- package/build/index.cjs.js +20 -20
- package/build/index.es.js +43 -12
- package/build/style.css +1 -1
- package/package.json +1 -1
- package/src/ai/LocalAIDrawer.jsx +72 -37
package/README.MD
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# 0.3.4
|
|
2
|
+
|
|
3
|
+
- feat: 优化“本地 AI 工作区”抽屉视觉层级,拆分 Bridge 状态、工作区操作、辅助操作区域,减少按钮拥挤。
|
|
4
|
+
- feat: 新增“访问本地 AI 主页”按钮,可直接打开本地 bridge 控制台。
|
|
5
|
+
- style: 状态、页面、目录信息改为分行展示,长页面 code 和目录路径更易阅读。
|
|
6
|
+
|
|
7
|
+
# 0.3.3
|
|
8
|
+
|
|
9
|
+
- feat: 本地 AI 抽屉展示 bridge 版本,并提示本地 bridge 版本是否偏旧。
|
|
10
|
+
- feat: 本地 AI 抽屉新增“复制启动命令 / 复制工作区路径 / 复制 AI 提示词”,降低后端同学接入成本。
|
|
11
|
+
- feat: 线上 HTTP 页面访问本地 bridge 时复用 relay 窗口,减少反复弹窗。
|
|
12
|
+
- feat: 同步本地修改后展示更清晰的本地修改摘要,并支持展开查看 schema 改动路径和文本 diff。
|
|
13
|
+
- feat: 配合 `@cniot/mdd-ai-bridge >= 0.1.6`,支持本地控制台、增强版 Context Pack、PROMPT.md、JSON 错误行列号和 diff 摘要。
|
|
14
|
+
- chore: 推荐配套版本为 `@cniot/mdd-editor >= 0.3.3` + `@cniot/mdd-ai-bridge >= 0.1.6`。
|
|
15
|
+
|
|
1
16
|
# 0.3.1
|
|
2
17
|
|
|
3
18
|
- feat: 新增“本地 AI”工作区入口,支持把当前页面的 schema、script、style、页面摘要同步到本地目录,方便 Cursor、Qoder、Codex CLI 等本地 AI 工具直接修改。
|