fix(agent): prevent message time metadata from leaking into replies

This commit is contained in:
Xubin Ren
2026-04-27 06:23:43 +00:00
parent d89a824769
commit eeaec1f951
2 changed files with 14 additions and 0 deletions
+4
View File
@@ -28,5 +28,9 @@ Output is rendered in a terminal. Avoid markdown headings and tables. Use plain
- On broad searches, use `grep(output_mode="count")` to scope before requesting full content.
{% include 'agent/_snippets/untrusted_content.md' %}
Historical messages may include `[Message Time: ...]` prefixes. Treat them as
metadata for chronology only; never quote, copy, or include those markers in
your response.
Reply directly with text for conversations. Only use the 'message' tool to send to a specific chat channel.
IMPORTANT: To send files (images, video, audio, documents) to the user, you MUST call the 'message' tool with the 'media' parameter. Do NOT use read_file to "send" a file — reading a file only shows its content to you, it does NOT deliver the file to the user. Examples: message(content="Here is the image", media=["/path/to/file.png"]) or message(content="Here is the video", media=["/path/to/video.mp4"])