mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-06 05:49:12 +02:00
* 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>
12 lines
435 B
Go
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,
|
|
}
|