autocomplete plugin for oclif

Get environment variables from the shell
The grunt command line interface
TypeScript client library for the Mistral AI API
EvenHub glasses app simulator
yargs the modern, pirate-themed, successor to optimist.
tab completion helpers, for node cli programs. Inspired by npm completion.
A reliable way to get env
tab completion helpers, for node cli programs. Inspired by npm completion.
Command Line Interface for Clever Cloud.
Command-line interface and type declarations for Homey Apps
Generate a safe zsh command center from any package.json scripts list.
LobeHub command-line interface.
Babel helper functions for inserting module loads
Babel helper functions for implementing ES6 module transformations
Monoceros workbench CLI — local, reproducible dev containers with first-class AI coding tooling.
Pretty, minimal and fast ZSH prompt
Is this specifier a node.js core module?
A Zsh prompt for Astronauts.
Get the path of the parent module
Auggie CLI Client by Augment Code
Format, lint and more in a fraction of seconds.
Lexes CommonJS modules, returning their named exports metadata
A High-level framework for creating zsh modules
Macro portion of the zsh-module crate, a high-level framework for creating dynamically-loadable ZSH modules in Rust. This crate provides the procedural macros used by zsh-module, and is not intended to be used directly by end-users.
Low-level bindings to dynamically-loadable zsh internals
Warp-Dir is compatible (and inspired by) the popular 'wd' tool available as a ZSH module. This one is written in ruby and so it should work in any shell. Credits for the original zsh-only tool go to (https://github.com/mfaerevaag/wd).
Bond is on a mission to improve autocompletion in ruby, especially for irb/ripl. Aside from doing everything irb's can do and fixing its quirks, Bond can autocomplete argument(s) to methods, uniquely completing per module, per method and per argument. Bond brings ruby autocompletion closer to bash/zsh as it provides a configuration system and a DSL for creating custom completions and completion rules. With this configuration system, users can customize their autocompletions and share it with others. Bond can also load completions that ship with gems. Bond is able to offer more than irb's completion since it uses the full line of input when completing as opposed to irb's last-word approach.
== Baf baf helps writing an user acceptance test suite with a dedicated library and cucumber steps. It can run and wait for programs in a modified environment, verify the exit status, the output streams and other side effects. It also supports interactive programs and writing to their standard input. Then, it provides a DSL to write the CLI: require 'baf/cli' module MyProgram class CLI < Baf::CLI def setup flag_version '0.1.2'.freeze option :c, :config, 'config', 'specify config file' do |path| @config_path = path end end def run usage! unless arguments.any? puts 'arguments: %s' % arguments puts 'config: %s' % @config_path if @config_path end end end MyProgram::CLI.run ARGV Which behaves this way: % ./my_program Usage: my_program [options] options: -c, --config config specify config file -h, --help print this message -V, --version print version zsh: exit 64 ./my_program % ./my_program --wrong-arg Usage: my_program [options] options: -c, --config config specify config file -h, --help print this message -V, --version print version zsh: exit 64 ./my_program --wrong-arg % ./my_program foo arguments ["foo"] % ./my_program -c some_file foo arguments ["foo"] config path some_file