SwiftCLI icon indicating copy to clipboard operation
SwiftCLI copied to clipboard

A powerful framework for developing CLIs in Swift

Results 9 SwiftCLI issues
Sort by recently updated
recently updated
newest added

I'd like to run an external task from my command that may ask the user for input. What's the best way of passing through requests for input (I assume from...

It would be awesome to have an optional default value for `Param` and `Key`. This would allow: - setting the default value in the same place as the rest of...

It would be nice if there were a way to disable the newline padding in usage and error messages without re-implementing the default implementations in `HelpMessageGenerator`. I personally think it...

As a user it's difficult now to keep track of what's changed between releases. This would be easier with a public changelog file, or alternatively notes on the GitHub releases...

Hi there! At first, just want to say the library is just amazing. Seems latest version is not available via cocoapods, currently using 5.2.1 ``` [!] CocoaPods could not find...

Hello there! First of all, thanks a lot for your repository! I have a question, I've been adopting new Swift patterns with `async` and `await` and I wanted to use...

`InputReader` is using `getpass` to read secure values. Unfortunately, `getpass` is limited to 128 characters of input. The remaining input is silently truncated. `readpassphrase`, on the other hand, can accept...

Hello! 👋 I wanted to throw with `runAsync` the same type of error as with `runSync`. But `runAsync` only returns a code, and I can't create `RunError` myself because its...