mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
ad8ba4aac6
## Overview This change promotes the tasks CLI commands from `coder exp task` to `coder task`, marking them as generally available (GA). ## Migration Users will need to update their scripts from: ```shell coder exp task create "my task" ``` To: ```shell coder task create "my task" ``` --- 🤖 This change was written by Claude Sonnet 4.5 Thinking using [mux](https://github.com/coder/mux) and reviewed by a human 🏄🏻♂️
532 B
Generated
532 B
Generated
task send
Send input to a task
Usage
coder task send [flags] <task> [<input> | --stdin]
Description
- Send direct input to a task.:
$ coder task send task1 "Please also add unit tests"
- Send input from stdin to a task.:
$ echo "Please also add unit tests" | coder task send task1 --stdin
Options
--stdin
| Type | bool |
Reads the input from stdin.