Some checks failed
Deploy / Test (push) Failing after 2s
Deploy / Build App Image (push) Has been skipped
Deploy / Build Web Image (push) Has been skipped
Deploy / Build Core Image (push) Failing after 2m8s
Deploy / Deploy to Production (push) Has been skipped
Security Scan / Secret Detection (push) Successful in 13s
Security Scan / Dependency & Config Scan (push) Successful in 19s
Security Scan / Go Vulnerability Check (push) Successful in 1m26s
Remove all external blank imports from main.go (go-ai, go-api, go-crypt, go-devops, go-ml, go-netops, go-scm) and delete cmd/ai/. Business logic moved to proper repos: go-agent, go-agentic, go-ai. Clean .core/ — remove LinuxKit VM templates, Claude Code plugin, and ephemeral issue plans. Keep only CLI build/release config. Drops 504 lines from go.mod/go.sum. CLI no longer pulls ollama, qdrant, duckdb, or other ML dependencies into its binary or security scan scope. Co-Authored-By: Virgil <virgil@lethean.io>
28 lines
788 B
Go
28 lines
788 B
Go
package main
|
|
|
|
import (
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
|
|
// Commands via self-registration (local to CLI)
|
|
_ "forge.lthn.ai/core/cli/cmd/config"
|
|
_ "forge.lthn.ai/core/cli/cmd/dev"
|
|
_ "forge.lthn.ai/core/cli/cmd/docs"
|
|
_ "forge.lthn.ai/core/cli/cmd/doctor"
|
|
_ "forge.lthn.ai/core/cli/cmd/gitcmd"
|
|
_ "forge.lthn.ai/core/cli/cmd/go"
|
|
_ "forge.lthn.ai/core/cli/cmd/help"
|
|
_ "forge.lthn.ai/core/cli/cmd/lab"
|
|
_ "forge.lthn.ai/core/cli/cmd/module"
|
|
_ "forge.lthn.ai/core/cli/cmd/monitor"
|
|
_ "forge.lthn.ai/core/cli/cmd/pkgcmd"
|
|
_ "forge.lthn.ai/core/cli/cmd/plugin"
|
|
_ "forge.lthn.ai/core/cli/cmd/qa"
|
|
_ "forge.lthn.ai/core/cli/cmd/session"
|
|
_ "forge.lthn.ai/core/cli/cmd/setup"
|
|
_ "forge.lthn.ai/core/cli/cmd/updater"
|
|
_ "forge.lthn.ai/core/cli/cmd/workspace"
|
|
)
|
|
|
|
func main() {
|
|
cli.Main()
|
|
}
|