# Send CI Whisperer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "martok9803-ci-whisperer",
    "name": "CI Whisperer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/martok9803/martok9803-ci-whisperer",
    "canonicalUrl": "https://clawhub.ai/martok9803/martok9803-ci-whisperer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/martok9803-ci-whisperer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=martok9803-ci-whisperer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/config.md",
      "scripts/ci_autopsy.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/martok9803-ci-whisperer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/martok9803-ci-whisperer",
    "downloadUrl": "https://openagent3.xyz/downloads/martok9803-ci-whisperer",
    "agentUrl": "https://openagent3.xyz/skills/martok9803-ci-whisperer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/martok9803-ci-whisperer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/martok9803-ci-whisperer/agent.md"
  }
}
```
## Documentation

### 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)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: martok9803
- Version: 0.2.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/martok9803-ci-whisperer)
- [Send to Agent page](https://openagent3.xyz/skills/martok9803-ci-whisperer/agent)
- [JSON manifest](https://openagent3.xyz/skills/martok9803-ci-whisperer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/martok9803-ci-whisperer/agent.md)
- [Download page](https://openagent3.xyz/downloads/martok9803-ci-whisperer)