discussion-mention-router
by official
Route @mentions to determine which participants should respond
# discussion-mention-router Route @mentions to determine which participants should respond ## Installation This is a CmdForge tool. Install it from the registry: ```bash cmdforge install discussion-mention-router ``` ## Usage Pipe discussion text into the tool to extract @mentions and determine which participants should respond: ```bash echo "@architect What's your opinion on this design?" | discussion-mention-router ``` ```bash echo "I think we should proceed with option A" | discussion-mention-router ``` ```bash cat discussion.txt | discussion-mention-router --default-participants "lead,reviewer" ``` ## Arguments | Flag | Variable | Default | Description | |------|----------|---------|-------------| | `--default-participants` | `default_participants` | `architect,security,pragmatist` | Comma-separated list of default participants if no mentions | ## How It Works 1. **Code Step**: Analyzes the input text for @mention patterns and extracts participant identifiers. If no @mentions are found, returns the default participants specified in the arguments. ## Dependencies None
Reviews
Login to reviewNo reviews yet.
Issues
No issues reported for this tool.
Write a Review
Share your experience with this tool.
0/2000
Report an Issue
Help improve this tool by reporting bugs or security issues.