Install
$ agentstack add skill-daemon-blockint-tech-agentic-enteprises-skill-cicd-engineer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
.skillartifacts (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
| Need | Skill | |---|---| | General app CI/CD, GitOps, container delivery | devops | | Go/no-go validation before major changes | build-validator | | IDP, golden paths, developer portal | platform-engineer | | SLOs, reliability metrics, incident reliability | site-reliability-engineer | | Batch validate script, portfolio standards | ai-skill-manager | | Pipeline and artifact security gates | devsecops | | Release cutover tiers and change windows | deployment-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.pygates merge; fail closed on invalid frontmatter - [ ] Release job runs
package_skill.pyonly 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
- Use
paths/paths-filterfor**/SKILL.mdandreferences/** - Matrix or loop per changed skill directory
- Cache nothing sensitive; use
GITHUB_TOKENwith least scope - Fork PRs: read-only checks; no secrets on
pull_request_targetwithout hardening - Reusable workflow (
workflow_call) for validate + package jobs
See references/github_actions_and_build.md.
3. Testing and quality gates
| Gate | Tool / check | |---|---| | Structure + YAML | quick_validate.py | | Batch regression | ai-skill-manager/scripts/validate_all_skills.sh | | Description triggers | Human review + grep for duplicate keywords | | Scripts in skill dirs | Lint + 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
.skillto 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
- Dev/staging: auto-validate on PR merge to main
- Release: tag
skill-v*or calendar version; package and publish - Promotion: copy artifacts to consumer paths (plugin cache, internal registry) with checksum
- Rollback: re-publish previous tag artifacts; document superseded skill
descriptionif needed - 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
| Topic | Reference | |---|---| | Role boundaries and triggers | references/cicd_engineer_scope.md | | Pipeline stages, branching, artifacts | references/pipeline_design_and_workflow.md | | GitHub Actions patterns | references/github_actions_and_build.md | | Gates, batch validate, PR policy | references/testing_gates_and_quality.md | | quickvalidate / packageskill in CI | references/skill_validation_and_packaging_ci.md | | Release, promotion, rollback, runbooks | references/deployment_promotion_and_operations.md |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: daemon-blockint-tech
- Source: daemon-blockint-tech/Agentic-Enteprises-Skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.