Skip to content
Open

test #299

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion codemcp/tools/init_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,11 @@ async def init_project(
if project_prompt:
combined_prompt += "\n\n" + project_prompt

return combined_prompt
return f"""
# Chat ID and Git tracking
This chat has been assigned a chat ID: {chat_id}
When you use any tool, you MUST always include this chat ID as the chat_id parameter.
"""
except Exception as e:
logging.warning(
f"Exception suppressed during project initialization: {e!s}", exc_info=True
Expand Down
Loading