Synaptic SkillsSynapticSkills
MarketplaceSkill GraphCriar SkillMCP ServerPlataformaEnterprise
v0.1.0-beta
Voltar ao Marketplace
DevOpsMédio

Gh Pr Checks Plan Fix

poropenai·openai· v1.0.0 · atualizado em 2026-04-10
82
Score

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.

github-actionsci-cddebugginggh-clipull-requesterror-handling
0Stars
0Forks
0Usos
Fork

Documento do Skill

SKILL.mdgh-fix-ci/workflow
1. Verify gh authentication.
Run `gh auth status` in the repo.
If unauthenticated, ask the user to run `gh auth login` (ensuring repo + workflow scopes) before proceeding.
2. Resolve the PR.
Prefer the current branch PR: `gh pr view --json number,url`.
If the user provides a PR number or URL, use that directly.
3. Inspect failing checks (GitHub Actions only).
Preferred: run the bundled script (handles gh field drift and job-log fallbacks):
`python "<path-to-skill>/scripts/inspect_pr_checks.py" --repo "." --pr "<number-or-url>"`
Add `--json` for machine-friendly output.
Manual fallback:
`gh pr checks <pr> --json name,state,bucket,link,startedAt,completedAt,workflow`
If a field is rejected, rerun with the available fields reported by `gh`.
For each failing check, extract the run id from `detailsUrl` and run:
`gh run view <run_id> --json name,workflowName,conclusion,status,url,event,headBranch,headSha`
`gh run view <run_id> --log`
If the run log says it is still in progress, fetch job logs directly:
`gh api "/repos/<owner>/<repo>/actions/jobs/<job_id>/logs" > "<path>"`
4. Scope non-GitHub Actions checks.
If `detailsUrl` is not a GitHub Actions run, label it as external and only report the URL.
Do not attempt Buildkite or other providers; keep the workflow lean.
5. Summarize failures for the user.
Provide the failing check name, run URL (if any), and a concise log snippet.
Call out missing logs explicitly.
6. Create a plan.
Use the `create-plan` skill to draft a concise plan and request approval.
7. Implement after approval.
Apply the approved plan, summarize diffs/tests, and ask about opening a PR.
8. Recheck status.
After changes, suggest re-running the relevant tests and `gh pr checks` to confirm.

Telemetria de Agentes

Execuções
0
total
Taxa de Sucesso
0%
últimos 30d
Latência Média
0.0s
p50
Alucinação
0.0%
detecção
Tokens Entrada
0
avg 0/exec
Tokens Saída
0
avg 0/exec

Uso por Plataforma

Skills Relacionados

Compõe comPR Comment Handler
75%
Hebbian Synapse
Composite0.750
w = 0.3·α + 0.5·β + 0.2·γ
78
Compõe com ←Sentry (Read-only Observability)
70%
Hebbian Synapse
Composite0.700
w = 0.3·α + 0.5·β + 0.2·γ
84
Similar aVercel CLI with Tokens
60%
Hebbian Synapse
Composite0.600
w = 0.3·α + 0.5·β + 0.2·γ
79
Similar aDeploy to Vercel
60%
Hebbian Synapse
Composite0.600
w = 0.3·α + 0.5·β + 0.2·γ
79
Similar aCI Pipeline Builder
60%
Hebbian Synapse
Composite0.600
w = 0.3·α + 0.5·β + 0.2·γ
87
Co-executedVercel CLI with Tokens
48%
Hebbian Synapse
Composite0.478
w = 0.3·α + 0.5·β + 0.2·γ
79

Árvore do Skill

Gh Pr Checks Plan Fix
gh-fix-ci
Fases Cognitivas6
1.SENSE
2.CONTEXTUALIZE
3.HYPOTHESIZE
4.ACT
5.EVALUATE
6.REFLECT
Triggers7
fix failing GitHub checksdebug GitHub Actionstroubleshoot CI failuresresolve PR check errorsanalyze GitHub Actions logsrepair broken CI pipelineinvestigate GitHub PR checks

Avaliar este Skill

Score Breakdown

⭐Avaliação Humana0%
🤖Sucesso de Agentes0%
🕐Atualidade100%
🔗Saúde de Dependências100%
🕸️Centralidade no Grafo0%
🛡️Segurança48%
CompositeScore = α·Humano + β·Agente + γ·Recência + δ·Deps + ε·Centralidade + ζ·Segurança

Instalação

$ synaptic mcp download gh-fix-ci
$ synaptic skills detail gh-fix-ci
$ synaptic skills live gh-fix-ci

Dependências

python

Links

GitHub Repository