6 command groups (score, gen, data, export, mon, infra) with 25 commands. All pass through to existing lem.Run* functions via the Core framework's cli package. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
454 B
Go
17 lines
454 B
Go
// Package lemcmd provides CLI commands for the LEM binary.
|
|
// Commands register through the Core framework's cli.WithCommands lifecycle.
|
|
package lemcmd
|
|
|
|
import (
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
)
|
|
|
|
// AddLEMCommands registers all LEM command groups on the root command.
|
|
func AddLEMCommands(root *cli.Command) {
|
|
addScoreCommands(root)
|
|
addGenCommands(root)
|
|
addDataCommands(root)
|
|
addExportCommands(root)
|
|
addMonCommands(root)
|
|
addInfraCommands(root)
|
|
}
|