Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
daemon-blockint-tech avatar

Cicd Engineer

  • 28 installs
  • 7 repo stars
  • Updated May 20, 2026
  • daemon-blockint-tech/agentic-enteprises-skill

Build CI/CD for an agent-skills monorepo: validate on PR, package .skill artifacts on release, wire skill-creator scripts, and set quality gates.

About

Guides CI/CD for agent skills repositories including pipeline design, GitHub Actions PR checks, skill-creator integration, .skill artifact promotion, and release runbooks. A developer uses it when building CI for a skills monorepo to validate and package skills.

  • CI/CD for a skills monorepo: validate on PR, package on release
  • Wires skill-creator quick_validate.py and package_skill.py into pipelines

Cicd Engineer by the numbers

  • 28 all-time installs (skills.sh)
  • Ranked #873 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill cicd-engineer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs28
repo stars7
Last updatedMay 20, 2026
Repositorydaemon-blockint-tech/agentic-enteprises-skill

What it does

Build CI/CD for an agent-skills monorepo: validate on PR, package .skill artifacts on release, wire skill-creator scripts, and set quality gates.

Files

SKILL.mdMarkdownGitHub ↗

CI/CD Engineer

When to Use

  • Design or implement CI/CD for a skills monorepo (validate on PR, package on release)
  • Add or fix GitHub Actions workflows for skill folders, changed-path detection, and matrix validation
  • Wire skill-creator scripts (quick_validate.py, package_skill.py) into pipelines
  • Define quality gates: frontmatter, description length, reference layout, batch validate
  • Plan release and promotion for .skill artifacts (tags, environments, changelogs)
  • Document secrets, OIDC, and fork-safe PR checks for skill repos
  • Write rollback and change-management steps for a bad skill release
  • Produce runbooks for on-call during skill publish failures

When NOT to Use

  • Application/service CI only (containers, K8s deploy, app test suites) without skill packaging → devops
  • Pre-flight architecture or build go/no-go before execution → build-validator
  • Internal developer platform, golden paths, Backstage, paved-road templates → platform-engineer
  • SLI/SLO programs, error budgets, burn-rate alerting, PRR without pipeline work → site-reliability-engineer
  • Skill catalog inventory, overlap dedup, deprecate/split governance without CI YAML → ai-skill-manager
  • Security gates (SBOM, SAST policy, supply-chain signing) as the primary task → devsecops
  • Author a single new skill from scratch (content only) → skill-creator / init_skill.py

Related skills

NeedSkill
General app CI/CD, GitOps, container deliverydevops
Go/no-go validation before major changesbuild-validator
IDP, golden paths, developer portalplatform-engineer
SLOs, reliability metrics, incident reliabilitysite-reliability-engineer
Batch validate script, portfolio standardsai-skill-manager
Pipeline and artifact security gatesdevsecops
Release cutover tiers and change windowsdeployment-strategist

Core Workflows

1. Pipeline topology for skills repos

Standard stage order:

checkout → detect changed skills → validate (quick_validate) → optional lint/scripts → package on release tag → publish artifact → notify

Checklist:

  • [ ] Pipeline as code under .github/workflows/; versioned with repo
  • [ ] PR jobs run on changed skill directories only when possible
  • [ ] quick_validate.py gates merge; fail closed on invalid frontmatter
  • [ ] Release job runs package_skill.py only after validation passes
  • [ ] Artifacts immutable (tag + commit SHA in name or metadata)
  • [ ] Manual or environment approval before org-wide distribution

See `references/pipeline_design_and_workflow.md`.

2. GitHub Actions implementation

1. Use paths / paths-filter for **/SKILL.md and references/** 2. Matrix or loop per changed skill directory 3. Cache nothing sensitive; use GITHUB_TOKEN with least scope 4. Fork PRs: read-only checks; no secrets on pull_request_target without hardening 5. Reusable workflow (workflow_call) for validate + package jobs

See `references/github_actions_and_build.md`.

3. Testing and quality gates

GateTool / check
Structure + YAMLquick_validate.py
Batch regressionai-skill-manager/scripts/validate_all_skills.sh
Description triggersHuman review + grep for duplicate keywords
Scripts in skill dirsLint + no network exfil patterns

See `references/testing_gates_and_quality.md`.

4. Skill validation and packaging CI

python3 ~/.claude/skills/skill-creator/scripts/quick_validate.py path/to/skill-dir
python3 ~/.claude/skills/skill-creator/scripts/package_skill.py path/to/skill-dir ./dist
  • PR: validate changed skills only
  • Release: package validated skills; attach .skill to GitHub Release or internal registry
  • Do not package every skill on every PR unless releasing a bundle

See `references/skill_validation_and_packaging_ci.md`.

5. Deployment, promotion, and operations

1. Dev/staging: auto-validate on PR merge to main 2. Release: tag skill-v* or calendar version; package and publish 3. Promotion: copy artifacts to consumer paths (plugin cache, internal registry) with checksum 4. Rollback: re-publish previous tag artifacts; document superseded skill description if needed 5. Runbook: who approves, how to verify install, comms for broken bundle

See `references/deployment_promotion_and_operations.md`.

6. Scope and boundaries

Confirm the ask is skills-repo CI/CD, not generic platform ops. Load references/cicd_engineer_scope.md when routing or scoping engagements.

When to load references

TopicReference
Role boundaries and triggersreferences/cicd_engineer_scope.md
Pipeline stages, branching, artifactsreferences/pipeline_design_and_workflow.md
GitHub Actions patternsreferences/github_actions_and_build.md
Gates, batch validate, PR policyreferences/testing_gates_and_quality.md
quick_validate / package_skill in CIreferences/skill_validation_and_packaging_ci.md
Release, promotion, rollback, runbooksreferences/deployment_promotion_and_operations.md

Related skills

DevOps & CI/CDdevopsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.