From datum-platform
Covers Kustomize deployment patterns using base, components, and overlays structure. Use when organizing Kubernetes manifests for different environments.
npx claudepluginhub datum-cloud/claude-code-plugins --plugin datum-platformThis skill uses the workspace's default tool permissions.
This skill covers Kustomize deployment patterns for Datum Cloud services.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
This skill covers Kustomize deployment patterns for Datum Cloud services.
Services use a base + components + overlays model:
config/
├── base/ # Core resources
├── components/ # Toggleable features
└── overlays/ # Environment-specific
| File | Purpose |
|---|---|
components.md | Component patterns |
overlays.md | Environment overlays |
# config/base/kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml
- service.yaml
- serviceaccount.yaml
commonLabels:
app.kubernetes.io/name: myservice
app.kubernetes.io/component: apiserver
Independently toggleable features:
| Component | Purpose |
|---|---|
api-registration | APIService registration |
cert-manager-ca | TLS certificates |
observability | Metrics and health |
tracing | Distributed tracing |
One per environment:
| Overlay | Purpose |
|---|---|
development | Local development |
staging | Pre-production |
production | Production deployment |
Run scripts/validate-kustomize.sh to verify:
Run scripts/check-security.sh to verify:
components.md — Component detailsoverlays.md — Overlay patternsscripts/validate-kustomize.sh — Build validationscripts/check-security.sh — Security validation