Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:1171
forks:93
updated:24 de enero de 2026, 15:16
SKILL.md
| name | write-git-commit |
| description | Create a git commit following repository conventions |
Create git commits following the repository's established conventions.
<scope>: <subject>
[optional body]
The scope indicates which part of the codebase is affected:
plugin - Plugin source code changes (most common)docs - Documentation changesscripts - Build/release script changes.github - GitHub workflows and actions.claude - Claude configuration and skills.vscode - VS Code settings* - Changes spanning multiple packages/areasFor focused changes within a scope, you may use a more specific prefix like plugin api, plugin settings, etc.
Examples:
plugin: add support for task filteringdocs: update query-blocks documentation*: bump versions across the board.github: add separate build jobExample:
plugin: restore react & react-dom dedupe
While the tests pass after aligning react versions between docs/ and
plugin/, the build still breaks at runtime without this.
DO NOT add Claude as a coauthor to the commit.
git status to see staged and unstaged changesgit diff --staged to review what will be committedgit add <files> (prefer specific files over git add -A)