## Summary - Extract PHP/Laravel commands to `core/php` repo (42 files, standalone module) - Extract CI/release + SDK commands to `core/ci` repo (10 files) - Remove `internal/variants/` build tag system entirely - Move all 30 remaining command packages from `internal/cmd/` to top-level `cmd/` - Rewrite `main.go` with direct imports — no more variant selection - PHP and CI are now optional via commented import lines in main.go Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #2 Co-authored-by: Charon <charon@lthn.ai> Co-committed-by: Charon <charon@lthn.ai>
48 lines
940 B
Go
48 lines
940 B
Go
package plugin
|
|
|
|
import (
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
"forge.lthn.ai/core/go/pkg/i18n"
|
|
"forge.lthn.ai/core/go/pkg/io"
|
|
"forge.lthn.ai/core/go/pkg/plugin"
|
|
)
|
|
|
|
func addRemoveCommand(parent *cli.Command) {
|
|
removeCmd := cli.NewCommand(
|
|
"remove <name>",
|
|
i18n.T("Remove an installed plugin"),
|
|
"",
|
|
func(cmd *cli.Command, args []string) error {
|
|
return runRemove(args[0])
|
|
},
|
|
)
|
|
removeCmd.Args = cli.ExactArgs(1)
|
|
|
|
parent.AddCommand(removeCmd)
|
|
}
|
|
|
|
func runRemove(name string) error {
|
|
basePath, err := pluginBasePath()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
registry := plugin.NewRegistry(io.Local, basePath)
|
|
if err := registry.Load(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if !cli.Confirm("Remove plugin " + name + "?") {
|
|
cli.Dim("Cancelled")
|
|
return nil
|
|
}
|
|
|
|
installer := plugin.NewInstaller(io.Local, registry)
|
|
|
|
if err := installer.Remove(name); err != nil {
|
|
return err
|
|
}
|
|
|
|
cli.Success("Plugin " + name + " removed")
|
|
return nil
|
|
}
|