一键导入
helm-values
Update Helm chart values, bump versions, validate templates, or compare staging vs production config. Use when modifying deployment configuration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update Helm chart values, bump versions, validate templates, or compare staging vs production config. Use when modifying deployment configuration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a broadcast notification system that sends notifications and messages to eligible users based on entity-specific criteria. Use when adding a new entity type that needs to notify users when records are created, updated, or published.
Guide for building non-CRUD pages with consistent design. Use when creating portal pages, custom views, detail modals, sidebar widgets, notification drawers, or any page that is not a standard CRUD table. Covers fullscreen modals, minimal text patterns, calendar widgets, doorbell notifications, optimistic updates, and CrudPage read-only integration.
Guide for building dashboards, charts, KPI cards, and data visualizations. Use when creating dashboard pages, adding charts to features, building stat displays, aggregating data for visual presentation, or implementing export (CSV/PNG/fullscreen) for charts. Based on the Books dashboard implementation using Recharts and shadcn/ui chart components.
Deploy the application to staging or production. Validates, builds, pushes Docker image, deploys via Helm, and runs smoke tests.
Run a comprehensive E2E browser test suite for a newly scaffolded Goravel entity. Tests navigation, CRUD operations, search, filters, row actions, form validation, FK dropdowns, and cross-entity integration using Playwright MCP.
Create a Go database seeder for a Goravel entity with 25+ realistic records. Covers all status/enum values, diverse data for sorting/pagination testing, and proper nullable field handling.
| name | helm-values |
| description | Update Helm chart values, bump versions, validate templates, or compare staging vs production config. Use when modifying deployment configuration. |
| argument-hint | <bump-version|validate|diff|update> [args...] |
| disable-model-invocation | true |
| allowed-tools | Read, Edit, Write, Bash, Grep, Glob |
Action: $ARGUMENTS
Parse the arguments:
bump-version [major|minor|patch] - Bump the app versionvalidate [staging|production|all] - Lint and render templatesdiff - Compare staging vs production valuesupdate <key> <value> [staging|production] - Update a Helm valueThe chart is at helm/goravel-blog/.
bump-versionpackage.jsonpatch):
package.json version fieldhelm/goravel-blog/Chart.yaml appVersion to matchvalidateFor the target environment (default: all):
Lint the chart:
helm lint helm/goravel-blog -f helm/goravel-blog/values.<env>.yaml
Render templates and check for issues:
helm template goravel-blog helm/goravel-blog -f helm/goravel-blog/values.<env>.yaml > /tmp/rendered-<env>.yaml
Validate rendered YAML (check for empty values, missing secrets, resource limits):
Report findings as a checklist:
diffCompare staging and production configurations side-by-side:
values.staging.yaml and values.production.yaml| Setting | Staging | Production |
|---|---|---|
| replicas | 1 | 3 |
| resources.limits.cpu | 500m | 1000m |
| resources.limits.memory | 512Mi | 1Gi |
| autoscaling.enabled | false | true |
| debug | true | false |
| ... | ... | ... |
updateUpdate a specific value in a values file:
update <dotted.key.path> <value> [environment]
Example: /helm-values update replicas 3 production
For all operations:
values.yaml (base defaults) without explicit confirmation