push-and-verify

Automates git push-to-remote and monitors CI workflows until all checks pass.

4|Updated Dec 5, 2025
One-click install
npx skills add https://github.com/aaaa47080/stock_agent --skill push-and-verify
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: push-and-verify
Source: https://github.com/aaaa47080/stock_agent/tree/main/.opencode/skills/push-and-verify
Command: npx skills add https://github.com/aaaa47080/stock_agent --skill push-and-verify

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CI pipelines often block progress and manual verification cycles slow down releases. This skill automates pushing changes to the remote repository and ensures every push is followed by a complete CI verification, so only green builds proceed.

Core Features & Use Cases

  • Deterministic push-to-CI workflow that triggers all relevant workflows on a push.
  • CI monitoring and log analysis that fetches failed logs for fast debugging.
  • Re-push loop that reads failures, applies fixes, and repeats until all workflows pass, enabling frictionless releases in practice.

Quick Start

Push changes to the remote repository and wait for CI to complete, inspect failures if any, fix the issues, and re-push until all workflows pass.

Frequently Asked Questions about push-and-verify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate git push and CI verification until all workflows pass?

To automate git push and CI verification, this skill triggers remote pushes and monitors continuous integration workflows, fetching failed logs for debugging and re-pushing fixes until all checks pass.

What is the best way to debug CI failures from failed logs after a git push?

The best way to debug CI failures is to automatically fetch and analyze failed logs from the continuous integration pipeline, identify the exact errors, apply code fixes, and re-push the changes.

How does a re-push loop work for fixing continuous integration errors?

A re-push loop works by enforcing a deterministic cycle where the system reads continuous integration failures, applies necessary bug fixes, and re-pushes the code until all workflows pass for robust software delivery.

Do I need any specific dependencies to automate push-to-remote and CI monitoring?

You do not need specific dependencies to automate push-to-remote and CI monitoring, as the skill operates independently to manage git workflows and continuous integration verification without external requirements.

Why does my continuous integration workflow keep blocking code changes from landing?

Continuous integration workflows block code changes when checks fail, requiring manual log inspection and bug fixes before proceeding; automating this verification ensures only green builds proceed to release.