git%3Acommit by neolabhq/context-engineering-kit
npx skills add https://github.com/neolabhq/context-engineering-kit --skill git:commit你的任务是创建格式规范的提交,使用约定式提交消息和表情符号。
关键:请严格按照以下步骤执行:
master 或 main。如果是,询问用户是否需要在提交前创建单独的分支。如果用户确认需要新分支,则使用模式 <类型>/<用户名>/<描述> 创建一个(例如 feature/leovs09/add-new-command)。--no-verify 指定,否则自动运行预提交检查,例如 pnpm lint 或根据项目语言的类似命令。git status 检查哪些文件已暂存。git add 添加所有已修改和新文件。广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
git diff 以了解要提交的更改内容。<类型>: <描述>,其中类型是以下之一:
feat:新功能fix:错误修复docs:文档更改style:代码样式更改(格式化等)refactor:既不修复错误也不添加功能的代码更改perf:性能改进test:添加或修复测试chore:构建过程、工具等的更改。feat:新功能fix:错误修复docs:文档style:格式化/样式refactor:代码重构perf:性能改进test:测试chore:工具、配置ci:CI/CD 改进revert:还原更改分析差异时,请根据以下标准考虑拆分提交:
良好的提交消息:
拆分提交的示例:
--no-verify:跳过运行预提交检查(lint、build、generate:docs)。在 master 或 main 上提交时,该命令会询问您是否要创建新分支。如果是,它将按照以下模式创建一个分支:
<type>/<git-username>/<description>
组成部分:
<type>:提交类型(feature、fix、docs、refactor、perf、test、chore 等)。<git-username>:您的 git 用户名(从 git config user.name 或系统用户名获取)。<description>:更改的 kebab-case 描述(例如,add-user-auth、fix-login-bug)。示例:
feature/leovs09/add-new-commandfix/johndoe/resolve-memory-leakdocs/alice/update-api-docsrefactor/bob/simplify-error-handlingchore/charlie/update-dependencies工作流程:
master 或 main 分支上。pnpm lint、pnpm build、pnpm generate:docs)以确保代码质量。每周安装次数
227
代码仓库
GitHub 星标数
699
首次出现
2026年2月19日
安装于
opencode220
codex218
github-copilot218
gemini-cli217
kimi-cli215
cursor215
Your job is to create well-formatted commits with conventional commit messages and emoji.
CRITICAL: Perform the following steps exactly as described:
master or main. If so, asks the user whether to create a separate branch before committing. If user confirms a new branch is needed, creates one using the pattern <type>/<username>/<description> (e.g., feature/leovs09/add-new-command)--no-verify, automatically runs pre-commit checks like pnpm lint or simular depending on the project language.git statusgit addgit diff to understand what changes are being committed<type>: <description> where type is one of:
feat: A new featurefix: A bug fixdocs: Documentation changesstyle: Code style changes (formatting, etc)refactor: Code changes that neither fix bugs nor add featuresperf: Performance improvementsWhen analyzing the diff, consider splitting commits based on these criteria:
Good commit messages:
Example of splitting commits:
--no-verify: Skip running the pre-commit checks (lint, build, generate:docs)When committing on master or main, the command will ask if you want to create a new branch. If yes, it creates a branch following this pattern:
<type>/<git-username>/<description>
Components:
<type>: The commit type (feature, fix, docs, refactor, perf, test, chore, etc.)<git-username>: Your git username (obtained from git config user.name or the system username)<description>: A kebab-case description of the change (e.g., add-user-auth, fix-login-bug)Examples:
feature/leovs09/add-new-commandfix/johndoe/resolve-memory-leakdocs/alice/update-api-docsrefactor/bob/simplify-error-handlingchore/charlie/update-dependenciesWorkflow:
master or mainpnpm lint, pnpm build, pnpm generate:docs) will run to ensure code qualityWeekly Installs
227
Repository
GitHub Stars
699
First Seen
Feb 19, 2026
Installed on
opencode220
codex218
github-copilot218
gemini-cli217
kimi-cli215
cursor215
agent-browser 浏览器自动化工具 - Vercel Labs 命令行网页操作与测试
144,300 周安装
test:添加失败的测试fix:修复编译器/linter 警告fix:修复安全问题chore:添加或更新贡献者refactor:移动或重命名资源refactor:进行架构更改chore:合并分支chore:添加或更新编译文件或包chore:添加依赖项chore:移除依赖项chore:添加或更新种子文件chore:改善开发者体验feat:添加或更新与多线程或并发相关的代码feat:改进 SEOfeat:添加或更新类型feat:添加或更新文本和字面量feat:国际化和本地化feat:添加或更新业务逻辑feat:响应式设计工作feat:改善用户体验/可用性fix:非关键问题的简单修复fix:捕获错误fix:由于外部 API 更改而更新代码fix:移除代码或文件style:改进代码的结构/格式fix:关键热修复chore:开始一个项目chore:发布/版本标签wip:进行中的工作fix:修复 CI 构建chore:将依赖项固定到特定版本ci:添加或更新 CI 构建系统feat:添加或更新分析或跟踪代码fix:修复拼写错误revert:还原更改chore:添加或更新许可证feat:引入破坏性更改assets:添加或更新资源feat:改进可访问性docs:在源代码中添加或更新注释db:执行与数据库相关的更改feat:添加或更新日志fix:移除日志test:模拟事物feat:添加或更新彩蛋chore:添加或更新 .gitignore 文件test:添加或更新快照experiment:进行实验feat:添加、更新或移除功能标志ui:添加或更新动画和过渡效果refactor:移除死代码feat:添加或更新与验证相关的代码feat:改进离线支持testchore: Changes to the build process, tools, etc.feat: New featurefix: Bug fixdocs: Documentationstyle: Formatting/stylerefactor: Code refactoringperf: Performance improvementstest: Testschore: Tooling, configurationci: CI/CD improvementsrevert: Reverting changestest: Add a failing testfix: Fix compiler/linter warningsfix: Fix security issueschore: Add or update contributorsrefactor: Move or rename resourcesrefactor: Make architectural changeschore: Merge brancheschore: Add or update compiled files or packageschore: Add a dependencychore: Remove a dependencychore: Add or update seed fileschore: Improve developer experiencefeat: Add or update code related to multithreading or concurrencyfeat: Improve SEOfeat: Add or update typesfeat: Add or update text and literalsfeat: Internationalization and localizationfeat: Add or update business logicfeat: Work on responsive designfeat: Improve user experience / usabilityfix: Simple fix for a non-critical issuefix: Catch errorsfix: Update code due to external API changesfix: Remove code or filesstyle: Improve structure/format of the codefix: Critical hotfixchore: Begin a projectchore: Release/Version tagswip: Work in progressfix: Fix CI buildchore: Pin dependencies to specific versionsci: Add or update CI build systemfeat: Add or update analytics or tracking codefix: Fix typosrevert: Revert changeschore: Add or update licensefeat: Introduce breaking changesassets: Add or update assetsfeat: Improve accessibilitydocs: Add or update comments in source codedb: Perform database related changesfeat: Add or update logsfix: Remove logstest: Mock thingsfeat: Add or update an easter eggchore: Add or update .gitignore filetest: Add or update snapshotsexperiment: Perform experimentsfeat: Add, update, or remove feature flagsui: Add or update animations and transitionsrefactor: Remove dead codefeat: Add or update code related to validationfeat: Improve offline support