← All skills
Tencent SkillHub Β· Developer Tools

CI Whisperer

Analyze GitHub Actions failures and propose fixes. Use when a user shares a failing GitHub Actions run URL/id, says 'CI is failing', asks 'why did this workf...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Analyze GitHub Actions failures and propose fixes. Use when a user shares a failing GitHub Actions run URL/id, says 'CI is failing', asks 'why did this workf...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/config.md, scripts/ci_autopsy.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

CI Whisperer

Fetch GitHub Actions run details, pinpoint the failure, and propose a minimal fix. This skill is meant to feel like a senior engineer doing a fast β€œCI autopsy”.

Read-only mode (default)

Collect evidence, explain root cause, propose fixes. No pushes, no PRs, no branch creation.

PR fix mode (opt-in)

PR fix mode is allowed only when both are true: The user explicitly asks to open a PR. A local toggle is enabled (the β€œon/off button”): env var: CI_WHISPERER_WRITE=1 If the toggle is not enabled, refuse politely and explain how to enable it.

1) Identify target run

Accept any of: workflow run URL run id PR number (then locate latest run) Always determine: owner/repo run id If the user didn’t specify the repo, ask for it (or infer from context).

2) Gather evidence (tool-backed)

Prefer deterministic tooling. Use /usr/bin/gh when the system has multiple gh binaries. Suggested commands: gh run view <run-id> --repo owner/repo --json status,conclusion,createdAt,updatedAt,event,headBranch,headSha,url,name gh run view <run-id> --repo owner/repo --log-failed gh run view <run-id> --repo owner/repo --log (only if needed; can be noisy) If gh is not authenticated, stop and ask the user to run: /usr/bin/gh auth login

3) Produce a "CI Autopsy" report

Return: failing job(s) and step(s) the exact error excerpt (short; redact secrets) likely root cause(s) ranked minimal fix options confidence level

4) (Optional) Open a PR (only with explicit approval + write toggle)

If the user asks to fix it and CI_WHISPERER_WRITE=1: create a branch apply minimal changes run local lint/tests if available open PR with a clear description and link to the failing run If the user asks but write mode is OFF: provide the patch/diff instructions, but do not push.

Safety

Never print tokens. Don’t open PRs or push changes unless explicitly requested. If logs contain secrets, redact before quoting.

Bundled scripts

Use scripts for repeatable fetching and parsing: scripts/ci_autopsy.py (fetch run metadata + failed logs)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/config.md Docs
  • scripts/ci_autopsy.py Scripts