refactor: rename think_deeper to thinkdeep for brevity

- Renamed `think_deeper` tool to `thinkdeep` for shorter, cleaner naming
- Updated all imports from ThinkDeeperTool to ThinkDeepTool
- Updated all references from THINK_DEEPER_PROMPT to THINKDEEP_PROMPT
- Updated tool registration in server.py
- Updated all test files to use new naming convention
- Updated README documentation to reflect new tool names
- All functionality remains the same, only naming has changed

This completes the tool renaming refactor for improved clarity and consistency.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Fahad
2025-06-10 12:38:38 +04:00
parent 5f8ed3aae8
commit ba8f7192c3
12 changed files with 49 additions and 49 deletions

View File

@@ -21,7 +21,7 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import json
from tools.analyze import AnalyzeTool
from tools.think_deeper import ThinkDeeperTool
from tools.thinkdeep import ThinkDeepTool
async def run_manual_live_tests():
@@ -60,8 +60,8 @@ async def run_manual_live_tests():
print("❌ AnalyzeTool live test failed")
return False
# Test ThinkDeeperTool
think_tool = ThinkDeeperTool()
# Test ThinkDeepTool
think_tool = ThinkDeepTool()
result = await think_tool.execute(
{
"current_analysis": "Testing live integration",
@@ -70,9 +70,9 @@ async def run_manual_live_tests():
)
if result and result[0].text and "Extended Analysis" in result[0].text:
print("✅ ThinkDeeperTool live test successful")
print("✅ ThinkDeepTool live test successful")
else:
print("❌ ThinkDeeperTool live test failed")
print("❌ ThinkDeepTool live test failed")
return False
# Test collaboration/clarification request