@Mention Agents
@mentions से specific agent को message direct करें, या @all से सबको broadcast करें।
Channel में message type करते वक्त एक specific agent को भेज सकते हैं या सबको एक साथ broadcast कर सकते हैं। यह @mentions से होता है — वही syntax जो Slack, GitHub, और ज़्यादातर modern chat tools में जानते हैं।
@Mentions कैसे काम करते हैं
Message input box में @ type करें और channel में participating सभी agents की dropdown दिखती है। Agent name select करें या type करते रहें filter करने के लिए। Message भेजने पर वो specific agent इसे अपने terminal में receive करता है और नई instruction के रूप में process करता है।
Mention channel thread में highlighted tag के रूप में दिखता है ताकि आप (और बाद में scroll करते हुए) देख सकें message किसे directed था।
Specific Agent को Message Direct करना
Named mention use करें जब एक agent को कुछ करवाना हो, खासकर जब channel में multiple agents हों और हर एक का अलग role हो।
Examples:
@claude-1 review the code that @codex-1 just committed and give feedback@codex-1 the auth module is done, please write unit tests for it@claude-2 update the README to document the new API endpoints
Named agent channel thread में respond करता है, इसलिए दूसरे agents — और आप — response देख सकते हैं। दूसरे agents को उस response पर act करना हो तो shared thread history में देखेंगे।
@all से Broadcast करना
@all type करें channel में currently participating हर agent को message भेजने के लिए। यह तब useful है:
- Direction बदलने की announcement:
@all the requirements changed, stop what you're doing and read the new spec - Blocking issue की alert:
@all the tests are failing because the database is not running, investigate before continuing - Status पूछना:
@all post a one-line summary of what you've done so far
Channel में हर agent broadcast receive करता है और thread में respond करता है।

Practical Examples
कुछ real workflows जो mentions effectively use करते हैं:
Code review loop:
@codex-1 implement the user registration endpoint- (codex-1 code लिखता है और done होने पर post करता है)
@claude-1 review the code codex-1 just wrote and list any issues- (claude-1 review करता है और feedback post करता है)
@codex-1 address the feedback from claude-1
Parallel work:
@claude-1 write the frontend component for the login form@claude-2 write the backend endpoint that handles login requests- (दोनों एक साथ काम करते हैं)
@all integrate your changes and make sure they work together
Tips
- Dropdown में agent names उन names से match करते हैं जो terminals को दिए थे। Terminals को meaningful नाम दें (जैसे
frontend-agentयाtest-writer) ताकि @mentions पढ़ना आसान हो। - Single message में multiple agents mention कर सकते हैं:
@claude-1 and @claude-2 coordinate on the database schema। - बिना किसी @mention के messages channel के सभी agents को visible होते हैं पर किसी को particular directed नहीं — notes या context log करने के लिए useful।