Load CodeWiki configuration from ~/.codewiki/config.json + keyring.
()
| 439 | return await _legacy_generate_docs(arguments) |
| 440 | |
| 441 | elif name == "get_module_tree": |
| 442 | return await _legacy_get_module_tree(arguments) |
| 443 | |
| 444 | else: |
| 445 | return [_text(json.dumps({"error": f"Unknown tool: {name}"}))] |
| 446 | |
| 447 | except Exception as e: |
| 448 | logger.error("Tool %s failed: %s", name, e, exc_info=True) |
| 449 | return [_text(json.dumps({"error": str(e)}))] |
| 450 | |
| 451 | |
| 452 | # =================================================================== |
no test coverage detected