Devops: Install, Source and Security | FunnelSlayer

Devops

Published by daemon-blockint-tech in agentic-enteprises-skill

No known issues33 installs

What this skill does

|

Add Devops to your agent

Review the source and files first. When you are ready, copy the prompt instruction or use the CLI command supported by your environment.

Install with a prompt

Paste this into a compatible coding agent:

add this skill "devops" from https://github.com/daemon-blockint-tech/agentic-enteprises-skill

Install with the CLI

Run this command in a controlled environment after reviewing the repository:

npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill devops

Skill instructions

DevOps

When to Use

  • Build, fix, or optimize CI/CD pipelines and release automation
  • Implement GitOps, artifact promotion, container delivery, or environment automation
  • Set up service observability, SLOs, alerting, and runbooks for delivery infrastructure
  • Operate on-call workflows for build, deploy, and runtime reliability issues
  • Standardize deployment mechanics for application teams

When NOT to Use

  • Design rollout strategy, cutover, rollback triggers, or release risk tiers → deployment-strategist
  • Build internal developer portals, golden paths, or platform-as-product roadmaps → platform-engineer
  • Provision core cloud networks, IAM, or Terraform modules as the main task → infrastructure-engineer
  • Add security gates, SBOMs, artifact signing, or CI threat modeling → devsecops
  • Design SEV programs, paging policy, or postmortem process → incident-management-engineer
  • Deep SLO/error-budget program, PRR, reliability engineering per service → site-reliability-engineer

Related skills

NeedSkill
SLOs, error budgets, PRR, reliability ownershipsite-reliability-engineer
Cloud VPC, IAM, Terraform modulesinfrastructure-engineer
Managed cloud services and networkingcloud-engineer
SAST, SBOM, OIDC hardening, pipeline securitydevsecops
Data pipeline SLAs and warehouse opsdata-system-ops-lead
App code, APIs, UIsenior-fullstack-developer
Rollout strategy, cutover plans, change tiersdeployment-strategist
IDP, golden paths, developer portal, platform APIsplatform-engineer
Cross-team milestones, RAID, launch counciltechnical-program-manager
SEV model, on-call program, postmortem processincident-management-engineer
K8s cluster deploy and operationscluster-deployment-engineer
App profiling, load tests, perf regressionperformance-engineer

Core Workflows

1. CI/CD pipeline design

Standard stage order:

checkout → lint/test → build → publish artifact → deploy non-prod → integration/e2e → promote prod

Checklist:

  • Pipeline as code in repo; versioned with application
  • Reproducible builds (locked deps, pinned base images)
  • Parallelize independent jobs; cache dependencies
  • Artifact immutability (digest, not floating tag)
  • Manual or policy gate before production
  • Rollback path documented and tested quarterly

See references/cicd_releases.md for GitHub Actions, GitLab CI, and deployment patterns.

2. GitOps and environments

  1. Declare desired state in git (Helm, Kustomize, Terraform for apps)
  2. Sync via Argo CD or Flux; drift detection enabled
  3. One branch or path per environment; promotion via PR
  4. Secrets never in git—use External Secrets / sealed secrets
  5. Audit sync events and failed reconciliations

See references/gitops_environments.md for promotion flows and config layering.

3. Observability and SRE

Minimum observability per service:

SignalWhat to capture
MetricsRED/USE: rate, errors, duration, saturation
LogsStructured JSON, correlation ID, no secrets
TracesCritical paths and cross-service calls

SLO workflow: pick SLI → set target and error budget → alert on burn rate → review in weekly ops.

See references/observability_sre.md for SLI examples, alert hygiene, and runbook links.

4. Incident and on-call

  1. Triage severity (customer impact, data risk)
  2. Mitigate (rollback, scale, feature flag)
  3. Communicate status on cadence
  4. Post-incident review within 48h for SEV1–2
  5. Track action items to closure

See references/incident_oncall.md for severity matrix and handoff template.

5. Developer platform (optional)

  • Golden paths: template repos, standard pipelines, local dev parity
  • Self-service environments with guardrails
  • Cost and quota visibility per team

See references/platform_engineering.md for IDP scope and build-vs-buy.

When to load references

  • Pipelines and releasesreferences/cicd_releases.md
  • GitOps and env promotionreferences/gitops_environments.md
  • Metrics, SLOs, alertsreferences/observability_sre.md
  • Incidents and on-callreferences/incident_oncall.md
  • Internal developer platformreferences/platform_engineering.md

Files included

  • references/cicd_releases.md
  • references/gitops_environments.md
  • references/incident_oncall.md
  • references/observability_sre.md
  • references/platform_engineering.md
  • SKILL.md

More skills