Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

ci-autofix-reusableci 自动修复可重用

Agent Skill

ci-autofix-reusable 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

242

周安装

10

GitHub Stars

28

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ci-autofix-reusable(ci 自动修复可重用)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/ci-autofix-reusable
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill ci-autofix-reusable
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill ci-autofix-reusable

简介

用于创建可复用的 GitHub Actions 工作流模板,实现 CI 失败的自动分析与修复。

  • 支持跨仓库复用,适用于标准化多项目 CI 治理场景。
  • 使用时需定义清晰的触发条件、约束范围和修复策略,避免过度自动化。
  • 通过 GitHub 安装,需确认 gh CLI 已认证,注意模板中硬编码路径的风险。
  • ci-autofix-reusable 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reusable CI Auto-Fix Workflow

Generate a reusable GitHub Actions workflow for automated CI failure analysis and remediation.

When to Use This Skill

Use this skill when...Use something else when...
Setting up a reusable auto-fix workflow for multiple reposSetting up auto-fix for a single repo (/workflow:auto-fix)
Creating a caller workflow that invokes the reusable templateFixing a single PR's checks (/git:fix-pr)
Customizing auto-fix inputs for different project typesInspecting workflow runs manually (/workflow:inspect)

Context

  • Reusable workflow exists:!find.github/workflows -maxdepth 1 -name 'reusable-ci-autofix.yml' -type f
  • Caller workflow exists:!find.github/workflows -maxdepth 1 -name 'auto-fix.yml' -type f
  • Current workflows:!find.github/workflows -maxdepth 1 -name '*.yml' -type f
  • Claude secrets configured:!gh secret list

Parameters

Parse from $ARGUMENTS:

  • --setup: Create or update the reusable workflow in .github/workflows/reusable-ci-autofix.yml
  • --caller: Create the caller workflow in .github/workflows/auto-fix.yml
  • --workflows <names>: Comma-separated workflow names to monitor (for caller; default: auto-detect CI workflows)
  • --dry-run: Show what would be created without writing files

Execution

Execute this workflow generation process:

Step 1: Detect current state

  1. Check if .github/workflows/reusable-ci-autofix.yml already exists
  2. Check if .github/workflows/auto-fix.yml already exists
  3. List all current workflow files and their name: fields
  4. Check if CLAUDE_CODE_OAUTH_TOKEN or ANTHROPIC_API_KEY secret is configured

Step 2: Select workflows to monitor (for caller)

If --workflows provided, use those. Otherwise, auto-detect:

Good candidates:

  • CI/test workflows (lint, test, build, type-check)
  • Code quality checks (formatting, style)

Skip:

  • Release/deploy workflows
  • Claude-powered workflows (avoid recursive triggers)
  • Scheduled/audit workflows

Step 3: Generate the reusable workflow

If --setup or reusable workflow is missing, create .github/workflows/reusable-ci-autofix.yml using the template from REFERENCE.md § Reusable Workflow.

Key customization points:

  1. Set the auto_fixable_criteria and not_auto_fixable_criteria defaults to match the project's tech stack
  2. Set the verification_commands default to match the project's linter/formatter commands
  3. Adjust max_turns if needed (default: 50)

Step 4: Generate the caller workflow

If --caller or caller workflow is missing, create .github/workflows/auto-fix.yml using the template from REFERENCE.md § Caller Workflow.

Key customization points:

  1. Set the monitored workflow names in the workflows: list
  2. Configure auto_fixable_criteria override if the project has specific fixable patterns
  3. Configure verification_commands for the project's tools

Step 5: Validate and report

  1. Verify both workflow YAML files are valid
  2. List the monitored workflows
  3. Check that required secrets exist (CLAUDE_CODE_OAUTH_TOKEN or ANTHROPIC_API_KEY)
  4. Report any missing prerequisites

Architecture

Caller Workflow                    Reusable Workflow
(.github/workflows/auto-fix.yml)  (.github/workflows/reusable-ci-autofix.yml)

  workflow_run (failure)
  workflow_dispatch (pr_number)
        |
        v
  fan-out (if "all")
        |
        v
  jobs.auto-fix ──calls──────────> on: workflow_call
                                       |
                                       v
                                   Resolve PR branch
                                       |
                                       v
                                   Checkout + Gather context
                                       |
                                       v
                                   Dedup check (max 2 open auto-fix PRs)
                                       |
                                       v
                                   Claude Code Action
                                       |
                                   +---+---+
                                   |       |
                                   v       v
                                 Fixable  Complex
                                   |       |
                                   v       v
                                 Fix PR   Open issue

Safety Guards

GuardPurpose
!startsWith(commit, 'fix(auto):')Prevent recursive auto-fix loops
head_branch!= 'main' (caller)Never auto-fix protected branches
Max 2 open auto-fix PRsPrevent PR flooding
Concurrency group per branchOne auto-fix at a time per branch
max-turns limitCap Claude's iteration count
timeout-minutes: 30Prevent runaway jobs

Prerequisites

RequirementHow to set up
CLAUDE_CODE_OAUTH_TOKEN or ANTHROPIC_API_KEYRepository or org secret
contents: writeIncluded in workflow permissions
pull-requests: writeIncluded in workflow permissions
issues: writeFor creating issues on complex failures

Agentic Optimizations

ContextCommand
Check workflow existstest -f.github/workflows/reusable-ci-autofix.yml
List CI workflowsgrep -h '^name:'.github/workflows/*.yml
Check secretsgh secret list
Recent failuresgh run list --status failure --json name,headBranch -L 10
Validate YAMLpython3 -c "import yaml; yaml.safe_load(open('.github/workflows/reusable-ci-autofix.yml'))"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.16%
按下载量换算29

Claude

29.52%
按下载量换算23

Cursor

19.84%
按下载量换算16

Gemini CLI

8.88%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill ci-autofix-reusable 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills