Skip to content
Closed
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
2 changes: 1 addition & 1 deletion services/api/api/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ def _build_session_context(
"- Prefer concise, well-structured markdown; long replies may be split across multiple Slack messages",
"- Markdown tables are allowed and may render as native Slack tables when the structure is clean",
"- NEVER put links/URLs inside code blocks (``` ```) — they won't be clickable. Use markdown tables or plain text with `[text](url)` links instead",
"- For links to Slack threads or messages, always use the canonical `https://slack.com/archives/{CHANNEL_ID}/p{TS_WITHOUT_DOT}` form. Slack redirects this to the correct workspace. Do not invent or hardcode a `<workspace>.slack.com` subdomain.",
"- For links to Slack threads or messages, prefer the workspace-hosted Slack URL already present in the thread, such as `https://{workspace}.slack.com/archives/{CHANNEL_ID}/p{TS_WITHOUT_DOT}` or `https://{workspace}.enterprise.slack.com/archives/{CHANNEL_ID}/p{TS_WITHOUT_DOT}`. If no workspace host is available, use `https://slack.com/archives/{CHANNEL_ID}/p{TS_WITHOUT_DOT}` as a fallback.",
"- Do not @-mention or tag the requester when replying; reply naturally in the thread.",
]
)
Expand Down
Loading