update_game_knowledge
Research and update knowledge about game development best practices and technologies to maintain current expertise.
Instructions
Update knowledge about game development best practices and technologies
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topics | Yes | Topics to research and update knowledge about |
Implementation Reference
- src/index.js:132-154 (handler)The handler function for `update_game_knowledge` tool which delegates the logic to `gameTemplateService.updateKnowledge`.
async updateGameKnowledge(args) { try { // This would integrate with documentation services const updates = await this.gameTemplateService.updateKnowledge(args.topics); return { content: [ { type: 'text', text: `Knowledge updated for topics: ${args.topics.join(', ')}`, }, ], }; } catch (error) { return { content: [ { type: 'text', text: `Error updating knowledge: ${error.message}`, }, ], }; } } - src/index.js:65-81 (schema)Tool registration and input schema definition for `update_game_knowledge`.
{ name: 'update_game_knowledge', description: 'Update knowledge about game development best practices and technologies', inputSchema: { type: 'object', properties: { topics: { type: 'array', items: { type: 'string', }, description: 'Topics to research and update knowledge about', }, }, required: ['topics'], }, },