codexmate 0.0.42 → 0.0.44
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 +2 -0
- package/README.zh.md +2 -0
- package/cli/claude-proxy.js +611 -14
- package/cli/update.js +77 -7
- package/cli.js +191 -23
- package/package.json +2 -2
- package/web-ui/app.js +39 -10
- package/web-ui/logic.claude.mjs +65 -2
- package/web-ui/logic.runtime.mjs +0 -7
- package/web-ui/modules/app.methods.agents.mjs +6 -6
- package/web-ui/modules/app.methods.claude-config.mjs +65 -49
- package/web-ui/modules/app.methods.codex-config.mjs +10 -10
- package/web-ui/modules/app.methods.index.mjs +1 -1
- package/web-ui/modules/app.methods.install.mjs +129 -1
- package/web-ui/modules/app.methods.openclaw-persist.mjs +1 -1
- package/web-ui/modules/app.methods.providers.mjs +17 -16
- package/web-ui/modules/app.methods.runtime.mjs +27 -21
- package/web-ui/modules/app.methods.session-actions.mjs +25 -20
- package/web-ui/modules/app.methods.session-timeline.mjs +0 -1
- package/web-ui/modules/app.methods.startup-claude.mjs +29 -3
- package/web-ui/modules/app.methods.tool-config-permissions.mjs +3 -0
- package/web-ui/modules/i18n/locales/en.mjs +65 -1
- package/web-ui/modules/i18n/locales/ja.mjs +65 -1
- package/web-ui/modules/i18n/locales/vi.mjs +77 -2
- package/web-ui/modules/i18n/locales/zh.mjs +66 -2
- package/web-ui/partials/index/layout-header.html +24 -0
- package/web-ui/partials/index/modals-basic.html +18 -1
- package/web-ui/partials/index/panel-config-claude.html +5 -2
- package/web-ui/partials/index/panel-config-codex.html +2 -1
- package/web-ui/res/web-ui-render.precompiled.js +115 -22
- package/web-ui/styles/controls-forms.css +5 -5
- package/web-ui/styles/layout-shell.css +145 -0
- package/web-ui/styles/responsive.css +12 -0
- package/web-ui/styles/titles-cards.css +10 -4
package/README.md
CHANGED
|
@@ -47,6 +47,7 @@ Have you ever felt overwhelmed by managing multiple local AI agents? Each has it
|
|
|
47
47
|
Unlike simple wrappers, Codex Mate acts as a **Local Agent Bridge**:
|
|
48
48
|
- **Unified Session Browser**: Search and export sessions across all tools in one place.
|
|
49
49
|
- **OpenAI-Compatible Bridge**: Use Codex with any OpenAI-compatible UI by normalizing the Responses API.
|
|
50
|
+
- **Claude Provider Bridge**: Connect Claude Code to OpenAI Chat Completions-compatible providers and Ollama through the built-in local Claude-compatible proxy.
|
|
50
51
|
- **Skills Marketplace**: A local-first market to share and import skills between different agent apps.
|
|
51
52
|
- **Task Orchestrator**: Plan and execute complex tasks with dependency tracking.
|
|
52
53
|
|
|
@@ -63,6 +64,7 @@ Unlike simple wrappers, Codex Mate acts as a **Local Agent Bridge**:
|
|
|
63
64
|
| **Local Skills Market** | ✅ | Cross-app import/export of agent skills |
|
|
64
65
|
| **Task Queue** | ✅ | DAG-based task execution and logs |
|
|
65
66
|
| **OpenAI Bridge** | ✅ | Convert Codex Responses API to standard OpenAI format |
|
|
67
|
+
| **Claude Provider Bridge** | ✅ | Connect Claude Code to OpenAI Chat Completions-compatible providers and Ollama via the built-in Claude-compatible proxy |
|
|
66
68
|
| **Prompt Templates** | ✅ | Reusable prompt plugins with variables |
|
|
67
69
|
| **MCP Integration** | ✅ | Expose local tools and resources via MCP stdio |
|
|
68
70
|
| **Auto Update** | ✅ | Quick update CLI via `codexmate update` |
|
package/README.zh.md
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
不同于简单的封装,Codex Mate 充当了 **本地智能体桥接器**:
|
|
48
48
|
- **统一会话浏览器**:在一个地方搜索并导出所有工具的会话。
|
|
49
49
|
- **OpenAI 兼容桥接**:通过归一化 Responses API,让 Codex 能够与任何支持 OpenAI 格式的 UI 配合使用。
|
|
50
|
+
- **Claude Provider 桥接**:通过内建本地 Claude 兼容代理,让 Claude Code 接入 OpenAI Chat Completions 兼容 provider 与 Ollama。
|
|
50
51
|
- **Skills 市场**:本地优先的市场,支持在不同的智能体应用之间共享和导入 Skills。
|
|
51
52
|
- **任务编排器**:支持带有依赖跟踪的复杂任务规划与执行。
|
|
52
53
|
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
| **本地 Skills 市场** | ✅ | 跨应用的智能体 Skills 导入与导出 |
|
|
64
65
|
| **任务队列** | ✅ | 基于 DAG 的任务执行与日志查看 |
|
|
65
66
|
| **OpenAI 桥接** | ✅ | 将 Codex Responses API 转换为标准 OpenAI 格式 |
|
|
67
|
+
| **Claude Provider 桥接** | ✅ | 通过内建 Claude 兼容代理,让 Claude Code 接入 OpenAI Chat Completions 兼容 provider 与 Ollama |
|
|
66
68
|
| **提示词模板** | ✅ | 支持变量的可复用提示词插件 |
|
|
67
69
|
| **MCP 集成** | ✅ | 通过 MCP stdio 暴露本地工具与资源 |
|
|
68
70
|
| **自动更新** | ✅ | 通过 `codexmate update` 快速更新 CLI |
|