โ† All skills
Tencent SkillHub ยท Developer Tools

GitFlow

Automatically monitor CI/CD pipeline status of new push across GitHub and GitLab in one place. Auto DevOps this is the way ๐Ÿฆž!

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Automatically monitor CI/CD pipeline status of new push across GitHub and GitLab in one place. Auto DevOps this is the way ๐Ÿฆž!

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 20 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs