git-workflow — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited git-workflow (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
当用户要求提交代码、创建分支、发起 PR、整理 commit、rebase 时激活此技能。
git status
git log --oneline -10
git diff --staged识别暂存区的变更内容、涉及的文件和改动类型。
根据变更内容自动判断 type:
feat — 新功能fix — Bug 修复docs — 仅文档变更style — 格式调整(不影响逻辑)refactor — 重构(非新功能、非修复)test — 测试相关perf — 性能优化chore — 构建/工具链变更格式遵循 Conventional Commits:<type>(<scope>): <description>
根据变更类型创建分支并生成 PR 描述。
交互式 rebase 整理提交历史,合并琐碎提交。
<type>(<scope>): <简短描述>
<body: 详细说明变更原因和内容>
<footer: 关联 Issue、Breaking Changes>示例:
feat(auth): 添加 OAuth2 第三方登录支持
集成 Google 和 GitHub OAuth2 登录,用户可绑定已有账号。
新增 /api/auth/oauth/callback 端点处理回调。
Closes #123## 变更摘要
简要描述本次 PR 做了什么。
## 变更类型
- [ ] 新功能 (feat)
- [ ] Bug 修复 (fix)
- [ ] 重构 (refactor)
- [ ] 文档 (docs)
- [ ] 其他 (chore)
## 改动文件
| 文件 | 变更说明 |
|------|---------|
| src/auth/oauth.ts | 新增 OAuth2 认证逻辑 |
| src/routes/auth.ts | 新增回调路由 |
## 测试情况
- [ ] 单元测试通过
- [ ] 集成测试通过
- [ ] 手动验证完成
## 关联 Issue
Closes #123
## 截图/录屏(如适用)| 类型 | 格式 | 示例 |
|---|---|---|
| 新功能 | feat/<功能名> | feat/oauth-login |
| Bug 修复 | fix/<问题描述> | fix/login-timeout |
| 紧急修复 | hotfix/<紧急描述> | hotfix/security-patch |
| 文档 | docs/<内容> | docs/api-guide |
| 重构 | refactor/<范围> | refactor/auth-module |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.