Files
my-pal-mcp-server/prompts/__init__.py
Fahad 5f8ed3aae8 refactor: rename review tools for clarity and consistency
- Renamed `review_code` tool to `codereview` for better naming convention
- Renamed `review_changes` tool to `precommit` to better reflect its purpose
- Updated all tool descriptions to remove "Triggers:" sections and improve clarity
- Updated all imports and references throughout the codebase
- Renamed test files to match new tool names
- Updated server.py tool registrations
- All existing functionality preserved with improved naming

This refactoring improves code organization and makes tool purposes clearer.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-10 12:30:06 +04:00

20 lines
314 B
Python

"""
System prompts for Gemini tools
"""
from .tool_prompts import (
ANALYZE_PROMPT,
CHAT_PROMPT,
CODEREVIEW_PROMPT,
DEBUG_ISSUE_PROMPT,
THINK_DEEPER_PROMPT,
)
__all__ = [
"THINK_DEEPER_PROMPT",
"CODEREVIEW_PROMPT",
"DEBUG_ISSUE_PROMPT",
"ANALYZE_PROMPT",
"CHAT_PROMPT",
]