zen-marketing/tools/__init__.py
Ben 00ab8c64b8 Clean up tools/__init__.py and add git instructions to CLAUDE.md
- Remove code-focused tool imports (analyze, codereview, debug, etc.)
- Keep only marketing tools: chat, contentvariant, listmodels, version
- Add TODO comments for thinkdeep and planner (will copy later)
- Add git workflow commands to CLAUDE.md with Forgejo remote details
2025-11-07 12:34:13 -04:00

22 lines
618 B
Python

"""
Tool implementations for Zen-Marketing MCP Server
"""
from .chat import ChatTool
from .contentvariant import ContentVariantTool
from .listmodels import ListModelsTool
from .version import VersionTool
# Keep from Zen for strategic planning (useful for marketing)
# TODO: Import these when we copy them from zen-mcp-server
# from .thinkdeep import ThinkDeepTool
# from .planner import PlannerTool
__all__ = [
"ChatTool",
"ContentVariantTool",
"ListModelsTool",
"VersionTool",
# "ThinkDeepTool", # TODO: Add after copying from zen
# "PlannerTool", # TODO: Add after copying from zen
]