Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
laurigates avatar

Finops Workflows

  • 59 installs
  • 49 repo stars
  • Updated August 4, 2026
  • laurigates/claude-plugins

Helps with automation & workflows tasks.

About

finops-workflows is a Claude Code skill for automation & workflows. It helps solo builders move faster with AI-assisted development.

  • finops-workflows
  • Automation & Workflows
  • AI-coding skill

Finops Workflows by the numbers

  • 59 all-time installs (skills.sh)
  • Ranked #1,005 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laurigates/claude-plugins --skill finops-workflows

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs59
repo stars49
Last updatedAugust 4, 2026
Repositorylaurigates/claude-plugins

What it does

Helps with automation & workflows tasks.

Files

SKILL.mdMarkdownGitHub ↗

/finops:workflows

Analyze GitHub Actions workflow runs for a repository - frequency, duration, success rates, and efficiency metrics.

When to Use

ScenarioUse this skillAlternative
Analyze workflow run frequency and duration/finops:workflows-
Investigate high failure rates/finops:workflows-
Understand trigger type distribution/finops:workflows-
Org-wide workflow analysis/finops:workflows org <name>-
Quick overall health snapshot/finops:overviewUse overview for high-level summary
Fix workflow configuration issues/finops:wasteUse waste for actionable config fixes
Compare workflow metrics across repos/finops:compareUse compare for multi-repo view

Context

  • Current repo URL: !git remote get-url origin

Parameters

ParameterDescriptionDefault
repoRepository in owner/name formatCurrent repository
--createdDate range filter (e.g., >=2026-03-01)None (last 100 runs)
org <name>Org-wide analysis (use instead of repo)-

Execution

Per-repo analysis (default)

bash "${SKILL_DIR}/scripts/workflow-runs.sh" $ARGS

Org-wide analysis

When the user requests org-wide analysis, use the org script:

bash "${SKILL_DIR}/scripts/workflow-runs-org.sh" $ARGS

Output Format

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

Agentic Optimizations

ContextCommand
Workflow list (JSON)gh workflow list --json name,id,state
Recent runs (compact)gh run list --workflow <name> --limit 20 --json status,conclusion,createdAt
Failed runs onlygh run list --status failure --limit 10 --json name,createdAt,url
Run timing (JSON)`gh api "/repos/{owner}/{repo}/actions/runs?per_page=50" --jq '.workflow_runs[]
Compact per-repo analysisbash "${SKILL_DIR}/scripts/workflow-runs.sh" $ARGS
Org-wide analysisbash "${SKILL_DIR}/scripts/workflow-runs-org.sh" $ARGS

Post-actions

Based on findings, suggest:

  • High failure rate -> Investigate recent failures, check logs with gh run view --log-failed
  • High frequency -> Review trigger conditions, add path filters
  • Long durations -> Review caching, parallelization, step optimization
  • Many skipped -> Run /finops:waste for detailed analysis

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.