Hi, if you try to import any library using Mage, you will download Mage as a dependency. You can try that with Hugo: `main.go` ```go package main import ( "fmt" "github.com/gohugoio/hugo/livereload" ) func main() { fmt.Printf("%s\n", livereload.Handler) } ``` ```shell-session $ go mod init go-test $ go run main.go ``` The reason is because the `go.mod` file from Hugo includes Mage and any other magefile dependency in it