用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill kubernetes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | kubernetes |
| description | Use when the project uses Kubernetes for container orchestration, deployment, and service management |
| metadata | {"author":"calcosmic"} |
Deployment with RollingUpdate as default: set maxSurge and maxUnavailable for controlled rolloutsreadinessProbe and livenessProbe on every container -- HTTP or exec-basedstartupProbe for slow-starting applications to prevent premature kill by the liveness proberequests and limits on every pod: CPU/Memory requests for scheduling, limits for QoSPodDisruptionBudget to maintain availability during voluntary disruptions (node drains, upgrades)DestinationRule for circuit breaking and connection poolingVirtualService for canary deployments: route percentages between service versionsPeerAuthentication for strict mTLS mode across the meshtemplates/, values.yaml, Chart.yaml, and README.mdvalues.yaml for environment-agnostic defaults; override with -f staging.yaml per environment{{ .Values.* }} and {{ .Release.* }}; use {{- to trim whitespace_helpers.tpl) for reusable label blocks and common metadatahelm lint and helm template in CI; use helm test for release validation hooksRole/RoleBinding per namespace, avoid ClusterRole unless necessaryNetworkPolicy to restrict pod-to-pod traffic: default deny, explicitly allow required flowsrunAsNonRoot: true, readOnlyRootFilesystem: true in security contextsSealedSecrets or external secret managers (Vault, AWS Secrets Manager) -- never plaintext secretsHorizontalPodAutoscaler with CPU/memory and custom metrics via Prometheus adapterVerticalPodAutoscaler for right-sizing requests in steady-state workloadsclusters/, apps/, infra/ for GitOps clarity; use app-of-apps pattern in ArgoCDKustomize overlays for environment-specific patches without duplicating base manifestsSource: calcosmic/Aether — distributed by TomeVault.