This skill provides Helm chart development and maintenance patterns.
Provides Helm chart development patterns and dependency management rules. Activates when working with Chart.yaml, values files, or deploying with Helm. Enforces using `helm dependency update` (not build) and running `make check-deps` before commits.
/plugin marketplace add colek42/claude-plugins/plugin install nk-devops-tools@nkennedy-personalThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill provides Helm chart development and maintenance patterns.
Activates when:
Always use helm dependency update - NOT helm dependency build
# Correct
helm dependency update
# Wrong - Don't use this
helm dependency build
After changing Chart.yaml dependencies:
helm dependency update to fetch updated dependenciesmake check-deps before committing changes# 1. Modify Chart.yaml
vim Chart.yaml
# 2. Update dependencies
helm dependency update
# 3. Check dependencies
make check-deps
# 4. Commit changes (pre-commit hook runs automatically)
git add Chart.yaml Chart.lock charts/
git commit -m "update helm dependencies"
# Template and check output
helm template <release-name> <chart-path>
# Template with specific values
helm template <release-name> <chart-path> -f values.yaml
# Dry-run install
helm install <release-name> <chart-path> --dry-run --debug
# Check current values
helm get values <release-name>
# Check all computed values
helm get values <release-name> --all
# Get manifest
helm get manifest <release-name>
_helpers.tpl) for repeated logicvalues.yaml with comments.Values consistentlyChart.lock in version controlmake check-deps before committing❌ Don't:
helm dependency build (use update instead)make check-deps before committing✅ Do:
helm dependency update for dependency changesmake check-deps as part of your workflowApplies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.