Loading...
Loading...
Generate commit messages following conventional commits and commit staged changes. Use when creating commits or when user invokes /commit.
npx skill4agent add casper-studios/casper-marketplace commitgit add<type>(<scope>): <message title>
<bullet points summarizing what was updated>| Type | Description |
|---|---|
| feat | New feature |
| fix | Bug fix |
| chore | Maintenance (tooling, deps) |
| docs | Documentation changes |
| refactor | Code restructure (no behavior change) |
| test | Adding or refactoring tests |
| style | Code formatting (no logic change) |
| perf | Performance improvements |
feat(auth): add JWT login flow
- Implemented JWT token validation logic
- Added documentation for the validation componentfix(ui): handle null pointer in sidebarrefactor(api): split user controller logic
- Extracted validation into separate module
- Simplified error handling flowCloses #123BREAKING CHANGE: