rename task follow to task chat, remove top level cline send (#6845)

* removing cline send command

* rename task follow to task chat
This commit is contained in:
Toshii
2025-10-14 16:02:41 -07:00
committed by GitHub
parent 3288defb67
commit 0440898584
2 changed files with 8 additions and 9 deletions
+8 -8
View File
@@ -38,8 +38,8 @@ func NewTaskCommand() *cobra.Command {
cmd.AddCommand(newTaskNewCommand())
cmd.AddCommand(newTaskOneshotCommand())
cmd.AddCommand(newTaskPauseCommand())
cmd.AddCommand(newTaskFollowCommand())
cmd.AddCommand(NewTaskSendCommand())
cmd.AddCommand(newTaskChatCommand())
cmd.AddCommand(newTaskSendCommand())
cmd.AddCommand(newTaskViewCommand())
cmd.AddCommand(newTaskListCommand())
cmd.AddCommand(newTaskOpenCommand())
@@ -270,7 +270,7 @@ func newTaskPauseCommand() *cobra.Command {
return cmd
}
func NewTaskSendCommand() *cobra.Command {
func newTaskSendCommand() *cobra.Command {
var (
images []string
files []string
@@ -392,14 +392,14 @@ func NewTaskSendCommand() *cobra.Command {
return cmd
}
func newTaskFollowCommand() *cobra.Command {
func newTaskChatCommand() *cobra.Command {
var address string
cmd := &cobra.Command{
Use: "follow",
Aliases: []string{"f"},
Short: "Follow current task conversation in real-time",
Long: `Follow the current task conversation, displaying new messages as they arrive in real-time. Interactive input is enabled by default.`,
Use: "chat",
Aliases: []string{"c"},
Short: "Chat with the current task in interactive mode",
Long: `Chat with the current task, displaying messages in real-time with interactive input enabled.`,
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
ctx := cmd.Context()