Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

configure-reusable-workflows配置可重用的工作流程

Agent Skill

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

总安装

1,270

周安装

54

GitHub Stars

28

下载量

445
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于在项目中部署可重用的 GitHub Actions 工作流模板。

  • 适合需要统一 CI/CD 流程、安全扫描或质量门禁的团队。
  • 提供预构建的工作流调用器,快速集成 Claude 驱动的检查能力。
  • 安装前需确认是否包含系统命令执行权限,避免误修改关键配置文件。
  • configure-reusable-workflows 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:reusable-workflows

Install Claude-powered reusable GitHub Actions workflows from claude-plugins into a project.

When to Use This Skill

Use this skill when...Use another approach when...
Adding Claude-powered reusable workflows for security, quality, or accessibilitySetting up standard CI/CD workflows (use /configure:workflows)
Installing pre-built workflow callers from claude-pluginsWriting custom GitHub Actions workflows from scratch
Automating OWASP, secret scanning, or code smell detection via CIConfiguring local security scanning tools (use /configure:security)
Adding WCAG accessibility checks to pull request pipelinesRunning one-off accessibility audits manually
Bootstrapping a full suite of Claude-powered CI checks across categoriesOnly need to check existing workflow compliance

Context

  • Workflows dir:!find. -maxdepth 1 -type d -name \'.github/workflows\'
  • Existing callers:!find.github/workflows -maxdepth 1 -name 'claude-*'
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \) -print -quit
  • TypeScript files:!find. -maxdepth 2 \(-name '*.ts' -o -name '*.tsx' \) -print -quit
  • Component files:!find. -maxdepth 3 \(-name '*.jsx' -o -name '*.vue' -o -name '*.svelte' \) -print -quit

Parameters

Parse from command arguments:

  • --all: Install all workflows
  • --security: Install security workflows only
  • --quality: Install quality workflows only
  • --a11y: Install accessibility workflows only
  • --list: List available workflows without installing

Available Workflows

Security

WorkflowDescriptionFile
secretsDetect leaked secrets and credentialsreusable-security-secrets.yml
owaspOWASP Top 10 vulnerability scanningreusable-security-owasp.yml
depsDependency vulnerability auditreusable-security-deps.yml

Quality

WorkflowDescriptionFile
typescriptTypeScript strictness analysisreusable-quality-typescript.yml
code-smellCode smell detectionreusable-quality-code-smell.yml
asyncAsync/await pattern issuesreusable-quality-async.yml

Accessibility

WorkflowDescriptionFile
wcagWCAG 2.1 compliance checkingreusable-a11y-wcag.yml
ariaARIA pattern validationreusable-a11y-aria.yml

Execution

Execute this reusable workflow installation:

Step 1: Detect current state

  1. Check for .github/workflows/ directory (create if missing)
  2. List any existing Claude-powered workflow callers
  3. Determine project type from files present

Step 2: Select workflows

If no flags provided, ask the user which categories to install:

Available workflow categories:
  [1] Security (secrets, owasp, deps)
  [2] Quality (typescript, code-smell, async)
  [3] Accessibility (wcag, aria)
  [4] All workflows

Which categories? (comma-separated, e.g., 1,2):

If --list is set, print the Available Workflows tables above and stop.

Step 3: Generate caller workflows

For each selected workflow, create a caller file in .github/workflows/.

Naming convention: claude-<category>-<name>.yml

Example: claude-security-secrets.yml

Use the caller workflow template:

name: Claude <Category> - <Name>

on:
  pull_request:
    branches: [main]
  workflow_dispatch:

permissions:
  contents: read
  pull-requests: write
  id-token: write

jobs:
  check:
    uses: laurigates/.github/.github/workflows/reusable-<category>-<name>.yml@main
    with:
      # Default inputs - customize as needed
      max-turns: 5
    secrets: inherit

For complete caller workflow files per category, see REFERENCE.md.

Step 4: Remind about secrets

After installation, print the required secret configuration:

Required secret: CLAUDE_CODE_OAUTH_TOKEN

To configure:
1. Go to repository Settings > Secrets and variables > Actions
2. Add secret: CLAUDE_CODE_OAUTH_TOKEN
3. Value: Your Claude Code OAuth token

Get token from: https://console.anthropic.com/

Customization

After installation, users can customize:

InputPurposeExample
file-patternsFiles to scan'src/**/*.ts'
max-turnsClaude analysis depth3 (quick) to 10 (thorough)
fail-on-*Block merges on findingstrue / false
wcag-levelAccessibility standard'A', 'AA', 'AAA'

Post-Installation

  1. Configure secret: Add CLAUDE_CODE_OAUTH_TOKEN to repository secrets
  2. Customize patterns: Edit file-patterns to match project structure
  3. Adjust triggers: Modify paths filters for relevant file types
  4. Test manually: Use workflow_dispatch to test before PR triggers

Agentic Optimizations

ContextCommand
List available workflows/configure:reusable-workflows --list
Install all workflows at once/configure:reusable-workflows --all
Security workflows only/configure:reusable-workflows --security
Quality workflows only/configure:reusable-workflows --quality
Accessibility workflows only/configure:reusable-workflows --a11y
Check existing callersfind.github/workflows -name 'claude-*' -type f

Flags

FlagDescription
--allInstall all workflows
--securityInstall security workflows only
--qualityInstall quality workflows only
--a11yInstall accessibility workflows only
--listList available workflows without installing

See Also

  • /configure:workflows - Standard CI/CD workflows (container, release-please)
  • /configure:security - Security tooling configuration
  • ci-workflows skill - Workflow patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.19%
按下载量换算165

Claude

30.68%
按下载量换算137

Cursor

20.45%
按下载量换算91

Gemini CLI

9.39%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills