Merged
Conversation
… CLI - Rename module from s-keel-cli to keel - Add charmbracelet libraries for interactive prompts: * huh for forms and CLI interactions * bubbles, bubbletea for TUI components * lipgloss for terminal styling * Updated all transitive dependencies
- Update all imports from github.com/slice-soft/ss-keel-cli to github.com/slice-soft/keel - Update build-time ldflags documentation in root.go
- Replace optional <name> argument instead of required - Import charmbracelet/huh for interactive forms - Add --yes flag to skip all interactive prompts - Add --with-tests flag to generate test skeleton files - Add improved validation and user-friendly messages - Support interactive prompts for generation options
…nd prompt commands
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 Keel CLI repository, including project documentation, licensing, contribution guidelines, CI/CD workflows, and a new shell completion feature for the CLI. The most significant changes are grouped below.
Project Initialization and Documentation
README.mddescribing Keel CLI features, installation, usage, commands, project structure, and community links.LICENSEfile with the MIT license for open source usage.CONTRIBUTING.mdwith repository-specific contribution instructions and development workflow.Build and Release Automation
.github/workflows/ci.ymlfor CI pipeline, validating PRs and running Go-based checks using reusable workflows..github/workflows/release.ymlfor automated releases, including version tagging and GoReleaser integration..goreleaser.ymlfor building, archiving, checksumming, and publishing Homebrew tap for Keel CLI..release-please-manifest.jsonto manage release versions.Shell Completion Feature
cmd/completion/command.go, supporting Bash, Zsh, Fish, and PowerShell, plus automated installation.cmd/completion/shell.go, with interactive selection for multiple shells/config files.cmd/completion/install.go.cmd/completion/command_test.go,cmd/completion/install_test.go, andcmd/completion/shell_test.go. [1] [2] [3]