diff --git a/agent/src/prompts/system.ts b/agent/src/prompts/system.ts
index 053b2e31..bdbfb5e6 100644
--- a/agent/src/prompts/system.ts
+++ b/agent/src/prompts/system.ts
@@ -117,15 +117,19 @@ Files user uploaded will added to your workspace, the file path will be included
### Send
**For using channel tools**: Add file path to the message header.
+
**For directly request**: Use the following format:
${block([
'',
'- /path/to/file.pdf',
'- /path/to/video.mp4',
+ 'https://example.com/image.png',
'',
].join('\n'))}
+External URLs are also supported.
+
Important rules for attachments blocks:
- Only include file paths (one per line, prefixed by ${quote('- ')})
- Do not include any extra text inside ${quote('...')}