codexmate 0.0.18 → 0.0.20

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.
Files changed (73) hide show
  1. package/README.en.md +34 -17
  2. package/README.md +34 -25
  3. package/cli/config-health.js +338 -0
  4. package/cli.js +1570 -839
  5. package/lib/cli-models-utils.js +186 -27
  6. package/lib/cli-network-utils.js +117 -101
  7. package/package.json +8 -1
  8. package/web-ui/app.js +379 -5754
  9. package/web-ui/index.html +15 -2079
  10. package/web-ui/logic.agents-diff.mjs +386 -0
  11. package/web-ui/logic.claude.mjs +108 -0
  12. package/web-ui/logic.mjs +5 -793
  13. package/web-ui/logic.runtime.mjs +124 -0
  14. package/web-ui/logic.sessions.mjs +263 -0
  15. package/web-ui/modules/api.mjs +69 -0
  16. package/web-ui/modules/app.computed.dashboard.mjs +113 -0
  17. package/web-ui/modules/app.computed.index.mjs +13 -0
  18. package/web-ui/modules/app.computed.session.mjs +141 -0
  19. package/web-ui/modules/app.constants.mjs +15 -0
  20. package/web-ui/modules/app.methods.agents.mjs +493 -0
  21. package/web-ui/modules/app.methods.claude-config.mjs +174 -0
  22. package/web-ui/modules/app.methods.codex-config.mjs +640 -0
  23. package/web-ui/modules/app.methods.index.mjs +86 -0
  24. package/web-ui/modules/app.methods.install.mjs +157 -0
  25. package/web-ui/modules/app.methods.navigation.mjs +478 -0
  26. package/web-ui/modules/app.methods.openclaw-core.mjs +514 -0
  27. package/web-ui/modules/app.methods.openclaw-editing.mjs +337 -0
  28. package/web-ui/modules/app.methods.openclaw-persist.mjs +251 -0
  29. package/web-ui/modules/app.methods.providers.mjs +265 -0
  30. package/web-ui/modules/app.methods.runtime.mjs +323 -0
  31. package/web-ui/modules/app.methods.session-actions.mjs +457 -0
  32. package/web-ui/modules/app.methods.session-browser.mjs +435 -0
  33. package/web-ui/modules/app.methods.session-timeline.mjs +441 -0
  34. package/web-ui/modules/app.methods.session-trash.mjs +419 -0
  35. package/web-ui/modules/app.methods.startup-claude.mjs +406 -0
  36. package/web-ui/modules/config-mode.computed.mjs +1 -0
  37. package/web-ui/modules/skills.computed.mjs +26 -1
  38. package/web-ui/modules/skills.methods.mjs +154 -23
  39. package/web-ui/partials/index/layout-footer.html +69 -0
  40. package/web-ui/partials/index/layout-header.html +337 -0
  41. package/web-ui/partials/index/modal-config-template-agents.html +125 -0
  42. package/web-ui/partials/index/modal-confirm-toast.html +32 -0
  43. package/web-ui/partials/index/modal-health-check.html +72 -0
  44. package/web-ui/partials/index/modal-openclaw-config.html +275 -0
  45. package/web-ui/partials/index/modal-skills.html +184 -0
  46. package/web-ui/partials/index/modals-basic.html +196 -0
  47. package/web-ui/partials/index/panel-config-claude.html +100 -0
  48. package/web-ui/partials/index/panel-config-codex.html +237 -0
  49. package/web-ui/partials/index/panel-config-openclaw.html +84 -0
  50. package/web-ui/partials/index/panel-market.html +174 -0
  51. package/web-ui/partials/index/panel-sessions.html +387 -0
  52. package/web-ui/partials/index/panel-settings.html +166 -0
  53. package/web-ui/session-helpers.mjs +12 -0
  54. package/web-ui/source-bundle.cjs +233 -0
  55. package/web-ui/styles/base-theme.css +373 -0
  56. package/web-ui/styles/controls-forms.css +354 -0
  57. package/web-ui/styles/feedback.css +108 -0
  58. package/web-ui/styles/health-check-dialog.css +144 -0
  59. package/web-ui/styles/layout-shell.css +330 -0
  60. package/web-ui/styles/modals-core.css +449 -0
  61. package/web-ui/styles/navigation-panels.css +381 -0
  62. package/web-ui/styles/openclaw-structured.css +266 -0
  63. package/web-ui/styles/responsive.css +416 -0
  64. package/web-ui/styles/sessions-list.css +414 -0
  65. package/web-ui/styles/sessions-preview.css +405 -0
  66. package/web-ui/styles/sessions-toolbar-trash.css +243 -0
  67. package/web-ui/styles/sessions-usage.css +276 -0
  68. package/web-ui/styles/skills-list.css +298 -0
  69. package/web-ui/styles/skills-market.css +335 -0
  70. package/web-ui/styles/titles-cards.css +407 -0
  71. package/web-ui/styles.css +16 -4499
  72. package/doc/CHANGELOG.md +0 -32
  73. 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
-
@@ -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
-