Go to file
2022-03-06 17:32:10 -05:00
.github Add GitHub sponsorship info 2022-02-17 23:17:05 -05:00
check Add check.IsDir 2022-02-25 23:28:43 -05:00
comp Complete golden comp.File completer 2022-02-27 01:34:51 -05:00
each Add each package to replace loop 2022-02-26 19:35:57 -05:00
filt Drop loop 2022-02-27 02:02:28 -05:00
fn Improve organization of functional packages 2022-02-27 01:17:49 -05:00
inc Add scan.R.Parse*, z.P->z.Y, z.P for parse 2022-03-04 21:20:54 -05:00
json Add PrintAsJSON interface 2022-03-02 03:11:09 -05:00
mapf Improve organization of functional packages 2022-02-27 01:17:49 -05:00
maps Improve organization of functional packages 2022-02-27 01:17:49 -05:00
scan Start factor Expect into methods instead 2022-03-05 08:20:10 -05:00
set Factor out functional (fn), sets, loops 2022-02-25 21:46:36 -05:00
term Add full term attribute support 2022-02-28 13:37:00 -05:00
tools Add tools including goprintasjson vim filter 2022-03-02 03:13:53 -05:00
tree More BPEGN additions and examples 2022-03-03 19:06:12 -05:00
typ Fix typ package name 2022-03-01 04:27:16 -05:00
util Add util.Stack 2022-03-05 19:21:40 -05:00
bonzai_test.go Add variadic completer arguments and clean 2022-02-24 20:21:39 -05:00
bonzai.go Add variadic completer arguments and clean 2022-02-24 20:21:39 -05:00
cmd_test.go Move cmd/ to inc/ for consistency 2022-02-27 18:31:40 -05:00
cmd.go Drop loop 2022-02-27 02:02:28 -05:00
CONTRIBUTING Add legal stuff 2022-02-17 17:47:28 -05:00
doc.go Shorten legal stuff 2022-02-19 19:22:03 -05:00
go.mod Add go.mod 2022-02-14 22:58:43 -05:00
go.work Add go.work (i <3 1.18) 2022-02-17 18:11:27 -05:00
LICENSE Add legal stuff 2022-02-17 17:47:28 -05:00
README.md Add under construction until not 2022-03-06 17:32:10 -05:00

Bonzai! Dominate the Command Line

🚧 under construction 🚧

Go Version GoDoc License Go Report
Card

Installation

🎉 Bonzai shamelessly requires Go 1.18+ 💋

  1. Install Go 1.18 and the tooling your require for it
  2. go install github.com/rwxrob/bonzai@latest
  3. import "github.com/rwxrob/bonzai"
  4. Consider using the template to get started

😎 Yes, we use the wonderful new generics all over. 👍

Welcome to Bonzai

Yes, "banzai" is something people yell going into battle. But isn't that what making command line utilities in Go (instead of your favorite shell script) actually is?

And yes, "bonsai" trees are well-manicured, meticulously crafted, miniature trees that rival their larger cousins, just like Bonzai command and data node trees. They are unlike anything you've probably encountered so far, no getopt dashes (we kind of hate them), no ugly commander interface to learn, no 12637 lines of shell tab completion bloat to source before your command will complete, just well manicured nested-tab-complete-with-magical-aliases-enabled commands organized into rooted node trees for your command-line enjoyment. Your right-pinky will be particularly grateful.

But wait, there's more! What about all those other tasks you need to do to make a command line application honorable in anyone's eyes? Tools are needed.

Contributors/PRs Welcome

... especially for "Completers", included popular commands, and Runtime Detection.

Speaking of sharing, why not send a PR for your addition to the ever growing collection of comp subpackage Completers for everything from days of the week, to tab-driven inline math calculations, to a list of all the listening ports running on your current system.

CONTRIBUTING

"It's spelled bonsai/banzai."

We know. The domains were taken. Plus, this makes it more unique and easier to find once you know the strange spelling we chose to use. Sorry if that triggers your OCD.

If you must know, the primary motivator was the similarity to a well-manicured tree (since it is for creating trees of commands). And Buckaroo Banzai was always a favorite. We like to think he would use Bonzai today to make amazing things.

On a lighter note, it just so happens that "banzai" means 'a traditional Japanese idiom meaning "ten thousand years" of long life,' a cheer used in celebrations. So combining the notion of a happy, little, well-manicured, beautiful tree and "ten thousand years of long life" works out just fine for us.

It turns out that the "call to war" associated with Bonzai is not entirely without merit as well. Bonzai makes short work of creating offensive and defensive tool kits all wrapping into one nice Go binary, popular for building single-binary Linux container distros (like BusyBox and Alpine, watch for Bonzai Linux soon), as well as root kits, and other security tools

What People Are Saying

"It's like a modular, multicall BusyBox builder for Go with built in completion and embedded documentation support."

"The utility here is that Bonzai lets you maintain your own personal 'toolbox' with built in auto-complete that you can assemble from various Go modules. Individual commands are isolated and unaware of each other and possibly maintained by other people." (tadasv123)

Example GitHub Template

https://github.com/rwxrob/bonzai-template

Design Considerations

  • Promote high-level package library API calls over Cmd bloat. Code belongs in package libraries, not Cmds. While Bonzai allows for rapid applications development by putting everything initially in Cmd Methods, Cmds are most designed for documentation and completion, not heavy Method implementations. Eventually, most Method implementations should be moved into their own package libraries, perhaps even in the same Go module. Cmds should never be communicating with each other directly. While the idea of adding a Channel attribute was intriguing, it quickly became clear that doing so would promote too much code and tight coupling --- even with channels --- between specific commands. Cmds should be very light. In fact, most Cmds should assign their Method directly from one matching the Method function signature in a callable, high-level library.

  • Only bash completion planned. Zsh, Powershell, and Fish have no equivalent to complete -C (which allows any executable to provide its own completion) This forces inferior dependencies on overly verbose external "completer" scripts written in only those languages for those specific shells. This dependency completely negates any possibility of providing modular completers and composable commands that carry their own completion logic. This one objective fact alone should give every pause before opting to use one of these inferior shells for their command line interactions. Bonzai commands leverage this best-of-breed completion functionality of bash to provide an unlimited number of completion methods and combinations. The equivalent implementations, perhaps as an export collected from all composed commands providing their shell equivalent of completion scripts, would be preposterously large (even though kubectl requires 12637 lines of bash just for its basic completion). Bonzai uses Go itself to manage that completion --- drawing on a rich collection of completers included in the standard Bonzai module --- and provides documented shortcut aliases when completion is not available (h|help, for example).

  • Bonzai commands may default to shell.Cmd or help.Cmd These provide help information and optional interactive assistance including tab completion in runtime environments that do not have complete -C foo foo enabled.

Style Guidelines

  • Everything through go fmt or equiv, no exceptions
  • In Vim set textwidth=72 (not 80 to line numbers fit)
  • Use /* */ for package documentation comment, // elsewhere
  • Smallest possible names for given scope while still clear
  • Package globals that will be used a lot can be single capital
  • Must be good reason to use more than 4 character pkg name
  • Avoid unnecessary comments

Acknowledgements

The https://twitch.tv/rwxrob community has been constantly involved with the development of this project, making suggestions about everything from my use of init, to the name "bonzai". While all their contributions are too numerous to name specifically, they more than deserve a huge thank you here.

  • Quint
  • Greg

Copyright 2022 Robert S. Muhlestein (mailto:rob@rwx.gg)
SPDX-License-Identifier: Apache-2.0

"Bonzai" and "bonzai" are legal trademarks of Robert S. Muhlestein but can be used freely to refer to the Bonzai project https://github.com/rwxrob/bonzai without limitation. To avoid potential developer confusion, intentionally using these trademarks to refer to other projects --- free or proprietary --- is prohibited.