ci
Generate a CI/CD pipeline — build, test, security scan, deploy. Supports GitHub Actions, GitLab CI, Bitbucket Pipelines.
Generate Swarm secret/config management — external secret references, versioned rotation, config mounts.
$ npx -y skills add KhaiTrang1995/agentic-awesome-kits --skill secret --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/secretContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate Swarm secret/config management — external secret references, versioned rotation, config mounts.
name: secret description: Generate Swarm secret/config management — external secret references, versioned rotation, config mounts. user-invocable: true argument-hint: "<secret-name> [--external] [--rotate] [--config]"
/secret db-password --external /secret db-password --rotate (versioned rotation: db-password → db-password_v2) /secret nginx-conf --config (non-sensitive → docker config, not docker secret)
1. Decide **secret vs config**: sensitive value (password, token, key) → `docker secret`; non-sensitive file (nginx.conf, feature-flag JSON) → `docker config`. Both mount as files, neither belongs in an env var's literal value. 2. Reference it in the stack file as `external: true` — the agent never writes the actual secret value into a generated file. 3. For `--rotate`: generate a **versioned** secret name (`{name}_v{n}`) plus the service-level change needed to point at it, and note that the old version stays available until every service referencing it has been updated (Swarm secrets are immutable and can't be edited in place). 4. L1 approval → Write/Edit (the stack file reference only — never the secret's contents).
Reference block added to docker-stack.yml (secrets:/configs: sections, external: true) docker-secret-create.sh (reference command showing how to create it out-of-band, not executed by the agent)
Reusable AI Skill Kits for coding agents (Claude Code and any other subagent/slash-command-compatible tool).
Repo: KhaiTrang1995/agentic-awesome-kits
Generate a CI/CD pipeline — build, test, security scan, deploy. Supports GitHub Actions, GitLab CI, Bitbucket Pipelines.
Generate docker-compose.yml — multi-service, network, volumes, healthcheck.
Generate an optimized Dockerfile — multi-stage build, security hardening, small image size.
Generate or update a single Swarm service definition — scaling, resource limits, rolling update policy, health check.
Generate a Docker Swarm stack file — services, deploy policy (replicas, placement, rolling update/rollback), overlay network.
ELK health checklist — cluster status, shards, ILM, disk watermarks, ingest lag, pipeline errors. Docs only.