在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:361
forks:43
updated:2026年3月17日 21:37
SKILL.md
| name | global-commit |
| description | Create a git commit following Conventional Commits specification |
| allowed-tools | Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git diff:*), Bash(git log:*), Bash(git rev-parse:*), Bash(git branch:*), Bash(git stash:*), Bash(git rm:*) |
| disable-model-invocation | true |
| model | haiku |
git statusgit diff --cachedgit diffgit branch --show-currentgit log --oneline -10git rev-parse --show-toplevelWe use Conventional Commits specification for all commit messages.
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
| Type | Description |
|---|---|
feat | A new feature |
fix | A bug fix |
docs | Documentation only changes |
style | Changes that do not affect the meaning of the code (white-space, formatting, etc) |
refactor | A code change that neither fixes a bug nor adds a feature |
perf | A code change that improves performance |
test | Adding missing tests or correcting existing tests |
build | Changes that affect the build system or external dependencies |
ci | Changes to CI configuration files and scripts |
chore | Other changes that don't modify src or test files |
revert | Reverts a previous commit |
feat(auth): add login endpoint)! after type/scope or BREAKING CHANGE: in footerfeat(api): add user authentication endpoint
fix(ui): resolve button alignment issue on mobile
docs: update installation instructions
refactor!: drop support for Node 14
chore(deps): update dependencies
Based on the changes shown above:
This section ONLY applies when the last segment of the repository root path (shown above) ends in -course.
When in a course repository, the commit scope MUST always reflect the course module and lesson numbers derived from the folder path.
The folder structure follows the pattern <module>-<topic>/<lesson>-<name>. Extract the module and lesson numbers to build the scope as <module>-<lesson>.
| Changed folder | Scope | Full commit example |
|---|---|---|
01-agents/2-init | 01-2 | feat(01-2): add agent initialization |
02-tools/3-search | 02-3 | fix(02-3): resolve search query parsing |
03-prompts/1-basics | 03-1 | refactor(03-1): simplify prompt builder |