Production-grade platform engineering handbook — Kubernetes, Terraform, Flux CD, GitHub Actions, AWS, and more.
67
84%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
$ClaudeDir = Join-Path $env:USERPROFILE '.claude' $MemoryDir = Join-Path $ClaudeDir 'memory' $SessionMarker = Join-Path $MemoryDir '.session-active' $DATE = Get-Date -Format 'yyyy-MM-dd'
if (Test-Path $SessionMarker) { exit 0 }
New-Item -ItemType Directory -Force -Path $MemoryDir | Out-Null New-Item -ItemType File -Force -Path $SessionMarker | Out-Null
Write-Host "╔══════════════════════════════════════════════════════════╗" Write-Host "║ SESSION START — load memory before proceeding ║" Write-Host "╠══════════════════════════════════════════════════════════╣" Write-Host "║ Read these files now: ║" Write-Host "║ 1. ~/.claude/memory/working-buffer.md (active task) ║" Write-Host "║ 2. ~/.claude/memory/SESSION-STATE.md (preferences) ║"
$DailyNote = Join-Path $MemoryDir "$DATE.md" if (Test-Path $DailyNote) { Write-Host "║ 3. ~/.claude/memory/$DATE.md (today) ║" }
$BufferFile = Join-Path $MemoryDir 'working-buffer.md' if (Test-Path $BufferFile) { $Content = Get-Content $BufferFile -Raw -ErrorAction SilentlyContinue if ($Content -match '(?m)^## Current Task\r?\n(.+)') { $Task = $Matches[1].Trim() if ($Task -and $Task -notmatch 'No active task') { $Short = if ($Task.Length -gt 44) { $Task.Substring(0, 44) } else { $Task } Write-Host "║ ║" Write-Host ("║ Active task: {0,-44}║" -f $Short) } } }
$PendingLog = Join-Path $ClaudeDir '.learnings' '.pending-errors.log' if ((Test-Path $PendingLog) -and (Get-Item $PendingLog).Length -gt 0) { $ErrorCount = (Get-Content $PendingLog | Where-Object { $_ -ne '' }).Count Write-Host "║ ║" Write-Host ("║ {0,-56}║" -f "WARNING: $ErrorCount unprocessed error(s) in .pending-errors.log") }
Write-Host "╚══════════════════════════════════════════════════════════╝"
.claude-plugin
.github
commands
docs
examples
agent-self-improve
argocd
awesome-docs
aws
cloudfront
functions
lambda-edge
functions
azure
compliance
conventional-commits
datadog
llm-observability
demo
documentation
dora
dynatrace
fluxcd
github-actions
composite-actions
configure-cloud
db-migrate
docker-build-push
k8s-deploy
notify-slack
pr-comment
release-tag
security-scan
setup-env
setup-terraform
terraform-plan
helm
web-service
templates
kubernetes
kyverno
mcp
observability
openshift
pr-review
ownership
runtime-security
supply-chain
terraform
references
scripts
skills
platform-skills
tests