Install
$ agentstack add skill-unique-divine-jiyuu-gh-ci-watch ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub CI Watch
Watch GitHub pull request CI until checks pass, fail with actionable logs, or reach a timeout. Keep noisy command output out of the final answer. Save detailed logs locally, then report the important failures clearly. If the logs show a trivial, high-confidence local fix, make it and stage only the files touched by that fix.
Workflow
- Identify the PR:
- If the user gives a PR number or URL, use it.
- Otherwise use the repository at the current working directory.
- Infer the PR associated with the current branch using
gh pr view. - If there is no PR for the current branch, stop and report that blocker.
- Do not switch branches or repositories unless the user explicitly asks.
- Create a local temporary log directory:
- Use a deterministic base under
${TMPDIR:-/tmp}/__/. - Prefer this shape:
${TMPDIR:-/tmp}/__/pr--checks//
- Sanitize
__and branch fallback names to lowercase letters,
numbers, dots, underscores, and hyphens.
- Use
gh repo view --json nameWithOwnerandgh pr view --json number
when available.
- If no PR number is available yet, use
branch-instead of
pr--checks.
- Create subfiles such as
checks.txt,summary.md, and
run--.log as useful.
- Tell the user the final log directory path.
- Check status:
- Run
gh pr checks. - If checks are pending, queued, in progress, or running, wait and poll
again.
- Default poll interval: 20 seconds.
- Default timeout: 30 minutes unless the user specifies otherwise.
- On failure:
- Identify failed workflow runs and jobs.
- Use
gh run viewandgh run view --logor job-specific logs when useful. - Save logs into the temp directory.
- Extract the most relevant error snippets.
- Report failed check name, workflow, job, conclusion, and likely cause.
- Apply trivial local fixes when safe:
- First run
git status --shortand keep track of pre-existing dirty files. - Only edit when the failure is narrow, local, and high-confidence, such as:
formatting/lint errors with exact file locations, missing imports, typecheck errors with obvious symbol names, or a deterministic test failure caused by a small mistake in the PR's changed code.
- Do not perform broad refactors, dependency changes, workflow edits, flaky
test workarounds, or product behavior changes without asking first.
- Do not overwrite or revert unrelated user changes.
- After editing, run the smallest relevant local verification command if it
is clear from the logs or repo conventions.
- Stage only files changed by the fix with
git add. - If a file was already dirty before the fix, do not stage it unless the
entire file change is clearly part of this fix. Report the situation instead of risking staging unrelated work.
- Never commit or push unless the user explicitly asks.
- After staging, continue watching CI only if the user has already pushed the
fix or explicitly asks you to push. Otherwise report the staged local fix and stop.
- On success:
- Report that all PR checks are green.
- Include PR number, elapsed time, and final check summary.
Constraints
- Stay read-only for remote services unless the user explicitly asks for a
remote mutating action.
- Local code edits are allowed only for trivial, high-confidence CI fixes from
the logs.
- Stage trivial local fixes with
git addwhen safe. - Do not push commits.
- Do not rerun, cancel, approve, merge, or mutate GitHub state unless the user
explicitly asks.
- Prefer foreground monitoring. Do not start a background shell unless the user
explicitly asks for background monitoring.
- If GitHub CLI auth is missing or
ghfails, stop and report the blocker. - If checks remain pending at timeout, report current status and log directory.
Output Format
Return a concise final report:
Status: green, failed, pending timeout, or blockedPR: number and URL if availableElapsed: approximate time watchedSummary: one paragraphFailed Checks: only if failures existLocal Fixes: files edited and staged, only if local fixes were madeLogs: local temp directory pathNext Step: concrete recommendation
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Unique-Divine
- Source: Unique-Divine/jiyuu
- License: MIT
- Homepage: https://uniquedivine.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.