Loading...
Loading...
Generates properly formatted Git commit messages (title + description) following Conventional Commits. Use this skill whenever the user wants to write a commit message, document code changes in git format, or asks things like "how should I commit this?", "write a commit for these changes", "help me with my commit message", or describes what they changed and needs a git-ready output. Always use this skill when the user describes code changes and needs a commit, even if they don't explicitly say "commit".
npx skill4agent add somnio-software/somnio-ai-tools git-commit-format{type}({optional scope}): {short imperative description}featfixchorerefactordocsstyletestperfcibuildrevertfeat(auth): add biometric login support* Fixed ...
* Added ...
* Changed ...
* Removed ...FixedAddedChangedRemovedUpdatedRefactoredMigratedDeprecatedCo-Authored-BySigned-off-by| Type | When to use |
|---|---|
| New functionality |
| Bug fix |
| Code change with no behavior change |
| Config, deps, tooling, maintenance |
| Adding or updating tests |
| Documentation only |
| Formatting, whitespace |
| Performance improvement |
| CI/CD changes |
| Build system changes |
| Reverting a previous commit |
feat(flutter): upgrade Flutter SDK to v3.19
* Updated Flutter SDK version to 3.19
* Changed minimum iOS deployment target to 14.0
* Fixed deprecated API usages after upgrade
* Removed unused legacy pluginsThe commit message must end after the bullet list. Do not append any,Co-Authored-By, or AI attribution trailers.Signed-off-by
feat(flutter): upgrade Flutter SDK to v3.19
* Updated Flutter SDK version to 3.19
* Changed minimum iOS deployment target to 14.0
* Fixed deprecated API usages after upgradefix(auth): handle login crash when offline
* Fixed crash on login screen when no internet connection is available
* Added offline error state to login flow