feat: add basic CLI structure with Typer integration#350
Merged
bobbyiliev merged 1 commit intomainfrom Oct 1, 2025
Merged
Conversation
- Add CLI entry point with Typer framework - Implement hello command as example - Add package configuration and dependencies - Include README with usage instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the initial setup for the "101 Linux Commands" interactive CLI tool. It adds project documentation, establishes the CLI application's structure, and configures packaging and development tools. The most important changes are grouped below:
Project Documentation and Development Workflow:
README.mdin thecli/directory, providing installation, usage, development, and CI workflow instructions.CLI Application Structure:
cli.pyusing Typer, with an initial "hello" command group and improved help text. [1] [2]Packaging and Installation:
setup.pyfor packaging, including entry points forlinux-cliandl101commands and all necessary metadata.requirements.txtfor CLI functionality.