- Run black formatter on all Python files - Fix ruff linting issues: - Remove unused imports - Remove unused variables - Fix f-string without placeholders - All 37 tests still pass - Code quality improved for CI/CD compliance 🧹 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
316 B
Python
20 lines
316 B
Python
"""
|
|
System prompts for Gemini tools
|
|
"""
|
|
|
|
from .tool_prompts import (
|
|
ANALYZE_PROMPT,
|
|
CHAT_PROMPT,
|
|
DEBUG_ISSUE_PROMPT,
|
|
REVIEW_CODE_PROMPT,
|
|
THINK_DEEPER_PROMPT,
|
|
)
|
|
|
|
__all__ = [
|
|
"THINK_DEEPER_PROMPT",
|
|
"REVIEW_CODE_PROMPT",
|
|
"DEBUG_ISSUE_PROMPT",
|
|
"ANALYZE_PROMPT",
|
|
"CHAT_PROMPT",
|
|
]
|