I used to joke at work that the fastest, simplest way to get promoted to a staff engineering position was to finish a 1 yr refactor.<p>Getting existing codebases to do new things is hard, and most of enterprise software engineering is basically "rework this API (in the general sense, not web-API sense) for a new product use case".<p>This tool seems to borrow the philosophy of Go's keeping the language simple, with the tradeoff of a more complex (but fairly well supported) ecosystem to account for missing language features.<p>IME, Golang (some would say paradoxically due to a lack of generics) is one of the best languages to refactor because of:<p>- Forced error handling semantics so that unhappy paths are easily enumerated<p>- Tooling like `rdep` to quickly grok the impact of a package refactor<p>- String templates/codegen being a first-class "blessed" part of the ecosystem (i.e. you can find tooling by the Go team as a reference when writing your own)<p>Some would balk at things like codegen being how Go handles this, but for the iteration loops at most companies at scale (where a few tools to do codegen are written & maintained by one team and consumed by others) it works well. For paradigms where you want everyone to contribute to the tooling, it works slightly less well since the barrier of understanding the ecosystem is greater than just understanding the language. Nevertheless, it seems to be the right tradeoff for most enterprise use cases.