Batteries Included CLI Framework

2 days ago

I've been looking for a "batteries included" CLI framework that besides the usual argument and flag parsing also provides telemetry, auth, release pipeline, testing utils, ... but couldn't find anything like that.

As CLIs are becoming more popular it seems that these problems will be more and more common. Is anyone aware of a service that provides those features out-of-the-box? I'm thinking about something like stainless.com but for CLIs instead of SDKs.

I would recommend oclif if you're using node

It has pretty much everything you're looking for. Feel free to ask me any question. I maintained the project for several years

  • Thanks a lot for your work on oclif!

    What I was looking for is something like a framework + service. Imagine the equivalent of netx.js + vercel but for CLIs instead of for full stack apps. oclif seems to be only a great framework afaik.

    as usage of CLIs increases I wonder whether there will be a need for a service that provides everything that developers of CLIs need (auth, telemetry, releases, ...). Something like what Vercel is today for full stack apps. Are you aware of anything along those lines?