Loading...
Loading...
Perform git commit following Conventional Commits standards
npx skill4agent add myuon/ccskills commitgit status| Type | Examples |
|---|---|
| Secrets | |
| Build artifacts | |
| IDE settings | |
| OS-generated files | |
| Logs & caches | |
.gitignoregit statusgit diffgit add .git commit<type>[optional scope]: <description>
[optional body]
[optional footer]| type | Usage |
|---|---|
| New feature |
| Bug fix |
| Documentation-only changes |
| Changes that do not affect the meaning of the code (whitespace, formatting, etc.) |
| Code changes that are neither bug fixes nor feature additions |
| Performance improvement |
| Add or modify tests |
| Changes to build processes or tools |
| Changes to CI configurations |
| Changes to build system or external dependencies |
feat(auth):fix(api):docs(readme):feat(models): Add new User model
Implemented the User model as the foundation for user authentication functionality. Passwords are hashed and stored using bcrypt.fix(api): Fix rate limiting bug
Fixed the issue where request counts per minute were not being calculated correctly. The cause was an incorrect Redis TTL setting.refactor: Separate authentication middlewareBREAKING CHANGE:.gitignore