| created | "2026-02-02T00:00:00.000Z" |
| modified | "2026-06-18T00:00:00.000Z" |
| reviewed | "2026-04-29T00:00:00.000Z" |
| description | Reusable GitHub Actions workflows for security, quality, accessibility. Use when adding OWASP/secret/code-smell scans or WCAG checks to PR pipelines. |
| allowed-tools | Glob, Grep, Read, Write, Edit, Bash(mkdir *), Bash(ls *), AskUserQuestion, TodoWrite |
| args | [--all] [--security] [--quality] [--a11y] [--list] |
| argument-hint | [--all] [--security] [--quality] [--a11y] [--list] |
| name | configure-reusable-workflows |
/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 accessibility | Setting up standard CI/CD workflows (use /configure:workflows) |
| Installing pre-built workflow callers from claude-plugins | Writing custom GitHub Actions workflows from scratch |
| Automating OWASP, secret scanning, or code smell detection via CI | Configuring local security scanning tools (use /configure:security) |
| Adding WCAG accessibility checks to pull request pipelines | Running one-off accessibility audits manually |
| Bootstrapping a full suite of Claude-powered CI checks across categories | Only need to check existing workflow compliance |
Context
- Workflows dir: !
find . -maxdepth 1 -type d -name \'.github/workflows\'
- Existing callers: !
find . -path '*/.github/workflows/*' -maxdepth 3 -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
| Workflow | Description | File |
|---|
| secrets | Detect leaked secrets and credentials | reusable-security-secrets.yml |