git-workflow
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- Engineering
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: git-workflow
description: | Use when this capability is needed. git diff --name-only git add <file1> <file2> <type>: <desc…
category: engineering
runtime: no special runtime
---
# git-workflow output preview
## PART A: Task fit
- Use case: | Use when this capability is needed. git diff --name-only git add <file1> <file2> <type>: <description> git commit -m "提交信息" git config --global user.name "Your Name" runs entirely locally. Works with Claude Code, Cursor, Cline and 23 more..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “核心指令 / 第一步:检测文件变更 / 第二步:添加文件” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “| Use when this capability is needed. git diff --name-only git add <file1> <file2> <type>: <description> git commit -m "提交信息" git config --global user.name "Your Name" runs entirely locally. Works with Claude Code, Cursor, Cline and 23 more.”.
- **02** When the source has headings, the agent prioritizes “核心指令 / 第一步:检测文件变更 / 第二步:添加文件” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “核心指令 / 第一步:检测文件变更 / 第二步:添加文件”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: git-workflow
description: | Use when this capability is needed. git diff --name-only git add <file1> <file2> <type>: <desc…
category: engineering
source: tomevault-io/skills-registry
---
# git-workflow
## When to use
- | Use when this capability is needed. git diff --name-only git add <file1> <file2> <type>: <description> git commit -m…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “核心指令 / 第一步:检测文件变更 / 第二步:添加文件” and keep inference separate from source facts.
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "git-workflow" {
input -> user goal + target files + boundaries + acceptance criteria
context -> 核心指令 / 第一步:检测文件变更 / 第二步:添加文件
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Git 工作流技能
核心指令
第一步:检测文件变更
# 检查 Git 状态
git status
# 查看变更文件
git diff --name-only
第二步:添加文件
# 添加所有变更
git add .
# 或添加指定文件
git add <file1> <file2>
第三步:生成提交信息
根据变更内容自动生成提交信息:
# 提交信息格式
<type>: <description>
# 类型说明
feat: 新功能
fix: 修复 bug
docs: 文档更新
style: 代码格式
refactor: 重构
test: 测试
chore: 构建/工具
第四步:提交并推送
# 提交
git commit -m "提交信息"
# 推送
git push
示例
示例 1: 分析完成后自动提交
触发: 分析任务完成
操作:
- 检测新生成的文件
- 添加到 Git
- 生成提交信息
- 提交并推送
提交信息示例:
feat: 完成股票分析
- 分析 000657 中钨高新
- 生成三高股票筛选报告
- 保存到 Stock-Analysis 仓库
示例 2: 多仓库管理
触发: 需要提交到多个仓库
操作:
- 识别文件所属仓库
- 分别提交到对应仓库
- 分别推送
仓库示例:
- Jarvis: 记忆、配置
- Stock-Analysis: 股票分析代码
- Amazon-Analyzer: 亚马逊运营工具
故障排除
错误 1: Git 未配置
错误消息: "Please tell me who you are"
解决方案:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
错误 2: 推送失败
错误消息: "Authentication failed"
解决方案:
- 检查 Git 凭据
- 使用 Token 代替密码
- 配置 SSH Key
错误 3: 冲突
错误消息: "CONFLICT (content)"
解决方案:
- 查看冲突文件
- 手动解决冲突
- 标记为解决
git add <resolved_file> - 完成提交
git commit
最佳实践
提交频率
- 小改动:随时提交
- 大功能:功能完成后提交
- 每日结束:提交当日工作
提交信息
- 清晰简洁
- 使用现在时
- 首字母大写
- 不超过 50 字符
分支管理
- main/master: 主分支
- feature/*: 功能分支
- fix/*: 修复分支
- docs/*: 文档分支
Source: aAAaqwq/AGI-Super-Team — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review