pr-check

Monitor Pull Request CI pipelines and auto-fix linting and formatting issues.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/fagemx/thyra --skill pr-check-fagemx
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: pr-check
Source: https://github.com/fagemx/thyra/tree/main/.claude/skills/pr-check
Command: npx skills add https://github.com/fagemx/thyra --skill pr-check-fagemx

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the monitoring and fixing of Continuous Integration (CI) pipeline issues for Pull Requests (PRs), reducing manual intervention and ensuring code quality.

Core Features & Use Cases

  • CI Pipeline Monitoring: Tracks the status of PR CI checks.
  • Auto-Fixing: Automatically attempts to fix linting and formatting errors.
  • Workflow Management: Guides the PR through checks, retries, and auto-fixes until all checks pass or manual intervention is required.
  • Use Case: A developer pushes code to a PR, and this Skill automatically detects failing linting checks, fixes them, commits the changes, and pushes them back, allowing the CI to re-run without developer input.

Quick Start

Use the pr-check skill to monitor the CI pipeline for the current pull request and automatically fix any linting issues.

Frequently Asked Questions about pr-check

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

FAQPage Schema
How do I automatically fix linting and formatting errors in a GitHub Actions pull request pipeline?▼

To automatically fix linting and formatting errors in a GitHub Actions pull request pipeline, you can use an automation script that monitors CI checks, applies fixes to syntax failures, and commits the changes. This loops until all checks pass.

What is the best way to monitor CI pipeline status for a pull request and retry failed checks?▼

Monitoring CI pipeline status for a pull request and retrying failed checks is best handled by an automation tool that identifies target PRs, tracks pipeline status, and automatically pushes fixes for formatting issues to trigger a re-run without manual developer input.

Do I need GitHub CLI installed to automate pull request checks and fixes?▼

Yes, you need GitHub CLI and Git installed to automate pull request checks and fixes. The automation requires these tools to interact with your repository, identify target PRs, check existing reviews, and push automated fixes for linting failures.

Can I use an automation script to fix syntax errors and push commits to my PR automatically?▼

Yes, you can use an automation script to fix syntax errors and push commits to your PR automatically. The script detects failing linting checks, applies the necessary formatting fixes, and pushes the changes back to the repository to re-run the CI pipeline.

When should I use automated PR fixing instead of manually resolving pipeline failures?▼

You should use automated PR fixing instead of manually resolving pipeline failures when dealing with repetitive linting and formatting errors. It reduces manual intervention by automatically committing fixes, but manual resolution is still needed for complex logic failures.

Why does my CI pipeline keep failing on formatting checks after I push code to a pull request?▼

Your CI pipeline might keep failing on formatting checks due to inconsistent local configurations. An automation script can resolve this by detecting the formatting failures, applying the required syntax fixes, and pushing the corrected code back to the PR.