* refactor(cli): migrate to Cobra-based command structure Refactor CLI to use Cobra instead of manual os.Args parsing. - Introduce root command and structured subcommands under cmd/picoclaw/internal - Convert agent, auth, cron, gateway, migrate, onboard, skills, status and version to Cobra commands - Replace manual flag parsing with Cobra flags - Remove direct os.Args usage from command handlers - Keep existing command behavior and output semantics This change focuses on CLI structure and maintainability. No business logic changes intended. * chore(cli): remove version2 alias and make cobra a direct dependency * test(cli): add basic command tests - Add tests for CLI command tree and flag parsing - Align LDFLAGS injection path for version info - Remove unused manual help function * test: migrate command tests to testify assertions Replace standard library testing error checks (t.Error*, t.Fatalf) with assert/require from stretchr/testify across all cobra command tests for improved readability and consistency. * fix(cli): make linter happy * test: avoid duplication in windows config path test * test: simplify allowed command checks using slices.Contains * fix(skills): register subcommands during command construction - Move subcommand registration out of PersistentPreRunE - Ensure `picoclaw skills <subcommand>` resolves correctly - Minor install command and test cleanups * refactor(cli): address review feedback and improve command clarity * fix(authLogoutCmd): rm os.Exit
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
package skills
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/sipeed/picoclaw/cmd/picoclaw/internal"
|
|
"github.com/sipeed/picoclaw/pkg/skills"
|
|
)
|
|
|
|
type deps struct {
|
|
workspace string
|
|
installer *skills.SkillInstaller
|
|
skillsLoader *skills.SkillsLoader
|
|
}
|
|
|
|
func NewSkillsCommand() *cobra.Command {
|
|
var d deps
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "skills",
|
|
Short: "Manage skills",
|
|
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
|
|
cfg, err := internal.LoadConfig()
|
|
if err != nil {
|
|
return fmt.Errorf("error loading config: %w", err)
|
|
}
|
|
|
|
d.workspace = cfg.WorkspacePath()
|
|
d.installer = skills.NewSkillInstaller(d.workspace)
|
|
|
|
// get global config directory and builtin skills directory
|
|
globalDir := filepath.Dir(internal.GetConfigPath())
|
|
globalSkillsDir := filepath.Join(globalDir, "skills")
|
|
builtinSkillsDir := filepath.Join(globalDir, "picoclaw", "skills")
|
|
d.skillsLoader = skills.NewSkillsLoader(d.workspace, globalSkillsDir, builtinSkillsDir)
|
|
|
|
return nil
|
|
},
|
|
RunE: func(cmd *cobra.Command, _ []string) error {
|
|
return cmd.Help()
|
|
},
|
|
}
|
|
|
|
installerFn := func() (*skills.SkillInstaller, error) {
|
|
if d.installer == nil {
|
|
return nil, fmt.Errorf("skills installer is not initialized")
|
|
}
|
|
return d.installer, nil
|
|
}
|
|
|
|
loaderFn := func() (*skills.SkillsLoader, error) {
|
|
if d.skillsLoader == nil {
|
|
return nil, fmt.Errorf("skills loader is not initialized")
|
|
}
|
|
return d.skillsLoader, nil
|
|
}
|
|
|
|
workspaceFn := func() (string, error) {
|
|
if d.workspace == "" {
|
|
return "", fmt.Errorf("workspace is not initialized")
|
|
}
|
|
return d.workspace, nil
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
newListCommand(loaderFn),
|
|
newInstallCommand(installerFn),
|
|
newInstallBuiltinCommand(workspaceFn),
|
|
newListBuiltinCommand(),
|
|
newRemoveCommand(installerFn),
|
|
newSearchCommand(installerFn),
|
|
newShowCommand(loaderFn),
|
|
)
|
|
|
|
return cmd
|
|
}
|