Skip to content

discussion-mention-router

by official

Discussion

Route @mentions to determine which participants should respond

discussion utility orchestrated-discussions
# 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

No reviews yet.

Issues

No issues reported for this tool.