Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:4
forks:3
updated:30 de janeiro de 2026 às 16:17
SKILL.md
使用 Git Worktree 创建隔离的工作空间,支持同时在多个分支上工作
系统性地进行代码审查,关注代码质量、安全性、可维护性等方面
分析项目依赖关系,识别过时、冗余或有安全问题的依赖包
Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.
| name | commit-message-guide |
| description | 编写清晰、规范的 Git 提交信息,遵循 Conventional Commits 规范 |
好的提交信息是项目历史的重要组成部分。本技能帮助你编写清晰、一致、有意义的提交信息。
启用时机: 准备提交代码时
声明: "我正在使用 commit-message-guide 技能来编写提交信息"
<type>(<scope>): <subject>
<body>
<footer>
| Type | 说明 |
|---|---|
feat | 新功能 |
fix | 修复 bug |
docs | 文档变更 |
style | 代码格式(不影响功能) |
refactor | 重构(既不是新功能也不是修复) |
perf | 性能优化 |
test | 添加或修改测试 |
chore | 构建过程或辅助工具变动 |
影响范围,如:auth、api、ui、config
feat(auth): add login with Google OAuth
fix(api): handle null response from external service
docs: update README with new installation steps
feat(cart): add quantity validation
- Validate quantity is positive integer
- Show error message for invalid input
- Disable checkout button when validation fails
Closes #123
feat(api)!: change response format for user endpoint
BREAKING CHANGE: User endpoint now returns nested
address object instead of flat fields.
Before: { "street": "123 Main St", "city": "NYC" }
After: { "address": { "street": "123 Main St", "city": "NYC" } }
git status
git diff --staged
featfixstylegit commit -m "feat(auth): add password reset functionality"
| 错误 | 正确 |
|---|---|
update code | fix(parser): handle escaped quotes |
fix bug | fix(auth): prevent session timeout on remember-me |
WIP | 使用 --fixup 或完成后再提交 |
misc changes | 拆分成多个有意义的提交 |