From 072bef5989c83d2e224732d244d65285f5c034ac Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 23 Jun 2025 16:17:26 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20LLM=20hints=20success=20ke?= =?UTF-8?q?y=20access?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed incorrect access to result['success'] instead of result['summary']['success'] in environment_info LLM hints section. This resolves the critical 'success' key error. --- enhanced_mcp/workflow_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enhanced_mcp/workflow_tools.py b/enhanced_mcp/workflow_tools.py index 33cfd87..1fca46f 100644 --- a/enhanced_mcp/workflow_tools.py +++ b/enhanced_mcp/workflow_tools.py @@ -2447,7 +2447,7 @@ class EnvironmentProcessManagement(MCPMixin): llm_hints = result["llm_hints"] # Suggest next actions based on what was found - if result["success"]: + if result["summary"]["success"]: if "python" in result["sections_data"]: python_info = result["sections_data"]["python"] if python_info["in_virtualenv"]: