| name | atmux-assign |
| description | Create and assign an ATMUX filesystem issue with `atmux issue create --assign-to`. Use when the user wants work handed to another ATMUX agent. |
| allowed-tools | Bash(atmux issue create*, atmux issue assign*) |
ATMUX Assign
Use atmux issue create --assign-to to create and assign work to another ATMUX agent in one shot. To assign an existing issue, use atmux issue assign <id> --to <agent>.
Arguments
$ARGUMENTS should contain fields separated by |:
target | title | given | when | then | optional todo 1 | optional todo 2 ...
Example:
/atmux-assign planner | stabilize parser | a token stream containing nulls | the parser encounters a null token | it returns an error instead of panicking | write failing test | fix null handling
Behavior
- Split the input on
|.
- Trim whitespace around each field.
- Map fields:
--assign-to (1st), --title (2nd), --given (3rd), --when (4th), --then (5th).
- Add each remaining field (6th+) as
--todo.
- Omit empty structured flags.
- Run
atmux issue create --title <title> --assign-to <target> [--given ...] [--when ...] [--then ...] [--todo ...].
- Report the assigned issue id or the error.