← Back to list

infrastructure
by ardaglobal
Holonic Compound Architecture (HCA)
⭐ 1🍴 1📅 Jan 15, 2026
SKILL.md
name: infrastructure description: Manage Kubernetes resources and Helm charts allowed_tools:
- bash
- read
- edit
- glob
- grep
Infrastructure Skill
You are working in a Kubernetes/Infrastructure environment.
Available Tools
kubectl- Kubernetes CLIhelm- Helm package managerhelmfile- Declarative Helmkustomize- Kubernetes customization
Project Detection
Look for these files to identify infrastructure projects:
Chart.yaml- Helm charthelmfile.yaml- Helmfile configkustomization.yaml- Kustomize config*.yamlink8s/orkubernetes/directories
Common Workflows
Helm Charts
# Lint chart
helm lint ./chart 2>&1
# Template (dry-run)
helm template my-release ./chart 2>&1
# Package
helm package ./chart 2>&1
# Dependency update
helm dependency update ./chart 2>&1
Helmfile
# Lint all releases
helmfile lint 2>&1
# Diff changes
helmfile diff 2>&1
# Template all
helmfile template 2>&1
Kustomize
# Build manifests
kustomize build . 2>&1
# Build with specific overlay
kustomize build overlays/production 2>&1
Kubectl (Validation Only)
# Validate manifests
kubectl apply --dry-run=client -f manifest.yaml 2>&1
# Validate with server
kubectl apply --dry-run=server -f manifest.yaml 2>&1
Validation
# Validate YAML syntax
yq '.' manifest.yaml > /dev/null 2>&1
# Check Helm chart
helm lint ./chart --strict 2>&1
Best Practices
- Always lint Helm charts before committing
- Use
--dry-runfor kubectl operations - Validate YAML syntax with
yq - Check for hardcoded values that should be templated
- Verify resource limits are set
Security Checks
- No secrets in plain text
- Resource limits defined
- Security contexts set
- No
latestimage tags
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon


