Files
multica/server/internal/featureflagdispatch/registry.go
Multica Eve 1ac3a03e5d MUL-3618: dispatch daemon feature flag snapshots (#4509)
* MUL-3618: dispatch daemon feature flag snapshots

Co-authored-by: multica-agent <github@multica.ai>

* MUL-3618: narrow daemon flag snapshots to process scope

Co-authored-by: multica-agent <github@multica.ai>

---------

Co-authored-by: Eve <eve@multica-ai.local>
Co-authored-by: multica-agent <github@multica.ai>
2026-06-24 16:19:30 +08:00

12 lines
435 B
Go

package featureflagdispatch
// RuntimeBriefSlimFlag is the daemon-bound flag that switches runtime brief
// rendering between the legacy verbose prompt and the slim prompt.
const RuntimeBriefSlimFlag = "runtime_brief_slim"
// DaemonBoundFlags lists every feature flag whose evaluated decision is safe
// and useful to send to daemons. Flags not listed here stay server-only.
var DaemonBoundFlags = []string{
RuntimeBriefSlimFlag,
}