I've grown to really like Bash as I can do things in one line using builtins vs a multiple line Python script requiring external libraries. I can also have exact parity with cloud command line interface ( e.g. aws, az, gcloud) features (vs the cloud API libraries).
Assuming I stick with Bash for at least the short term, what Bash frameworks have you used and recommend? I've taken a look at Bash infinity but it doesn't appear be an active project judging by lack of recent releases. I'm primarily interested in code-reuse and best practices. I'm already well on my way to building a framework with a node feel, incorporating shellcheck, creating an 'app generator' and pulling in modules from an external privately shared repository.
Am I re-inventing the wheel? Does anyone else have any use for something similar?