yao/cmd/agent/fork.go
Max 44af6ba759 Enhance command structure with MCP and Robot functionalities
- Introduce new MCP and Robot command groups in the CLI, allowing for better organization of package management commands.
- Add corresponding command descriptions for MCP and Robot functionalities to improve user guidance.
- Update the agent command group to include additional commands for enhanced agent management.
- Modify .gitignore to exclude specific design markdown files from version control.
- Add environment variable for test application path in GitHub workflows to streamline testing setup.
2026-03-03 08:11:43 +08:00

48 lines
1.2 KiB
Go

package agent
import (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/registry"
agentmgr "github.com/yaoapp/yao/registry/manager/agent"
)
// ForkCmd implements "yao agent fork @scope/name [@target-scope]"
var ForkCmd = &cobra.Command{
Use: "fork [package] [target-scope]",
Short: L("Fork an assistant to a local scope"),
Long: L("Fork an assistant for local modification. Example: yao agent fork @yao/keeper"),
Args: cobra.RangeArgs(1, 2),
Run: func(cmd *cobra.Command, args []string) {
Boot()
pkgID := args[0]
var targetScope string
if len(args) > 1 {
targetScope = args[1]
}
client := registry.New(config.Conf.Registry,
registry.WithAuth(
os.Getenv("YAO_REGISTRY_USER"),
os.Getenv("YAO_REGISTRY_PASS"),
),
)
mgr := agentmgr.New(client, config.Conf.Root, nil)
if err := mgr.Fork(pkgID, agentmgr.ForkOptions{
TargetScope: targetScope,
}); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
},
}
func init() {
ForkCmd.PersistentFlags().StringVarP(&appPath, "app", "a", "", L("Application directory"))
ForkCmd.PersistentFlags().StringVarP(&envFile, "env", "e", "", L("Environment file"))
}