Simple, intuitive CLI framework for Go pkg.go.dev/go.followtheprocess.codes/cli
go cli
0

Configure Feed

Select the types of activity you want to include in your feed.

go get -u ./... && go mod tidy

Tom Fleet (Jul 11, 2026, 1:13 PM +0100) 00944e3f 79992ae0

+8 -7
+2 -1
command.go
··· 698 698 envStr = "(env: $" + fl.EnvVar() + ")" 699 699 } 700 700 701 - fmt.Fprintf(tw, " %s\t--%s\t%s\t%s\t%s\t%s\n", 701 + fmt.Fprintf( 702 + tw, " %s\t--%s\t%s\t%s\t%s\t%s\n", 702 703 style.Bold.Text(shorthand), 703 704 style.Bold.Text(name), 704 705 fl.Type(),
+2 -2
go.mod
··· 16 16 require ( 17 17 go.followtheprocess.codes/diff v0.2.0 // indirect 18 18 go.yaml.in/yaml/v4 v4.0.0-rc.6 // indirect 19 - golang.org/x/sys v0.46.0 // indirect 20 - golang.org/x/term v0.44.0 // indirect 19 + golang.org/x/sys v0.47.0 // indirect 20 + golang.org/x/term v0.45.0 // indirect 21 21 )
+4 -4
go.sum
··· 8 8 go.followtheprocess.codes/test v1.4.0/go.mod h1:/Lq3YrwTqU/tb1wbO+Kt7Gs1I3qzFu/o/CUykOavoVA= 9 9 go.yaml.in/yaml/v4 v4.0.0-rc.6 h1:1h7H1ohdUh93/FyE4YaDa1Zh64K6VVbjF4K6WUxMtH4= 10 10 go.yaml.in/yaml/v4 v4.0.0-rc.6/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0= 11 - golang.org/x/sys v0.46.0 h1:noSf2Fq6F8DBgS+LysIkx7rIExoNHJsxOAtPp4rthXw= 12 - golang.org/x/sys v0.46.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= 13 - golang.org/x/term v0.44.0 h1:0rLvDRCtNj0gZkyIXhCyOb2OAzEhLVqc4B+hrsBhrmc= 14 - golang.org/x/term v0.44.0/go.mod h1:7ze4MdzUzLXpSAoFP1H0bOI9aXDqveSvatT5vKcFh2Y= 11 + golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs= 12 + golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= 13 + golang.org/x/term v0.45.0 h1:NwWyBmoJCbfTHpxrWoZ9C6/VxOf7ic219I8xZZFdrf0= 14 + golang.org/x/term v0.45.0/go.mod h1:9aqxs0blBcrm/n0L9QW0aRVD+ktan8ssZromtqJC43w= 15 15 golang.org/x/tools v0.44.0 h1:UP4ajHPIcuMjT1GqzDWRlalUEoY+uzoZKnhOjbIPD2c= 16 16 golang.org/x/tools v0.44.0/go.mod h1:KA0AfVErSdxRZIsOVipbv3rQhVXTnlU6UhKxHd1seDI=