Install
$ agentstack add skill-urmzd-dotfiles-diagnose-ci ✓ 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
Diagnose CI
Investigate and diagnose CI pipeline failures.
Steps
- Find the failure:
- If a
run_idis provided, usegh run view --log-failed. - Otherwise, run
gh run list --status=failure --limit 5 --json databaseId,name,headBranch,conclusion,createdAtto find recent failures. - Pick the most recent failure on the current branch (or the most recent overall if none match).
- Pull logs: Run
gh run view --log-failedto get the failed step logs. If output is large, focus on the last 100 lines of the failing step.
- Diagnose: Analyze the logs to identify:
- The specific step that failed
- The root cause (compile error, test failure, lint issue, missing secret, timeout, etc.)
- The relevant file(s) and line(s) if applicable
- Recommend fix: Based on the diagnosis (read-only: recommend, do not apply):
- If it's a code issue: show the exact fix and point the user to
fix-and-retryto apply + re-ship it. - If it's a config issue (missing secret, wrong action version): explain what to change.
- If it's flaky (timeout, network): suggest re-running with
gh run rerun.
- Report: Present a concise summary:
```text ## CI Failure: (run #)
- Branch:
- Failed step:
- Root cause:
- Fix:
```
Rules
- Always check the current repo's workflows first (
gh run list). - If
ghis not authenticated or the repo has no remote, report that clearly. - Don't blindly re-run failed pipelines; diagnose first.
Gotchas
gh run view --log-failedreturns empty for a cancelled run (no step is marked "failed", so there is nothing to dump). Fall back togh run view --json jobsand inspect each job'sconclusion/stepsto find the cancelled or failed step, then read its log directly.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: urmzd
- Source: urmzd/dotfiles
- License: Apache-2.0
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.