awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

67 Repos

Awesome GitHub RepositoriesShell Completion Generators

Utilities for producing shell-specific auto-completion scripts.

Distinguishing note: Focuses on the generation of scripts for shell environments.

Explore 67 awesome GitHub repositories matching development tools & productivity · Shell Completion Generators. Refine with filters or upvote what's useful.

Awesome Shell Completion Generators GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • pyenv/pyenvAvatar von pyenv

    pyenv/pyenv

    44,895Auf GitHub ansehen↗

    Dieses Projekt ist ein Befehlszeilen-Tool zur Verwaltung mehrerer isolierter Sprach-Runtime-Versionen auf einem einzigen Entwicklungsrechner. Es ermöglicht Benutzern das Installieren, Wechseln und Pflegen verschiedener Runtime-Versionen, wodurch projektspezifische Anforderungen erfüllt werden, ohne mit systemweiter Software zu kollidieren. Das Tool zeichnet sich durch eine Shim-basierte Ausführungsumgebung aus, die Systemaufrufe abfängt und basierend auf dem aktuellen Verzeichnis dynamisch an die korrekte Runtime-Version weiterleitet. Durch das Durchsuchen der Dateisystemhierarchie nach Konfigurationsdateien wird automatisch die passende Umgebung für jedes Projekt angewendet. Es unterstützt zudem die quellbasierte Kompilierung, sodass Benutzer Runtimes direkt auf ihrem Host-Betriebssystem bauen können, um Kompatibilität sicherzustellen und spezifische Leistungsanforderungen zu erfüllen. Über die reine Versionsverwaltung hinaus bietet das Projekt eine modulare Plugin-Architektur, die das Erstellen benutzerdefinierter Befehle und von der Community gepflegte Erweiterungen unterstützt. Dieses Framework erleichtert eine Vielzahl von Aufgaben, einschließlich der Konfiguration von Build-Prozessen, der Migration von Abhängigkeiten und der Integration mit Tools für virtuelle Umgebungen. Es enthält zudem integrierte Diagnose-Dienstprogramme zur Unterstützung bei der Fehlerbehebung häufiger Installationsprobleme, wie etwa Abhängigkeitsmanagement und Konflikte bei der Bibliothekskonfiguration. Die Software ist für UNIX-artige Systeme konzipiert und wird durch die Initialisierung der Shell-Umgebung konfiguriert, um verwaltete Shim-Verzeichnisse zu priorisieren.

    Generates shell completion scripts to enable tab-based auto-completion for commands.

    Shellpythonshell
    Auf GitHub ansehen↗44,895
  • spf13/cobraAvatar von spf13

    spf13/cobra

    44,107Auf GitHub ansehen↗

    Cobra is a development framework for building command-line applications in Go. It organizes application logic into a hierarchical tree structure where each node represents a command, complete with its own flags and execution logic. This structure allows developers to build complex, nested command interfaces that mirror business domains while maintaining a clean separation between command orchestration and underlying business logic. The framework distinguishes itself through its declarative approach to metadata and configuration. It automatically derives help documentation, usage instructions,

    Produces dynamic, context-aware auto-completion scripts for various terminal environments.

    Goclicli-appcobra
    Auf GitHub ansehen↗44,107
  • github/awesome-copilotAvatar von github

    github/awesome-copilot

    35,119Auf GitHub ansehen↗

    Awesome Copilot is a comprehensive framework for autonomous software development, providing the infrastructure to orchestrate multi-agent teams and automate complex coding workflows. It functions as a centralized platform for managing AI-driven development, enabling developers to deploy specialized agents that interact with local files, terminal commands, and external APIs to execute end-to-end software delivery tasks. The project distinguishes itself through its focus on governance and extensibility, offering a suite of security controls, policy-based execution guardrails, and audit trails t

    Generates scripts to provide auto-completion for commands and flags directly within the terminal environment.

    Pythonaigithub-copilothacktoberfest
    Auf GitHub ansehen↗35,119
  • casey/justAvatar von casey

    casey/just

    34,302Auf GitHub ansehen↗

    This project is a command-line task runner designed to manage project-specific workflows through a centralized, configuration-driven interface. It functions as a declarative tool for organizing build logic, environment variables, and task dependencies into a structured format, enabling the automation of complex development pipelines. The tool distinguishes itself by providing a shell-agnostic execution layer that ensures consistent behavior across Windows, macOS, and Linux. It supports advanced workflow orchestration by constructing directed acyclic graphs to manage task prerequisites, while

    Generates scripts for command-line shells to enable tab-completion for task names and arguments.

    Rust
    Auf GitHub ansehen↗34,302
  • google/python-fireAvatar von google

    google/python-fire

    28,208Auf GitHub ansehen↗

    Python Fire is a library that automatically generates command line interfaces from any Python object, function, or class. It removes the need for manual argument parsing by mapping Python dictionaries, lists, and classes directly to terminal commands. The tool converts Python docstrings into formatted terminal help screens and produces shell scripts to enable tab-completion for available commands. It can wrap existing libraries or external modules to expose their functionality via the terminal without requiring modifications to the original source code. The library supports hierarchical comm

    Produce shell completion scripts in Fire to enable tab-completion for available commands and arguments in the terminal.

    Pythonclipython
    Auf GitHub ansehen↗28,208
  • homebrew/legacy-homebrewAvatar von Homebrew

    Homebrew/legacy-homebrew

    26,849Auf GitHub ansehen↗

    This project is a command line package manager and dependency management engine used for installing, updating, and removing software packages across different operating systems. It functions as a package recipe system and software repository administrator, utilizing declarative scripts to define software sources, build arguments, and installation steps. The system operates as a binary distribution platform that compiles source code into pre-compiled binaries and distributes them through remote repositories. It includes an automated version tracker that monitors upstream software releases and

    Runs installed executables to produce shell-specific auto-completion scripts.

    Auf GitHub ansehen↗26,849
  • withfig/autocompleteAvatar von withfig

    withfig/autocomplete

    25,189Auf GitHub ansehen↗

    This project is a shell autocomplete engine and completion provider that adds real-time suggestions for command line interface options and arguments within a terminal. It functions as a declarative completion framework, allowing command hierarchies and option sets to be defined via structured data instead of manual shell scripts. The system acts as a cross-shell completion bridge, translating a single unified definition into commands compatible with multiple different shell environments. This ensures a consistent autocomplete experience across various terminals using a shared specification fo

    Allows command hierarchies and options to be defined via structured data instead of manual shell scripts.

    TypeScriptautocompletebashcli
    Auf GitHub ansehen↗25,189
  • urfave/cliAvatar von urfave

    urfave/cli

    24,133Auf GitHub ansehen↗

    This is a framework for building structured terminal applications in Go. It provides the core components necessary to define a command-line interface, including a system for managing commands, sub-commands, and their associated flags. The library distinguishes itself through an automated help generator that produces formatted usage instructions and manual pages, and a shell completion generator that creates tab-completion scripts for Bash, Zsh, Fish, and PowerShell. It also features a command lifecycle manager to handle pre- and post-execution logic and process exit codes. The toolkit covers

    Produces completion scripts for bash, zsh, fish, and PowerShell to enable tab-completion of commands and flags.

    Goclicommand-linego
    Auf GitHub ansehen↗24,133
  • uutils/coreutilsAvatar von uutils

    uutils/coreutils

    23,621Auf GitHub ansehen↗

    This project is a suite of basic command line utilities rewritten in Rust, providing a cross-platform implementation of POSIX shell utilities. It serves as a portable CLI toolset designed to run across different operating systems and architectures. The implementation includes a WebAssembly shell environment, which allows these essential command line tools to be executed directly within a web browser without requiring a local installation. The toolset covers a broad range of system capabilities, including filesystem operations, text processing and stream editing, and system administration too

    Generates shell-specific auto-completion scripts for various command line interfaces.

    Rust
    Auf GitHub ansehen↗23,621
  • lensapp/lensAvatar von lensapp

    lensapp/lens

    23,180Auf GitHub ansehen↗

    Lens is a multi-cluster management platform and desktop application for administering Kubernetes environments. It provides a graphical interface for deploying Helm charts, editing YAML manifests, and managing the lifecycle of pods and deployments. The project features an AI-powered cluster assistant that enables users to query cluster state, perform autonomous troubleshooting, and translate natural language requests into system commands. It also supports collaborative team access through shared spaces, utilizing encrypted cluster sharing and role-based access control to manage credentials and

    Produces shell-specific auto-completion scripts to accelerate command entry in the terminal.

    cloud-nativecontainersdevops
    Auf GitHub ansehen↗23,180
  • mislav/hubAvatar von mislav

    mislav/hub

    22,948Auf GitHub ansehen↗

    Hub is a terminal-based GitHub API client and command-line wrapper that extends standard git version control with remote project management functionality. It serves as an interface to programmatically execute GitHub operations and simplify the interaction between local repositories and remote resources. The tool provides specialized capabilities for synchronizing forks with upstream repositories and managing GitHub-specific assets including pull requests, issues, and releases. It also enables the creation of code gists and allows users to open specific repository files in a web browser direct

    Generates shell-specific scripts to provide real-time command and flag suggestions in the terminal.

    Gogitgithub-apigo
    Auf GitHub ansehen↗22,948
  • niri-wm/niriAvatar von niri-wm

    niri-wm/niri

    20,069Auf GitHub ansehen↗

    Niri is a Wayland compositor and tiling window manager designed for Linux systems. It functions as a display server that organizes application windows into a scrollable, column-based layout, providing a structured environment for managing graphical sessions, input routing, and hardware output. The project distinguishes itself through a declarative configuration engine that enables live-reloading of settings, allowing users to modify window rules, input bindings, and visual appearance without restarting the session. It features a physics-based animation system that uses spring-based curves to

    Produces command-line argument completion scripts to assist users with system interaction.

    Rustrustsmithaytiling-window-manager
    Auf GitHub ansehen↗20,069
  • fastapi/typerAvatar von fastapi

    fastapi/typer

    19,632Auf GitHub ansehen↗

    This project is a Python framework for building command-line interfaces by converting standard functions into executable programs. It uses type hints to automatically infer and generate argument parsers, validation logic, and help documentation, allowing developers to define complex terminal applications through simple function signatures. The framework distinguishes itself through a decorator-driven registration system that enables the construction of hierarchical command trees. It supports dependency injection to manage shared state and runtime configuration across subcommands, and it utili

    Generates shell-specific completion scripts to enable tab-based discovery of commands and options in the terminal.

    Pythoncliclickpython
    Auf GitHub ansehen↗19,632
  • golangci/golangci-lintAvatar von golangci

    golangci/golangci-lint

    18,539Auf GitHub ansehen↗

    This project is a static analysis runner designed to identify bugs, performance bottlenecks, and stylistic inconsistencies within Go codebases. It functions as a comprehensive quality assurance suite that executes multiple analysis tools concurrently to provide a unified diagnostic report. By parsing source code into a structured representation, the tool enforces coding standards, validates import structures, and ensures consistent formatting across entire projects. The tool distinguishes itself through its ability to automate the remediation of identified issues, applying programmatic fixes

    Generates command-line completion scripts to improve user interaction with the tool.

    Gocigogolang
    Auf GitHub ansehen↗18,539
  • twpayne/chezmoiAvatar von twpayne

    twpayne/chezmoi

    18,075Auf GitHub ansehen↗

    chezmoi is a command-line utility designed to manage and synchronize system configuration files across multiple machines. It uses a local Git repository as the single source of truth, allowing users to track, version, and distribute dotfiles while maintaining a consistent state across diverse operating systems and hardware architectures. The project distinguishes itself through a declarative reconciliation model that computes the difference between the current filesystem and the desired state defined in the repository. It features a robust templating engine that processes configuration files

    Produces shell-specific completion code to enable tab-based auto-completion of commands.

    Goconfigurationdotfiledotfile-management
    Auf GitHub ansehen↗18,075
  • pallets/clickAvatar von pallets

    pallets/click

    17,560Auf GitHub ansehen↗

    Click is a Python framework for building command-line interfaces. It provides a declarative approach to defining command structures, allowing developers to map functions to command-line arguments, options, and nested groups using decorators. The framework handles the complexities of parameter parsing, type validation, and help documentation generation automatically. The project distinguishes itself through its hierarchical context system, which propagates configuration and state across nested commands, and its environment-aware parameter resolution that prioritizes command-line inputs, enviro

    A system that provides native shell integration to suggest commands, options, and arguments to users as they type.

    Pythoncliclickpallets
    Auf GitHub ansehen↗17,560
  • clap-rs/clapAvatar von clap-rs

    clap-rs/clap

    16,528Auf GitHub ansehen↗

    Clap is a command-line argument parser for Rust that enables developers to define complex interfaces through strongly-typed data structures. It functions as a comprehensive framework for building terminal applications, automating the transformation of raw string inputs into validated, type-safe code representations while simultaneously generating help documentation and usage statements. The library distinguishes itself by offering both a declarative, attribute-based approach and a fluent builder-pattern API, allowing for flexible interface construction. It includes a sophisticated validation

    Generates shell completion scripts for various environments to improve user experience and discoverability.

    Rustargument-parserargument-parsingcommand-line
    Auf GitHub ansehen↗16,528
  • go-task/taskAvatar von go-task

    go-task/task

    15,721Auf GitHub ansehen↗

    Task is a YAML-based task runner and build tool used to define and automate development workflows. It functions as a dependency-based build system and cross-platform task automator, allowing users to execute shell commands across different operating systems using a declarative configuration file. The project operates as an incremental build tool, utilizing file fingerprints and checksums to track state and avoid redundant work by determining if tasks are up to date. It manages execution via a dependency graph to ensure prerequisites are completed before target commands run. The system includ

    Generates shell-specific auto-completion scripts for Bash, Fish, PowerShell, and Zsh.

    Go
    Auf GitHub ansehen↗15,721
  • homebrew/homebrew-coreAvatar von Homebrew

    Homebrew/homebrew-core

    15,383Auf GitHub ansehen↗

    This project is a Ruby-based package definition repository that functions as a cross-platform package manager and software dependency resolver for macOS and Linux. It provides a centralized system for installing, updating, and managing software through a Git-based distribution model. The system distinguishes itself through a binary package distribution network that produces pre-compiled bottles to avoid local compilation from source. It utilizes a Ruby-based domain specific language to define installation recipes and employs a distributed version control architecture to synchronize these defi

    Automatically generates shell-specific auto-completion scripts by executing installed binaries during the installation process.

    Rubycoreformulaehacktoberfest
    Auf GitHub ansehen↗15,383
  • mikefarah/yqAvatar von mikefarah

    mikefarah/yq

    14,913Auf GitHub ansehen↗

    This tool is a command-line processor designed for querying, updating, and transforming structured data files. It functions as a versatile engine for manipulating YAML, JSON, TOML, and XML documents, allowing users to perform complex operations directly from the terminal. By utilizing a path-based expression language, it enables precise navigation and modification of data structures within configuration files and infrastructure-as-code workflows. What distinguishes this tool is its ability to perform in-place document mutations while preserving original formatting, comments, and metadata. It

    Outputs scripts that enable command-line auto-completion for supported shells.

    Gobashclicsv
    Auf GitHub ansehen↗14,913
Vorherige123…4Nächste
  1. Home
  2. Development Tools & Productivity
  3. Shell Completion Generators

Unter-Tags erkunden

  • Declarative SchemasCompletion specifications defined using structured data formats instead of imperative shell scripts. **Distinct from Shell Completion Generators:** Focuses on the structured definition of completion rules rather than the process of generating the final script.
  • Declarative SpecificationsThe use of structured data formats to define shell completion rules. **Distinct from Shell Completion Generators:** Focuses on the declarative nature of the input spec rather than the generator tool itself.
  • Zsh Completion GenerationProduces shell completion scripts for the Zsh shell. **Distinct from Shell Completion Generators:** Distinct from Shell Completion Generators: specifically targets Zsh shell completion generation, not general shell completion utilities.