aida_highlight
Record notable development achievements like performance improvements and architecture optimizations to track progress in AI coding sessions.
Instructions
记录值得关注的亮点,如性能提升、架构优化等。
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | 亮点内容描述 |
Implementation Reference
- src/mcp/server.ts:560-571 (handler)Implementation of the handler function for 'aida_highlight'.
function handleHighlight(args: any): any { const { path, data } = ensureRunJson(); const highlight: HighlightItem = { content: args.content, source: 'auto', createdAt: now(), }; data.highlights.push(highlight); addEvent(data, 'highlight_added', { content: args.content }); save(path, data); return { success: true, message: `亮点已记录: ${args.content}` }; } - src/mcp/server.ts:222-231 (registration)Tool registration for 'aida_highlight'.
name: 'aida_highlight', description: '记录值得关注的亮点,如性能提升、架构优化等。', inputSchema: { type: 'object', properties: { content: { type: 'string', description: '亮点内容描述' }, }, required: ['content'], }, },