89 lines
2.1 KiB
Go
89 lines
2.1 KiB
Go
package inbox
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"ai-workflow-skill/internal/db"
|
|
"ai-workflow-skill/internal/protocol"
|
|
"ai-workflow-skill/internal/store"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type updateOptions struct {
|
|
agent string
|
|
threadID string
|
|
status string
|
|
summary string
|
|
body string
|
|
payloadJSON string
|
|
}
|
|
|
|
func newUpdateCmd(root *rootOptions) *cobra.Command {
|
|
opts := &updateOptions{}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "update",
|
|
Short: "Append a progress or blocked update to a thread",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
ctx := cmd.Context()
|
|
|
|
agent := opts.agent
|
|
if agent == "" {
|
|
agent = root.agent
|
|
}
|
|
if agent == "" {
|
|
return fmt.Errorf("agent is required")
|
|
}
|
|
|
|
sqlDB, err := db.Open(ctx, root.dbPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer sqlDB.Close()
|
|
|
|
s := store.NewInboxStore(sqlDB)
|
|
thread, message, err := s.UpdateThreadStatus(ctx, store.UpdateInput{
|
|
ThreadID: opts.threadID,
|
|
Agent: agent,
|
|
Status: opts.status,
|
|
Summary: opts.summary,
|
|
Body: opts.body,
|
|
PayloadJSON: opts.payloadJSON,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp := protocol.Success{
|
|
OK: true,
|
|
Command: "update",
|
|
Data: map[string]any{
|
|
"thread": thread,
|
|
"message": message,
|
|
},
|
|
}
|
|
|
|
if root.json {
|
|
return protocol.WriteJSON(cmd.OutOrStdout(), resp)
|
|
}
|
|
|
|
_, err = fmt.Fprintf(cmd.OutOrStdout(), "updated thread %s to %s\n", thread.ThreadID, thread.Status)
|
|
return err
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVar(&opts.agent, "agent", "", "Updating agent")
|
|
cmd.Flags().StringVar(&opts.threadID, "thread", "", "Thread ID")
|
|
cmd.Flags().StringVar(&opts.status, "status", "", "New status: in_progress or blocked")
|
|
cmd.Flags().StringVar(&opts.summary, "summary", "", "Short update summary")
|
|
cmd.Flags().StringVar(&opts.body, "body", "", "Update body")
|
|
cmd.Flags().StringVar(&opts.payloadJSON, "payload-json", "", "Structured payload JSON string")
|
|
|
|
_ = cmd.MarkFlagRequired("thread")
|
|
_ = cmd.MarkFlagRequired("status")
|
|
_ = cmd.MarkFlagRequired("summary")
|
|
|
|
return cmd
|
|
}
|