Interactive CLI tool that scaffolds Go projects with a clean foundation — CI, linting, Claude Code integration, and more.
brew install zulerne/tap/goseedOr build from source:
go install github.com/zulerne/goseed/cmd/goseed@latestgoseedWalks you through 4 screens (project identity, license & build tool, features, automation) and generates a ready-to-build project.
goseed --name myapp --module github.com/user/myapp --no-interactive| Flag | Default | Description |
|---|---|---|
--name |
Project name | |
--module |
Go module path | |
--go-version |
1.26 |
Go version |
--license |
MIT |
MIT, Apache-2.0, or none |
--build-tool |
taskfile |
taskfile, makefile, or none |
--linter |
true |
Include golangci-lint config |
--goreleaser |
false |
Include GoReleaser |
--docker |
false |
Include Dockerfile |
--env-example |
true |
Include .env.example |
--dependabot |
false |
Include Dependabot config |
--claude |
false |
Include Claude Code files |
--claude-ci |
false |
Include Claude CI workflows |
--no-interactive |
false |
Skip TUI, use flags + defaults |
--output-dir |
. |
Output directory |
Every project includes:
cmd/{name}/main.go,internal/.gitignore,.editorconfiggo.mod,README.md- GitHub issue & PR templates
Optional (based on choices):
.golangci.yml— 17+ lintersTaskfile.ymlorMakefile.goreleaser.yaml+ release workflowDockerfile+.dockerignore.env.example.github/dependabot.yml- CI workflow (test + lint + govulncheck)
- Dependency review workflow
CLAUDE.md+.claude/rules/go.md- Claude Code CI workflows
LICENSE(MIT or Apache 2.0)
See CONTRIBUTING.md for development setup and guidelines.