Loading...
Loading...
Create git commits following Conventional Commits specification with project-specific branch naming rules
npx skill4agent add first-fluke/oh-my-ag commit/commit.agent/skills/commit/config/commit-config.yaml| Type | Description | Branch Prefix |
|---|---|---|
| feat | New feature | feature/ |
| fix | Bug fix | fix/ |
| refactor | Code improvement | refactor/ |
| docs | Documentation changes | docs/ |
| test | Test additions/modifications | test/ |
| chore | Build, configuration, etc. | chore/ |
| style | Code style changes | style/ |
| perf | Performance improvements | perf/ |
<type>(<scope>): <description>
[optional body]
Co-Authored-By: First Fluke <our.first.fluke@gmail.com>git status
git diff --staged
git log --oneline -5# Changed files:
.agent/workflows/*.md (7 files) → fix(workflows): ...
.agent/skills/**/*.md (4 files) → fix(skills): ...
USAGE.md, USAGE-ko.md → docs: ...
# Split into 3 commitsfeatfixrefactordocstestchorefeat(auth)fix(api)refactor(ui)chore: update dependencies📝 Commit message preview:
feat(orchestrator): add multi-CLI agent mapping support
- Add user-preferences.yaml for CLI configuration
- Update spawn-agent.sh to read agent-CLI mapping
- Update memory schema with CLI field
Co-Authored-By: First Fluke <our.first.fluke@gmail.com>
Proceed with this commit? (Y/N/Edit)git add <specific-files>
git commit -m "<message>"config/commit-config.yamlresources/conventional-commits.mdgit add -Agit add .