claude-session-dashboard: Skill for Claude Code

.claude/skills/fix-ci/SKILL.md

fix-ci is a skill for Claude Code from dlupiak/claude-session-dashboard. It costs 12 tokens per session (878 once invoked), scanned A, original, MIT.

A coding-agent skill for investigating and fixing the newest failed continuous-integration workflow. Continuous integration, or CI, automatically builds and tests code after changes are made.

In plain words
What is it for?
Finding failed GitHub Actions runs, reading job logs, classifying errors, reproducing type-checking, lint, test, or build failures locally, and correcting the cause.
Why use it?
It helps trace a failed automated check from its workflow logs to a reproducible local problem and then to a fix.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

This is dlupiak/claude-session-dashboard's own configuration. It tells Claude Code how to work on claude-session-dashboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-session-dashboard configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dlupiak/claude-session-dashboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dlupiak/claude-session-dashboard/main/.claude/skills/fix-ci/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dlupiak/claude-session-dashboard

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fix-ci

README.md
[![agentmods](https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/fix-ci.svg)](https://agentmods.dev/skills/dlupiak/claude-session-dashboard/fix-ci)
Your own site
<a href="https://agentmods.dev/skills/dlupiak/claude-session-dashboard/fix-ci"><img src="https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/fix-ci.svg" alt="Measured on agentmods" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 878 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 58
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 59
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00012 $0.00878
Opus 5 $0.00006 $0.00439
Sonnet 5 $0.00002 $0.00176
Haiku 4.5 $0.00001 $0.00088

Measured 7d ago against content hash 008507bb3dd3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

fix-ci scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/fix-ci/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fix CI Workflow

Investigate the latest CI failure, reproduce locally, and fix it.

Steps

1. Identify the Failure

# Get latest (or specific) workflow run
gh run list --limit 5
gh run view <run-id>

If $ARGUMENTS.run-id is provided, use that. Otherwise pick the latest failed run.

  • Show which jobs failed and which passed
  • Download the failed job logs: gh run view <run-id> --log-failed

2. Analyze the Error

Read the logs and classify the failure:

Type Indicators
typecheck error TS, tsc --noEmit
lint eslint, warning/error with rule names
unit test vitest, FAIL, expect(
e2e test playwright, spec.ts, timeout, locator
build npm run build, vite build, rollup
dependency npm ci, ERESOLVE, peer dep

Extract the exact error message, file path, and line number.

Use superpowers:systematic-debugging to find root cause before attempting any fix.

3. Reproduce Locally

Run the failing CI step locally from apps/web/:

CI Step Local Command
typecheck npm run typecheck
lint npm run lint
unit test npm run test
e2e test npm run test:e2e
build npm run build
install npm ci

If reproducing a specific test:

  • Unit: npx vitest run <test-file>
  • E2E: npx playwright test <spec-file>

4. Investigate with Playwright (if E2E failure)

If the failure is an E2E test or a visual/runtime bug:

  1. Start the dev server if not running: check lsof -i :3000
  2. Navigate to the failing page: mcp__playwright__browser_navigate
  3. Take a screenshot: mcp__playwright__browser_take_screenshot
  4. Check console errors: mcp__playwright__browser_console_messages
  5. Check network failures: mcp__playwright__browser_network_requests
  6. Get the accessibility tree: mcp__playwright__browser_snapshot
  7. Interact as the test would — click, fill forms, etc.
  8. Compare actual behavior with what the test expects

Read the full file on GitHub · 119 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 119 lines · 12 tokens per session scan A 008507bb3dd3

Subscribe to this mod's changes

fix-ci is a skill published in the GitHub repository dlupiak/claude-session-dashboard (67 stars, last pushed yesterday), licensed MIT. It adds 12 tokens to every session and 878 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.

Related

Other skills, from other repositories

fix-ci

Diagnose and fix a failing CI run by pulling the actual failure logs (gh run view --log-failed), reproducing the failure locally, fixing the root cause rather than the symptom, and verifying green before and after pushing. Use when a GitHub Actions run is red, a PR check is failing, or CI passes locally but fails…

KhaledSaeed18/dotclaude · 73 tokens

github-actions-silent-failures

Diagnose GitHub Actions workflows that fail silently — a reusable-workflow run that shows zero jobs and no logs (startupfailure), a gh-aw cross-repo import that mis-resolves when the source repo is literally named .github, and self-hosted-runner traps (a shared-tmp race across containers, docker exec landing as an…

dryvist/claude-code-plugins · 113 tokens

ts-debug

TypeScript/Node debugging expert. Use when the user needs to debug, profile, or trace TypeScript or Node.js code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function", "why won't the process exit".

berekvolgyipeter/dotclaude · 68 tokens

py-debug

Python debugging expert. Use when the user needs to debug, profile, or trace Python code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function".

berekvolgyipeter/dotclaude · 54 tokens

ci-self-heal

A diagnostic guide for analysing failed continuous-integration checks. Continuous integration, or CI, automatically tests and builds code changes; this guide classifies failures and suggests fixes without editing the code.

rushengzhou/sid-code · 73 tokens

investigate-ci

Investigates GitHub Actions workflow failures for any repo. Fetches recent runs, identifies failures, extracts error logs, diagnoses root causes, and suggests fixes. Use when a deploy or CI workflow fails and you need to understand why.

mostafa-drz/claude-skills · 50 tokens