From finops-plugin
Analyzes GitHub Actions workflow runs in repos or orgs for frequency, duration, success rates, and efficiency. Flags high-frequency runs, failures, and suggests CI/CD optimizations.
npx claudepluginhub laurigates/claude-plugins --plugin finops-pluginThis skill is limited to using the following tools:
Analyze GitHub Actions workflow runs for a repository - frequency, duration, success rates, and efficiency metrics.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Analyze GitHub Actions workflow runs for a repository - frequency, duration, success rates, and efficiency metrics.
git remote get-url origin| Parameter | Description | Default |
|---|---|---|
repo | Repository in owner/name format | Current repository |
--created | Date range filter (e.g., >=2026-03-01) | None (last 100 runs) |
org <name> | Org-wide analysis (use instead of repo) | - |
bash "${SKILL_DIR}/scripts/workflow-runs.sh" $ARGS
When the user requests org-wide analysis, use the org script:
bash "${SKILL_DIR}/scripts/workflow-runs-org.sh" $ARGS
Analyzing workflows for: org/repo
=== Active Workflows ===
CI (id: 12345)
Deploy (id: 12346)
CodeQL (id: 12347)
=== Run Summary ===
CI:
Total: 156 | Success: 140 | Failure: 10 | Cancelled: 4 | Skipped: 2
Success rate: 89%
Deploy:
Total: 45 | Success: 44 | Failure: 1 | Cancelled: 0 | Skipped: 0
Success rate: 97%
=== Duration Analysis ===
CI:
Runs: 50 | Avg: 4m32s | Max: 12m15s | Total: 226min
Deploy:
Runs: 20 | Avg: 2m10s | Max: 3m45s | Total: 43min
=== Trigger Types ===
push: 89 runs
pull_request: 67 runs
schedule: 30 runs
workflow_dispatch: 5 runs
=== Recent Failures (last 10) ===
#234 CI - 2025-01-28 - https://github.com/org/repo/actions/runs/...
#231 CI - 2025-01-27 - https://github.com/org/repo/actions/runs/...
=== High Frequency Workflows ===
CI: 156 runs (~5.2/day) - consider path filters
Based on findings, suggest:
gh run view --log-failed/finops:waste for detailed analysis