# Send GitFlow 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gitflow",
    "name": "GitFlow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/okoddcat/gitflow",
    "canonicalUrl": "https://clawhub.ai/okoddcat/gitflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gitflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gitflow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T16:31:47.656Z",
      "expiresAt": "2026-05-10T16:31:47.656Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitflow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitflow",
        "contentDisposition": "attachment; filename=\"gitflow-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gitflow"
      },
      "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/gitflow"
    },
    "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/gitflow",
    "downloadUrl": "https://openagent3.xyz/downloads/gitflow",
    "agentUrl": "https://openagent3.xyz/skills/gitflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gitflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gitflow/agent.md"
  }
}
```
## Documentation

### Overview

GitFlow is an OpenClaw skill that automates code pushes and provides real-time CI/CD pipeline status monitoring for GitHub and GitLab repositories. It streamlines developer workflows by reducing context switching between repositories and pipeline dashboards.

The skill can automatically push changes and report pipeline results, enabling faster feedback and smoother deployments.

### Features

GitFlow can:

Push local commits automatically
Trigger remote CI/CD pipelines
Fetch pipeline status and results
Report build success or failure
Display pipeline URLs and logs
Monitor multiple repositories

### Typical Workflow

Developer commits changes locally.
GitFlow pushes changes automatically or on command.
CI/CD pipeline runs remotely.
Skill reports pipeline status.
Developer receives build/deploy feedback instantly.

### GitHub CLI Commands

Use the gh CLI tool to fetch workflow status after pushing:

### Check Workflow Run Status

gh run list

Lists recent workflow runs for the repository.

### View Latest Run for Current Branch

gh run list --branch $(git branch --show-current) --limit 1

Shows the most recent workflow run for the current branch.

### View Run Details

gh run view <run-id>

Displays detailed information about a specific workflow run.

### Watch Run in Real-Time

gh run watch

Watches the most recent run until completion, streaming status updates.

### View Run Logs

gh run view <run-id> --log

Displays the full logs for a workflow run.

### View Failed Job Logs

gh run view <run-id> --log-failed

Shows only the logs from failed jobs.

### Rerun Failed Jobs

gh run rerun <run-id> --failed

Reruns only the failed jobs from a workflow run.

### GitLab CLI Commands

Use the glab CLI tool to fetch pipeline status after pushing:

### Check Pipeline Status

glab ci status

Shows the status of the most recent pipeline on the current branch.

### View Pipeline Details

glab ci view

Opens an interactive view of the current pipeline with job details.

### List Recent Pipelines

glab ci list

Lists recent pipelines for the repository.

### View Specific Pipeline

glab ci view <pipeline-id>

View details of a specific pipeline by ID.

### Watch Pipeline in Real-Time

glab ci status --live

Continuously monitors the pipeline status until completion.

### Get Pipeline Job Logs

glab ci trace <job-id>

Streams the logs of a specific job.

### Post-Push Hook Example

Git doesn't have a native post-push hook, but you can create a git alias to automatically monitor pipeline status after pushing.

Add this to your ~/.gitconfig:

[alias]
    pushflow = "!f() { \\
        git push \\"${1:-origin}\\" \\"${2:-$(git branch --show-current)}\\"; \\
        url=$(git remote get-url \\"${1:-origin}\\"); \\
        if echo \\"$url\\" | grep -q 'github.com'; then \\
            sleep 3 && gh run watch; \\
        elif echo \\"$url\\" | grep -q 'gitlab'; then \\
            sleep 3 && glab ci status --live; \\
        fi; \\
    }; f"

### Usage

git pushflow
git pushflow origin main
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: okoddcat
- Version: 1.0.4
## 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:31:47.656Z
- Expires at: 2026-05-10T16:31:47.656Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gitflow)
- [Send to Agent page](https://openagent3.xyz/skills/gitflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/gitflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gitflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/gitflow)