Create a new git branch with conventional naming (supports Chinese input)
Creates a new git branch with conventional naming from English or Chinese input.
/plugin marketplace add notedit/happy-coding-agent/plugin install notedit-happy-coding-agent@notedit/happy-coding-agentBranch name or description (e.g., "user login" or "feature/user-login")git/Create a new branch following naming conventions.
Parse $ARGUMENTS:
Format: <type>/<description>
Types:
| Type | Use Case |
|---|---|
| feature/ | New features |
| fix/ | Bug fixes |
| hotfix/ | Urgent fixes |
| refactor/ | Refactoring |
| docs/ | Documentation |
| test/ | Testing |
| chore/ | Maintenance |
Rules:
Examples:
feature/user-loginfix/crashdocs/updateChinese input: Translate to English
feature/user-loginfix/homepage-crashIf uncommitted changes exist, ask:
Actions:
git checkout -b <branch-name>git push -u origin <branch>)