Add inbox send fetch claim show commands

This commit is contained in:
2026-03-19 03:02:21 +08:00
parent 7b35f4dc5f
commit e9792dee88
7 changed files with 1085 additions and 0 deletions
+4
View File
@@ -23,6 +23,10 @@ func NewRootCmd() *cobra.Command {
cmd.PersistentFlags().StringVar(&opts.agent, "agent", "", "Agent identity")
cmd.AddCommand(newInitCmd(opts))
cmd.AddCommand(newSendCmd(opts))
cmd.AddCommand(newFetchCmd(opts))
cmd.AddCommand(newClaimCmd(opts))
cmd.AddCommand(newShowCmd(opts))
return cmd
}