# Send Git Workflow to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "git-workflow",
    "name": "Git Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/broommonk/git-workflow",
    "canonicalUrl": "https://clawhub.ai/broommonk/git-workflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/git-workflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-workflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "gep_manifest.json",
      "skill.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "git-workflow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T16:32:40.041Z",
      "expiresAt": "2026-05-10T16:32:40.041Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-workflow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-workflow",
        "contentDisposition": "attachment; filename=\"git-workflow-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "git-workflow"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/git-workflow"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/git-workflow",
    "downloadUrl": "https://openagent3.xyz/downloads/git-workflow",
    "agentUrl": "https://openagent3.xyz/skills/git-workflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/git-workflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/git-workflow/agent.md"
  }
}
```
## Documentation

### 第一步：检测文件变更

# 检查 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/*: 文档分支
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: broommonk
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T16:32:40.041Z
- Expires at: 2026-05-10T16:32:40.041Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/git-workflow)
- [Send to Agent page](https://openagent3.xyz/skills/git-workflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/git-workflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/git-workflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/git-workflow)