go-scm/cmd/scm/cmd_scm.go
Virgil e73809cf8d
Some checks failed
Security Scan / security (push) Failing after 16s
Test / test (push) Successful in 2m18s
feat(cmd/scm): add manifest sign and verify commands
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 14:24:55 +00:00

46 lines
1.3 KiB
Go

// SPDX-License-Identifier: EUPL-1.2
// Package scm provides CLI commands for manifest compilation and marketplace
// index generation.
//
// Commands:
// - compile: Compile .core/manifest.yaml into core.json
// - index: Build marketplace index from repository directories
// - export: Export a compiled manifest as JSON to stdout
// - sign: Sign .core/manifest.yaml with an ed25519 private key
// - verify: Verify a manifest signature with an ed25519 public key
package scm
import (
"forge.lthn.ai/core/cli/pkg/cli"
)
func init() {
cli.RegisterCommands(AddScmCommands)
}
// Style aliases from shared package.
var (
successStyle = cli.SuccessStyle
errorStyle = cli.ErrorStyle
dimStyle = cli.DimStyle
valueStyle = cli.ValueStyle
numberStyle = cli.NumberStyle
)
// AddScmCommands registers the 'scm' command and all subcommands.
// Usage: AddScmCommands(...)
func AddScmCommands(root *cli.Command) {
scmCmd := &cli.Command{
Use: "scm",
Short: "SCM manifest and marketplace operations",
Long: "Compile manifests, build marketplace indexes, and export distribution metadata.",
}
root.AddCommand(scmCmd)
addCompileCommand(scmCmd)
addIndexCommand(scmCmd)
addExportCommand(scmCmd)
addSignCommand(scmCmd)
addVerifyCommand(scmCmd)
}