codexmate 0.0.17 → 0.0.19
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.en.md +65 -33
- package/README.md +61 -37
- package/cli.js +1877 -408
- package/lib/text-diff.js +303 -0
- package/package.json +1 -1
- package/web-ui/app.js +1749 -447
- package/web-ui/index.html +580 -199
- package/web-ui/logic.mjs +390 -0
- package/web-ui/modules/config-mode.computed.mjs +1 -0
- package/web-ui/modules/skills.computed.mjs +26 -1
- package/web-ui/modules/skills.methods.mjs +160 -23
- package/web-ui/session-helpers.mjs +362 -0
- package/web-ui/styles.css +652 -13
- package/doc/CHANGELOG.md +0 -32
- package/doc/CHANGELOG.zh-CN.md +0 -34
package/doc/CHANGELOG.md
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 0.0.15
|
|
4
|
-
|
|
5
|
-
- Release: bump package version to 0.0.15
|
|
6
|
-
- Docs: sync README / README.en with current release marker
|
|
7
|
-
|
|
8
|
-
## 0.0.14
|
|
9
|
-
|
|
10
|
-
- Skills Manager: polish modal layout with overview counters and clearer section structure
|
|
11
|
-
- Skills Manager: unify status select style and refine list scrollbar density
|
|
12
|
-
- Docs: sync README / README.en release notes for 0.0.14
|
|
13
|
-
|
|
14
|
-
## 0.0.13
|
|
15
|
-
|
|
16
|
-
- Web UI: switch to IDE-style three-column layout with a fixed status inspector panel
|
|
17
|
-
- AGENTS editor: add "Export" action to download current content as `agent-<timestamp>.txt`
|
|
18
|
-
- Release: bump package version to 0.0.13 and sync release docs/examples
|
|
19
|
-
|
|
20
|
-
## 0.0.5
|
|
21
|
-
|
|
22
|
-
- Sessions: enable keyword search for Codex-only view
|
|
23
|
-
- Sessions: increase keyword scan limit to reduce misses
|
|
24
|
-
- Utilities: add JS fallback for zip/unzip when 7-Zip is missing
|
|
25
|
-
- UI: shorten base_url/key/model check hint
|
|
26
|
-
|
|
27
|
-
## 0.0.4
|
|
28
|
-
|
|
29
|
-
- Added OpenClaw config mode with JSON5 profiles and one-click apply
|
|
30
|
-
- Added OpenClaw workspace AGENTS.md management
|
|
31
|
-
- Added JSON5 parsing dependency
|
|
32
|
-
|
package/doc/CHANGELOG.zh-CN.md
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# 更新日志
|
|
2
|
-
|
|
3
|
-
## 0.0.15
|
|
4
|
-
|
|
5
|
-
- 发版:版本提升至 0.0.15
|
|
6
|
-
- 文档:同步 README / README.en 当前版本标记
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
## 0.0.14
|
|
11
|
-
|
|
12
|
-
- Skills 管理:打磨弹窗信息层级,新增统计概览与分区结构
|
|
13
|
-
- Skills 管理:统一状态下拉样式,并优化列表滚动条密度
|
|
14
|
-
- 文档:同步 README / README.en 的 0.0.14 发版说明
|
|
15
|
-
|
|
16
|
-
## 0.0.13
|
|
17
|
-
|
|
18
|
-
- Web UI:调整为 IDE 风格三栏布局,并新增固定可见的状态检查器
|
|
19
|
-
- AGENTS 编辑器:新增“导出”按钮,可下载当前内容为 `agent-<timestamp>.txt`
|
|
20
|
-
- 发版:版本提升至 0.0.13,并同步 README 发版示例版本号
|
|
21
|
-
|
|
22
|
-
## 0.0.5
|
|
23
|
-
|
|
24
|
-
- 会话浏览:仅 Codex 支持关键词检索
|
|
25
|
-
- 会话浏览:关键词扫描上限提升,降低漏检
|
|
26
|
-
- 附属功能:7-Zip 缺失时回退内置 JS 压缩/解压
|
|
27
|
-
- 文案:精简检测提示
|
|
28
|
-
|
|
29
|
-
## 0.0.4
|
|
30
|
-
|
|
31
|
-
- 新增 OpenClaw 配置模式(JSON5 多配置管理 + 一键应用)
|
|
32
|
-
- 新增 OpenClaw Workspace 的 AGENTS.md 管理
|
|
33
|
-
- 增加 JSON5 解析依赖
|
|
34
|
-
|