Best for
- Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
event4u-app/agent-config/src/skills/github-ci/SKILL.md
Use when working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'.
Decision brief
Use when working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/github-ci"Inspect the Agent Skill "github-ci" from https://github.com/event4u-app/agent-config/blob/0adf49a8ae84b0ff6e2de8759eea43257e020eff/src/skills/github-ci/SKILL.md at commit 0adf49a8ae84b0ff6e2de8759eea43257e020eff. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Read .github/workflows/ to understand the full pipeline. 2. Check AGENTS.md for quality tool commands and testing setup. 3. Read commands/fix/ci.md for CI failure debugging workflow.
Triggered on: pullrequest to main, workflowdispatch
Use pinned action versions with SHA hashes (not tags): actions/checkout@ v6.0.2
Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
Triggered on: pullrequest to main, workflowdispatch
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 7 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
.github/workflows/ to understand the full pipeline.AGENTS.md for quality tool commands and testing setup.commands/fix/ci.md for CI failure debugging workflow.quality-tests.yml)Triggered on: pull_request to main, workflow_dispatch
Read .github/workflows/ to discover the actual job matrix. Common patterns:
ARG PHP_VERSION), not hardcoded.| Workflow | Trigger | Environment |
|---|---|---|
deploy-review.yaml | PR with review-env label | Review (ephemeral) |
deploy-sta.yaml | Push to main | Stage |
deploy-pro.yaml | Tag release-X.Y.Z or schedule (Mon 8AM) | Production |
deploy.yml | After "Static Code Analysis" succeeds on main | Envoyer trigger |
module-deploy.yaml | Reusable workflow (called by others) | Parameterized |
| Workflow | Purpose |
|---|---|
pr-review-gate.yaml | Points-based review system (see code-review skill) |
destroy-review.yaml | Cleanup ephemeral review environments |
add-labels.yml | Auto-label PRs |
apply-pr-template.yaml | Apply PR description template |
validate-deployment-files.yaml | Validate AWS deployment configs |
template-db-dump.yaml | Database dump utility |
actions/checkout@<sha> # v6.0.2group: ${{ github.workflow }}-${{ github.ref }}fail-fast: false in matrix strategies for independent job execution.module-deploy.yaml pattern).Every workflow that installs dependencies needs:
COMPOSER_AUTH secret validation (check if set, validate JSON).awk -F= '/^ARG PHP_VERSION/ {print $2}' .docker/DockerfileCheck .github/workflows/ for the runner types used. Common patterns:
ubuntu-latest) for light jobs.env: at job level for shared secrets.$GITHUB_OUTPUT for passing data between steps.$GITHUB_ENV for variables needed across multiple steps.GET /repos/{owner}/{repo}/actions/runs?branch={branch}GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobsGET /repos/{owner}/{repo}/actions/jobs/{job_id}/logsSee commands/fix/ci.md for the full debugging workflow.
.github/workflows/--env=testing to artisan commands in CI — tests will hit the wrong database.continue-on-error: true to hide failures — fix the actual error.actions/checkout@v4).Alternatives
K-Dense-AI/scientific-agent-skills
Build, inspect, test, and analyze bounded process-based discrete-event simulations with SimPy, including events, resources, interrupts, monitoring, replications, warm-up, and reproducible output analysis.
github/awesome-copilot
Build, scaffold, and deploy Power Automate cloud flows using the FlowStudio MCP server. Your agent constructs flow definitions, wires connections, deploys, and tests — all via MCP without opening the portal. Load this skill when asked to: create a flow, build a new flow, deploy a flow definition, scaffold a Power Automate workflow, construct a flow JSON, update an existing flow's actions, patch a flow definition, add actions to a flow, wire up connections, or generate a workflow definition from
obra/superpowers
Use when creating new skills, editing existing skills, or verifying skills work before deployment
wshobson/agents
Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or creating reusable workflow templates.