Generates unit tests and encourages model to auto-detect framework and testing style from existing sample (if available)
22 lines
436 B
Python
22 lines
436 B
Python
"""
|
|
Tool implementations for Zen MCP Server
|
|
"""
|
|
|
|
from .analyze import AnalyzeTool
|
|
from .chat import ChatTool
|
|
from .codereview import CodeReviewTool
|
|
from .debug import DebugIssueTool
|
|
from .precommit import Precommit
|
|
from .testgen import TestGenTool
|
|
from .thinkdeep import ThinkDeepTool
|
|
|
|
__all__ = [
|
|
"ThinkDeepTool",
|
|
"CodeReviewTool",
|
|
"DebugIssueTool",
|
|
"AnalyzeTool",
|
|
"ChatTool",
|
|
"Precommit",
|
|
"TestGenTool",
|
|
]
|