767 B
767 B
HarborForge.Cli
HarborForge.Cli is the home of the new Go-based hf binary for HarborForge.
Current status
This repository now contains the initial Go scaffold required by the cross-project plan:
- Go module initialization
- binary entrypoint at
cmd/hf/main.go - placeholder internal package layout for future implementation
- basic build instructions
Build
go build -o ./bin/hf ./cmd/hf
Run
go run ./cmd/hf --help
go run ./cmd/hf version
Planned package layout
cmd/hf/
internal/
client/
commands/
config/
help/
mode/
passmgr/
The scaffold is intentionally minimal so follow-up work can implement config loading, mode detection, help rendering, auth, and API command groups incrementally.