bundles/github/skills/github-actions-author/SKILL.md
Author, review, and harden GitHub Actions workflows using current official documentation, secure trigger patterns, least-privilege permissions, current action versions, and CI/CD validation. Use when creating, editing, debugging, or security-reviewing workflow YAML.
npx skillsauth add shipshitdev/library github-actions-authorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Inputs:
Outputs:
Creates/Modifies:
.github/workflows/*.ymlExternal Side Effects:
Confirmation Required:
Delegates To:
testing-cicd-init for first-pass TypeScript test infrastructuregh-fix-ci when a workflow is failing on a PRgit-safety when workflows touch credentials, tokens, or publish stepsDiscover existing CI shape:
find .github/workflows -maxdepth 1 -type f 2>/dev/null
gh workflow list
git status -sb
Read relevant local context:
package.json, lockfiles, workspace config, test scriptsGround version-sensitive choices in official GitHub docs:
GITHUB_TOKEN permissionspull_request vs pull_request_targetCheck action versions before adding or bumping common actions:
gh release view --repo actions/checkout --json tagName --jq '.tagName'
gh release view --repo actions/setup-node --json tagName --jq '.tagName'
gh release view --repo oven-sh/setup-bun --json tagName --jq '.tagName'
Author with safe defaults:
contents: read.pull_request for untrusted code. Use pull_request_target only for
metadata/comment workflows that do not check out or execute fork code.concurrency for expensive or deploy workflows.Validate locally when possible:
git diff -- .github/workflows
gh workflow view <workflow-name-or-id> --yaml
Run actionlint if already installed. Do not install new global tools unless
the user asks.
Final output:
development
TypeScript refactoring and modernization guidelines from a principal specialist perspective. This skill should be used when refactoring, reviewing, or modernizing TypeScript code to ensure type safety, compiler performance, and idiomatic patterns. Triggers on tasks involving TypeScript type architecture, narrowing, generics, error handling, or migration to modern TypeScript features.
tools
Resolves TypeScript and JavaScript problems across type-level programming, performance, monorepo management, migration, and modern tooling. Invoke when diagnosing "type instantiation excessively deep" errors, migrating JS to TS, configuring strict tsconfig, debugging module resolution, or choosing between Biome/ESLint/Turborepo/Nx.
tools
Turborepo monorepo build system guidance. Triggers on: `turbo.json`, task pipelines, `dependsOn`, caching, remote cache, the `turbo` CLI, `--filter`, `--affected`, CI optimization, environment variables, internal packages, monorepo structure, and package boundaries. Use when the user configures tasks or workflows, creates packages, sets up a monorepo, shares code between apps, runs changed packages, debugs cache behavior, or works in an `apps/` plus `packages/` workspace.
tools
Provides Tailwind CSS v4 performance optimization and best practices guidelines. Triggers when writing, reviewing, or refactoring Tailwind CSS v4 code; when working with Tailwind configuration, @theme directive, utility classes, responsive design, dark mode, container queries, or CSS generation optimization.