최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 deploy 와 release 를 매 분리하는 runtime conditional". Pete Hodgson 의 매 4-axis taxonomy (release/experiment/ops/permission) 가 매 baseline. 매 modern stack — OpenFeature spec + provider (LaunchDarkly, Unleash, ConfigCat, Statsig) — 매 progressive delivery, A/B test, kill switch 의 매 통합 layer.
매 핵심
매 4 종류 (Hodgson)
Release toggle: dark launch, gradual rollout (short-lived).
import"hash/fnv"funcrollout(flagKey,userIDstring,percentint)bool{h:=fnv.New32a()h.Write([]byte(flagKey+":"+userID))returnint(h.Sum32()%100)<percent}// Same user → same bucket across calls (sticky).
Kill switch (ops toggle)
asyncfunctionfetchRecommendations(userId: string){if(awaitflags.getBooleanValue('reco-kill-switch',false)){return[];// disable the feature instantly during incident
}returnrecoService.fetch(userId);}