codexmate 0.0.12 → 0.0.14

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/doc/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
- # Changelog
1
+ # Changelog
2
+
3
+ ## 0.0.14
4
+
5
+ - Skills Manager: polish modal layout with overview counters and clearer section structure
6
+ - Skills Manager: unify status select style and refine list scrollbar density
7
+ - Docs: sync README / README.en release notes for 0.0.14
8
+
9
+ ## 0.0.13
10
+
11
+ - Web UI: switch to IDE-style three-column layout with a fixed status inspector panel
12
+ - AGENTS editor: add "Export" action to download current content as `agent-<timestamp>.txt`
13
+ - Release: bump package version to 0.0.13 and sync release docs/examples
2
14
 
3
15
  ## 0.0.5
4
16
 
@@ -12,3 +24,4 @@
12
24
  - Added OpenClaw config mode with JSON5 profiles and one-click apply
13
25
  - Added OpenClaw workspace AGENTS.md management
14
26
  - Added JSON5 parsing dependency
27
+
@@ -1,5 +1,17 @@
1
1
  # 更新日志
2
2
 
3
+ ## 0.0.14
4
+
5
+ - Skills 管理:打磨弹窗信息层级,新增统计概览与分区结构
6
+ - Skills 管理:统一状态下拉样式,并优化列表滚动条密度
7
+ - 文档:同步 README / README.en 的 0.0.14 发版说明
8
+
9
+ ## 0.0.13
10
+
11
+ - Web UI:调整为 IDE 风格三栏布局,并新增固定可见的状态检查器
12
+ - AGENTS 编辑器:新增“导出”按钮,可下载当前内容为 `agent-<timestamp>.txt`
13
+ - 发版:版本提升至 0.0.13,并同步 README 发版示例版本号
14
+
3
15
  ## 0.0.5
4
16
 
5
17
  - 会话浏览:仅 Codex 支持关键词检索
@@ -12,3 +24,4 @@
12
24
  - 新增 OpenClaw 配置模式(JSON5 多配置管理 + 一键应用)
13
25
  - 新增 OpenClaw Workspace 的 AGENTS.md 管理
14
26
  - 增加 JSON5 解析依赖
27
+
package/lib/cli-utils.js CHANGED
@@ -71,6 +71,20 @@ function isValidProviderName(name) {
71
71
  return typeof name === 'string' && /^[a-zA-Z0-9._-]+$/.test(name.trim());
72
72
  }
73
73
 
74
+ function escapeTomlBasicString(value) {
75
+ return String(value || '')
76
+ .replace(/\\/g, '\\\\')
77
+ .replace(/"/g, '\\"');
78
+ }
79
+
80
+ function buildModelProviderTableHeader(providerName) {
81
+ const raw = typeof providerName === 'string' ? providerName.trim() : '';
82
+ if (/^[a-zA-Z0-9_-]+$/.test(raw)) {
83
+ return `[model_providers.${raw}]`;
84
+ }
85
+ return `[model_providers."${escapeTomlBasicString(raw)}"]`;
86
+ }
87
+
74
88
  function buildModelsCandidates(baseUrl) {
75
89
  const trimmed = typeof baseUrl === 'string' ? baseUrl.trim() : '';
76
90
  if (!trimmed) return [];
@@ -132,6 +146,8 @@ module.exports = {
132
146
  detectLineEnding,
133
147
  normalizeLineEnding,
134
148
  isValidProviderName,
149
+ escapeTomlBasicString,
150
+ buildModelProviderTableHeader,
135
151
  buildModelsCandidates,
136
152
  isValidHttpUrl,
137
153
  normalizeBaseUrl,
@@ -0,0 +1,440 @@
1
+ const DEFAULT_PROTOCOL_VERSION = '2025-11-25';
2
+
3
+ function jsonRpcError(code, message, data) {
4
+ const error = {
5
+ code,
6
+ message: String(message || 'Unknown error')
7
+ };
8
+ if (data !== undefined) {
9
+ error.data = data;
10
+ }
11
+ return error;
12
+ }
13
+
14
+ function createToolMap(tools = []) {
15
+ const map = new Map();
16
+ for (const tool of Array.isArray(tools) ? tools : []) {
17
+ if (!tool || typeof tool !== 'object') continue;
18
+ const name = typeof tool.name === 'string' ? tool.name.trim() : '';
19
+ if (!name) continue;
20
+ map.set(name, {
21
+ name,
22
+ description: typeof tool.description === 'string' ? tool.description : '',
23
+ inputSchema: tool.inputSchema && typeof tool.inputSchema === 'object'
24
+ ? tool.inputSchema
25
+ : { type: 'object', properties: {}, additionalProperties: false },
26
+ annotations: tool.annotations && typeof tool.annotations === 'object' ? tool.annotations : undefined,
27
+ handler: typeof tool.handler === 'function' ? tool.handler : async () => ({})
28
+ });
29
+ }
30
+ return map;
31
+ }
32
+
33
+ function createResourceMap(resources = []) {
34
+ const map = new Map();
35
+ for (const resource of Array.isArray(resources) ? resources : []) {
36
+ if (!resource || typeof resource !== 'object') continue;
37
+ const uri = typeof resource.uri === 'string' ? resource.uri.trim() : '';
38
+ if (!uri) continue;
39
+ map.set(uri, {
40
+ uri,
41
+ name: typeof resource.name === 'string' ? resource.name : uri,
42
+ description: typeof resource.description === 'string' ? resource.description : '',
43
+ mimeType: typeof resource.mimeType === 'string' ? resource.mimeType : 'application/json',
44
+ read: typeof resource.read === 'function'
45
+ ? resource.read
46
+ : async () => ({ contents: [] })
47
+ });
48
+ }
49
+ return map;
50
+ }
51
+
52
+ function createPromptMap(prompts = []) {
53
+ const map = new Map();
54
+ for (const prompt of Array.isArray(prompts) ? prompts : []) {
55
+ if (!prompt || typeof prompt !== 'object') continue;
56
+ const name = typeof prompt.name === 'string' ? prompt.name.trim() : '';
57
+ if (!name) continue;
58
+ map.set(name, {
59
+ name,
60
+ description: typeof prompt.description === 'string' ? prompt.description : '',
61
+ arguments: Array.isArray(prompt.arguments) ? prompt.arguments : [],
62
+ get: typeof prompt.get === 'function'
63
+ ? prompt.get
64
+ : async () => ({ messages: [] })
65
+ });
66
+ }
67
+ return map;
68
+ }
69
+
70
+ function createMcpRequestRouter(options = {}) {
71
+ const protocolVersion = typeof options.protocolVersion === 'string' && options.protocolVersion.trim()
72
+ ? options.protocolVersion.trim()
73
+ : DEFAULT_PROTOCOL_VERSION;
74
+ const serverInfo = options.serverInfo && typeof options.serverInfo === 'object'
75
+ ? options.serverInfo
76
+ : { name: 'mcp-server', version: '0.0.0' };
77
+ const logger = typeof options.logger === 'function' ? options.logger : () => {};
78
+
79
+ const tools = createToolMap(options.tools);
80
+ const resources = createResourceMap(options.resources);
81
+ const prompts = createPromptMap(options.prompts);
82
+
83
+ const listTools = () => Array.from(tools.values()).map((tool) => ({
84
+ name: tool.name,
85
+ description: tool.description,
86
+ inputSchema: tool.inputSchema,
87
+ ...(tool.annotations ? { annotations: tool.annotations } : {})
88
+ }));
89
+
90
+ const listResources = () => Array.from(resources.values()).map((resource) => ({
91
+ uri: resource.uri,
92
+ name: resource.name,
93
+ description: resource.description,
94
+ mimeType: resource.mimeType
95
+ }));
96
+
97
+ const listPrompts = () => Array.from(prompts.values()).map((prompt) => ({
98
+ name: prompt.name,
99
+ description: prompt.description,
100
+ arguments: prompt.arguments
101
+ }));
102
+
103
+ const capabilities = {};
104
+ if (tools.size > 0) {
105
+ capabilities.tools = { listChanged: false };
106
+ }
107
+ if (resources.size > 0) {
108
+ capabilities.resources = { listChanged: false, subscribe: false };
109
+ }
110
+ if (prompts.size > 0) {
111
+ capabilities.prompts = { listChanged: false };
112
+ }
113
+
114
+ const withToolError = (error) => ({
115
+ content: [{ type: 'text', text: `Error: ${error.message || error}` }],
116
+ isError: true
117
+ });
118
+
119
+ const normalizeResourceResult = (uri, resource, result) => {
120
+ if (result && Array.isArray(result.contents)) {
121
+ return { contents: result.contents };
122
+ }
123
+ if (result && typeof result === 'object' && typeof result.text === 'string') {
124
+ return {
125
+ contents: [{
126
+ uri,
127
+ mimeType: result.mimeType || resource.mimeType,
128
+ text: result.text
129
+ }]
130
+ };
131
+ }
132
+ const text = typeof result === 'string'
133
+ ? result
134
+ : JSON.stringify(result === undefined ? {} : result, null, 2);
135
+ return {
136
+ contents: [{
137
+ uri,
138
+ mimeType: resource.mimeType,
139
+ text
140
+ }]
141
+ };
142
+ };
143
+
144
+ const resolveResourceByUri = (uri) => {
145
+ const exact = resources.get(uri);
146
+ if (exact) {
147
+ return exact;
148
+ }
149
+ try {
150
+ const parsed = new URL(uri);
151
+ parsed.search = '';
152
+ parsed.hash = '';
153
+ const baseUri = parsed.toString();
154
+ if (baseUri && resources.has(baseUri)) {
155
+ return resources.get(baseUri);
156
+ }
157
+ } catch (_) {}
158
+ return null;
159
+ };
160
+
161
+ const handleRequest = async (request) => {
162
+ if (!request || typeof request !== 'object') {
163
+ throw jsonRpcError(-32600, 'Invalid Request');
164
+ }
165
+ const method = typeof request.method === 'string' ? request.method : '';
166
+ const params = request.params && typeof request.params === 'object' ? request.params : {};
167
+
168
+ if (method === 'initialize') {
169
+ return {
170
+ protocolVersion,
171
+ capabilities,
172
+ serverInfo: {
173
+ name: serverInfo.name || 'codexmate-mcp',
174
+ version: serverInfo.version || '0.0.0'
175
+ }
176
+ };
177
+ }
178
+
179
+ if (method === 'ping') {
180
+ return {};
181
+ }
182
+
183
+ if (method === 'tools/list') {
184
+ return { tools: listTools() };
185
+ }
186
+
187
+ if (method === 'tools/call') {
188
+ const name = typeof params.name === 'string' ? params.name.trim() : '';
189
+ if (!name) {
190
+ throw jsonRpcError(-32602, 'Missing tool name');
191
+ }
192
+ const tool = tools.get(name);
193
+ if (!tool) {
194
+ throw jsonRpcError(-32602, `Unknown tool: ${name}`);
195
+ }
196
+ try {
197
+ const args = params.arguments && typeof params.arguments === 'object'
198
+ ? params.arguments
199
+ : {};
200
+ const result = await tool.handler(args, request);
201
+ if (result && Array.isArray(result.content)) {
202
+ return result;
203
+ }
204
+ return {
205
+ content: [{
206
+ type: 'text',
207
+ text: JSON.stringify(result === undefined ? {} : result, null, 2)
208
+ }],
209
+ structuredContent: result === undefined ? {} : result
210
+ };
211
+ } catch (error) {
212
+ logger('error', `tools/call failed (${name}): ${error && error.message ? error.message : error}`);
213
+ return withToolError(error || new Error('Tool execution failed'));
214
+ }
215
+ }
216
+
217
+ if (method === 'resources/list') {
218
+ return { resources: listResources() };
219
+ }
220
+
221
+ if (method === 'resources/read') {
222
+ const uri = typeof params.uri === 'string' ? params.uri.trim() : '';
223
+ if (!uri) {
224
+ throw jsonRpcError(-32602, 'Missing resource uri');
225
+ }
226
+ const resource = resolveResourceByUri(uri);
227
+ if (!resource) {
228
+ throw jsonRpcError(-32602, `Unknown resource: ${uri}`);
229
+ }
230
+ try {
231
+ const result = await resource.read(params, request);
232
+ return normalizeResourceResult(uri, resource, result);
233
+ } catch (error) {
234
+ throw jsonRpcError(-32000, `Resource read failed: ${error && error.message ? error.message : error}`);
235
+ }
236
+ }
237
+
238
+ if (method === 'prompts/list') {
239
+ return { prompts: listPrompts() };
240
+ }
241
+
242
+ if (method === 'prompts/get') {
243
+ const name = typeof params.name === 'string' ? params.name.trim() : '';
244
+ if (!name) {
245
+ throw jsonRpcError(-32602, 'Missing prompt name');
246
+ }
247
+ const prompt = prompts.get(name);
248
+ if (!prompt) {
249
+ throw jsonRpcError(-32602, `Unknown prompt: ${name}`);
250
+ }
251
+ try {
252
+ const args = params.arguments && typeof params.arguments === 'object'
253
+ ? params.arguments
254
+ : {};
255
+ const result = await prompt.get(args, request);
256
+ return {
257
+ description: prompt.description,
258
+ messages: Array.isArray(result && result.messages) ? result.messages : []
259
+ };
260
+ } catch (error) {
261
+ throw jsonRpcError(-32000, `Prompt get failed: ${error && error.message ? error.message : error}`);
262
+ }
263
+ }
264
+
265
+ if (method === 'notifications/initialized') {
266
+ return null;
267
+ }
268
+
269
+ throw jsonRpcError(-32601, `Method not found: ${method}`);
270
+ };
271
+
272
+ return {
273
+ handleRequest
274
+ };
275
+ }
276
+
277
+ function createMcpStdioServer(options = {}) {
278
+ const logger = typeof options.logger === 'function' ? options.logger : () => {};
279
+ const stdin = options.stdin || process.stdin;
280
+ const stdout = options.stdout || process.stdout;
281
+ const router = createMcpRequestRouter(options);
282
+ const jsonRpcVersion = '2.0';
283
+
284
+ let buffer = Buffer.alloc(0);
285
+ let started = false;
286
+ let stopped = false;
287
+
288
+ const writeMessage = (payload) => {
289
+ const text = JSON.stringify(payload);
290
+ const body = Buffer.from(text, 'utf-8');
291
+ const header = Buffer.from(`Content-Length: ${body.length}\r\nContent-Type: application/json\r\n\r\n`, 'utf-8');
292
+ stdout.write(Buffer.concat([header, body]));
293
+ };
294
+
295
+ const writeResponse = (id, result) => {
296
+ writeMessage({
297
+ jsonrpc: jsonRpcVersion,
298
+ id,
299
+ result
300
+ });
301
+ };
302
+
303
+ const writeError = (id, error) => {
304
+ const normalized = error && typeof error === 'object' && Number.isFinite(error.code)
305
+ ? error
306
+ : jsonRpcError(-32000, error && error.message ? error.message : String(error || 'Unknown error'));
307
+ writeMessage({
308
+ jsonrpc: jsonRpcVersion,
309
+ id,
310
+ error: normalized
311
+ });
312
+ };
313
+
314
+ const processMessage = async (rawText) => {
315
+ let message = null;
316
+ try {
317
+ message = JSON.parse(rawText);
318
+ } catch (error) {
319
+ writeError(null, jsonRpcError(-32700, 'Parse error'));
320
+ return;
321
+ }
322
+
323
+ if (!message || typeof message !== 'object') {
324
+ writeError(null, jsonRpcError(-32600, 'Invalid Request'));
325
+ return;
326
+ }
327
+
328
+ if (Array.isArray(message)) {
329
+ writeError(null, jsonRpcError(-32600, 'Batch request is not supported'));
330
+ return;
331
+ }
332
+
333
+ const hasMethod = typeof message.method === 'string' && message.method.trim().length > 0;
334
+ const hasId = Object.prototype.hasOwnProperty.call(message, 'id');
335
+
336
+ if (!hasMethod) {
337
+ if (hasId) {
338
+ writeError(message.id, jsonRpcError(-32600, 'Invalid Request'));
339
+ } else {
340
+ writeError(null, jsonRpcError(-32600, 'Invalid Request'));
341
+ }
342
+ return;
343
+ }
344
+
345
+ try {
346
+ const result = await router.handleRequest(message);
347
+ if (hasId) {
348
+ writeResponse(message.id, result === null ? {} : result);
349
+ }
350
+ } catch (error) {
351
+ if (hasId) {
352
+ writeError(message.id, error);
353
+ } else {
354
+ logger('error', `MCP notification handling failed: ${error && error.message ? error.message : error}`);
355
+ }
356
+ }
357
+ };
358
+
359
+ const parseBuffer = async () => {
360
+ while (buffer.length > 0) {
361
+ const headerEnd = buffer.indexOf('\r\n\r\n');
362
+ if (headerEnd < 0) {
363
+ return;
364
+ }
365
+
366
+ const headerText = buffer.slice(0, headerEnd).toString('utf-8');
367
+ const headers = {};
368
+ for (const line of headerText.split('\r\n')) {
369
+ const idx = line.indexOf(':');
370
+ if (idx <= 0) continue;
371
+ const key = line.slice(0, idx).trim().toLowerCase();
372
+ const value = line.slice(idx + 1).trim();
373
+ headers[key] = value;
374
+ }
375
+
376
+ const length = Number.parseInt(headers['content-length'] || '', 10);
377
+ if (!Number.isFinite(length) || length < 0) {
378
+ buffer = Buffer.alloc(0);
379
+ writeError(null, jsonRpcError(-32600, 'Invalid Content-Length header'));
380
+ return;
381
+ }
382
+
383
+ const bodyOffset = headerEnd + 4;
384
+ const frameLength = bodyOffset + length;
385
+ if (buffer.length < frameLength) {
386
+ return;
387
+ }
388
+
389
+ const body = buffer.slice(bodyOffset, frameLength);
390
+ buffer = buffer.slice(frameLength);
391
+ await processMessage(body.toString('utf-8'));
392
+ }
393
+ };
394
+
395
+ const onData = async (chunk) => {
396
+ if (stopped) return;
397
+ buffer = buffer.length === 0 ? chunk : Buffer.concat([buffer, chunk]);
398
+ try {
399
+ await parseBuffer();
400
+ } catch (error) {
401
+ logger('error', `MCP stdio parse failed: ${error && error.message ? error.message : error}`);
402
+ writeError(null, jsonRpcError(-32000, 'Internal parse failure'));
403
+ }
404
+ };
405
+
406
+ const onError = (error) => {
407
+ logger('error', `MCP stdio stream error: ${error && error.message ? error.message : error}`);
408
+ };
409
+
410
+ const start = () => {
411
+ if (started || stopped) return;
412
+ started = true;
413
+ stdin.on('data', onData);
414
+ stdin.on('error', onError);
415
+ stdout.on('error', onError);
416
+ if (stdin.isTTY) {
417
+ stdin.resume();
418
+ }
419
+ };
420
+
421
+ const stop = () => {
422
+ if (stopped) return;
423
+ stopped = true;
424
+ stdin.removeListener('data', onData);
425
+ stdin.removeListener('error', onError);
426
+ stdout.removeListener('error', onError);
427
+ };
428
+
429
+ return {
430
+ start,
431
+ stop
432
+ };
433
+ }
434
+
435
+ module.exports = {
436
+ DEFAULT_PROTOCOL_VERSION,
437
+ jsonRpcError,
438
+ createMcpRequestRouter,
439
+ createMcpStdioServer
440
+ };