@agent-native/core 0.107.1 → 0.108.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +12 -0
  3. package/corpus/core/docs/content/actions.mdx +48 -0
  4. package/corpus/core/docs/content/locales/ar-SA/actions.mdx +38 -0
  5. package/corpus/core/docs/content/locales/de-DE/actions.mdx +38 -0
  6. package/corpus/core/docs/content/locales/es-ES/actions.mdx +38 -0
  7. package/corpus/core/docs/content/locales/fr-FR/actions.mdx +38 -0
  8. package/corpus/core/docs/content/locales/hi-IN/actions.mdx +38 -0
  9. package/corpus/core/docs/content/locales/ja-JP/actions.mdx +38 -0
  10. package/corpus/core/docs/content/locales/ko-KR/actions.mdx +38 -0
  11. package/corpus/core/docs/content/locales/pt-BR/actions.mdx +38 -0
  12. package/corpus/core/docs/content/locales/zh-CN/actions.mdx +38 -0
  13. package/corpus/core/docs/content/locales/zh-TW/actions.mdx +38 -0
  14. package/corpus/core/package.json +5 -1
  15. package/corpus/core/src/a2a/artifact-response.ts +32 -10
  16. package/corpus/core/src/a2a-claims.ts +52 -0
  17. package/corpus/core/src/action.ts +6 -2
  18. package/corpus/core/src/audit/record.ts +6 -0
  19. package/corpus/core/src/client/feature-flags/FeatureFlagsPanel.tsx +519 -0
  20. package/corpus/core/src/client/feature-flags/helpers.ts +77 -0
  21. package/corpus/core/src/client/feature-flags/index.ts +13 -0
  22. package/corpus/core/src/client/feature-flags/types.ts +29 -0
  23. package/corpus/core/src/client/feature-flags/use-feature-flag.ts +26 -0
  24. package/corpus/core/src/client/index.ts +11 -0
  25. package/corpus/core/src/extensions/routes.ts +1 -1
  26. package/corpus/core/src/feature-flags/a2a-action-route.ts +56 -0
  27. package/corpus/core/src/feature-flags/actions/get-feature-flags.ts +24 -0
  28. package/corpus/core/src/feature-flags/actions/list-feature-flags.ts +69 -0
  29. package/corpus/core/src/feature-flags/actions/set-feature-flag.ts +89 -0
  30. package/corpus/core/src/feature-flags/index.ts +21 -0
  31. package/corpus/core/src/feature-flags/permissions.ts +53 -0
  32. package/corpus/core/src/feature-flags/plugin.ts +44 -0
  33. package/corpus/core/src/feature-flags/registry.ts +96 -0
  34. package/corpus/core/src/feature-flags/store.ts +176 -0
  35. package/corpus/core/src/index.ts +15 -0
  36. package/corpus/core/src/integrations/a2a-continuation-processor.ts +107 -3
  37. package/corpus/core/src/integrations/pending-tasks-store.ts +98 -1
  38. package/corpus/core/src/integrations/plugin.ts +129 -4
  39. package/corpus/core/src/integrations/webhook-handler.ts +339 -36
  40. package/corpus/core/src/localization/default-messages.ts +47 -0
  41. package/corpus/core/src/server/action-discovery.ts +12 -0
  42. package/corpus/core/src/server/action-routes.ts +47 -5
  43. package/corpus/core/src/server/agent-chat-plugin.ts +93 -8
  44. package/corpus/core/src/server/index.ts +1 -0
  45. package/corpus/core/src/settings/org-settings.ts +13 -0
  46. package/corpus/core/src/settings/store.ts +57 -0
  47. package/corpus/core/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  48. package/corpus/core/src/templates/default/AGENTS.md +1 -0
  49. package/corpus/core/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  50. package/corpus/core/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  51. package/corpus/core/src/templates/workspace-core/AGENTS.md +1 -1
  52. package/corpus/core/src/templates/workspace-root/AGENTS.md +1 -1
  53. package/corpus/core/src/vite/action-types-plugin.ts +12 -0
  54. package/corpus/templates/analytics/.agents/skills/feature-flags/SKILL.md +169 -0
  55. package/corpus/templates/analytics/AGENTS.md +15 -3
  56. package/corpus/templates/analytics/actions/list-workspace-feature-flags.ts +15 -0
  57. package/corpus/templates/analytics/actions/navigate.ts +2 -2
  58. package/corpus/templates/analytics/actions/set-workspace-feature-flag.ts +45 -0
  59. package/corpus/templates/analytics/actions/view-screen.ts +13 -0
  60. package/corpus/templates/analytics/app/components/agents/FeatureFlagsFleetPanel.tsx +243 -0
  61. package/corpus/templates/analytics/app/components/layout/CommandPalette.tsx +11 -3
  62. package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +3 -1
  63. package/corpus/templates/analytics/app/i18n/zh-TW.ts +17 -0
  64. package/corpus/templates/analytics/app/i18n-data.ts +251 -0
  65. package/corpus/templates/analytics/app/pages/Agents.tsx +22 -2
  66. package/corpus/templates/analytics/changelog/2026-07-17-manage-feature-flag-rollouts-across-your-organization-s-apps.md +6 -0
  67. package/corpus/templates/analytics/server/lib/db-admin-connections.ts +13 -5
  68. package/corpus/templates/analytics/server/lib/workspace-feature-flags.ts +347 -0
  69. package/corpus/templates/assets/.agents/skills/feature-flags/SKILL.md +169 -0
  70. package/corpus/templates/brain/.agents/skills/feature-flags/SKILL.md +169 -0
  71. package/corpus/templates/calendar/.agents/skills/feature-flags/SKILL.md +169 -0
  72. package/corpus/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  73. package/corpus/templates/clips/.agents/skills/feature-flags/SKILL.md +169 -0
  74. package/corpus/templates/clips/server/plugins/feature-flags.ts +11 -0
  75. package/corpus/templates/clips/shared/feature-flags.ts +30 -37
  76. package/corpus/templates/content/.agents/skills/feature-flags/SKILL.md +169 -0
  77. package/corpus/templates/design/.agents/skills/feature-flags/SKILL.md +169 -0
  78. package/corpus/templates/design/AGENTS.md +5 -3
  79. package/corpus/templates/design/actions/add-fusion-screens.ts +4 -6
  80. package/corpus/templates/design/actions/apply-fusion-edits.ts +4 -6
  81. package/corpus/templates/design/actions/create-fusion-app.ts +5 -4
  82. package/corpus/templates/design/actions/deploy-fusion-app.ts +4 -3
  83. package/corpus/templates/design/actions/get-fusion-deploy-status.ts +4 -6
  84. package/corpus/templates/design/actions/list-fusion-edits.ts +4 -3
  85. package/corpus/templates/design/actions/push-fusion-app.ts +4 -6
  86. package/corpus/templates/design/actions/queue-fusion-edit.ts +4 -3
  87. package/corpus/templates/design/actions/send-fusion-message.ts +4 -6
  88. package/corpus/templates/design/actions/sync-fusion-app.ts +4 -3
  89. package/corpus/templates/design/app/components/editor/PromptDialog.tsx +1 -1
  90. package/corpus/templates/design/app/pages/Index.tsx +8 -6
  91. package/corpus/templates/design/server/plugins/feature-flags.ts +5 -0
  92. package/corpus/templates/design/shared/full-app.ts +10 -7
  93. package/corpus/templates/dispatch/.agents/skills/feature-flags/SKILL.md +169 -0
  94. package/corpus/templates/forms/.agents/skills/feature-flags/SKILL.md +169 -0
  95. package/corpus/templates/macros/.agents/skills/feature-flags/SKILL.md +169 -0
  96. package/corpus/templates/mail/.agents/skills/feature-flags/SKILL.md +169 -0
  97. package/corpus/templates/plan/.agents/skills/feature-flags/SKILL.md +169 -0
  98. package/corpus/templates/slides/.agents/skills/feature-flags/SKILL.md +169 -0
  99. package/corpus/templates/tasks/.agents/skills/feature-flags/SKILL.md +169 -0
  100. package/dist/a2a/artifact-response.d.ts +5 -1
  101. package/dist/a2a/artifact-response.d.ts.map +1 -1
  102. package/dist/a2a/artifact-response.js +18 -12
  103. package/dist/a2a/artifact-response.js.map +1 -1
  104. package/dist/a2a-claims.d.ts +10 -0
  105. package/dist/a2a-claims.d.ts.map +1 -0
  106. package/dist/a2a-claims.js +41 -0
  107. package/dist/a2a-claims.js.map +1 -0
  108. package/dist/action.d.ts +6 -2
  109. package/dist/action.d.ts.map +1 -1
  110. package/dist/action.js.map +1 -1
  111. package/dist/audit/record.d.ts +3 -0
  112. package/dist/audit/record.d.ts.map +1 -1
  113. package/dist/audit/record.js +3 -0
  114. package/dist/audit/record.js.map +1 -1
  115. package/dist/client/feature-flags/FeatureFlagsPanel.d.ts +10 -0
  116. package/dist/client/feature-flags/FeatureFlagsPanel.d.ts.map +1 -0
  117. package/dist/client/feature-flags/FeatureFlagsPanel.js +143 -0
  118. package/dist/client/feature-flags/FeatureFlagsPanel.js.map +1 -0
  119. package/dist/client/feature-flags/helpers.d.ts +16 -0
  120. package/dist/client/feature-flags/helpers.d.ts.map +1 -0
  121. package/dist/client/feature-flags/helpers.js +50 -0
  122. package/dist/client/feature-flags/helpers.js.map +1 -0
  123. package/dist/client/feature-flags/index.d.ts +5 -0
  124. package/dist/client/feature-flags/index.d.ts.map +1 -0
  125. package/dist/client/feature-flags/index.js +4 -0
  126. package/dist/client/feature-flags/index.js.map +1 -0
  127. package/dist/client/feature-flags/types.d.ts +27 -0
  128. package/dist/client/feature-flags/types.d.ts.map +1 -0
  129. package/dist/client/feature-flags/types.js +2 -0
  130. package/dist/client/feature-flags/types.js.map +1 -0
  131. package/dist/client/feature-flags/use-feature-flag.d.ts +8 -0
  132. package/dist/client/feature-flags/use-feature-flag.d.ts.map +1 -0
  133. package/dist/client/feature-flags/use-feature-flag.js +15 -0
  134. package/dist/client/feature-flags/use-feature-flag.js.map +1 -0
  135. package/dist/client/index.d.ts +1 -0
  136. package/dist/client/index.d.ts.map +1 -1
  137. package/dist/client/index.js +1 -0
  138. package/dist/client/index.js.map +1 -1
  139. package/dist/collab/routes.d.ts +1 -1
  140. package/dist/collab/struct-routes.d.ts +1 -1
  141. package/dist/extensions/routes.d.ts.map +1 -1
  142. package/dist/extensions/routes.js +1 -1
  143. package/dist/extensions/routes.js.map +1 -1
  144. package/dist/feature-flags/a2a-action-route.d.ts +14 -0
  145. package/dist/feature-flags/a2a-action-route.d.ts.map +1 -0
  146. package/dist/feature-flags/a2a-action-route.js +50 -0
  147. package/dist/feature-flags/a2a-action-route.js.map +1 -0
  148. package/dist/feature-flags/actions/get-feature-flags.d.ts +3 -0
  149. package/dist/feature-flags/actions/get-feature-flags.d.ts.map +1 -0
  150. package/dist/feature-flags/actions/get-feature-flags.js +18 -0
  151. package/dist/feature-flags/actions/get-feature-flags.js.map +1 -0
  152. package/dist/feature-flags/actions/list-feature-flags.d.ts +28 -0
  153. package/dist/feature-flags/actions/list-feature-flags.d.ts.map +1 -0
  154. package/dist/feature-flags/actions/list-feature-flags.js +60 -0
  155. package/dist/feature-flags/actions/list-feature-flags.js.map +1 -0
  156. package/dist/feature-flags/actions/set-feature-flag.d.ts +26 -0
  157. package/dist/feature-flags/actions/set-feature-flag.d.ts.map +1 -0
  158. package/dist/feature-flags/actions/set-feature-flag.js +78 -0
  159. package/dist/feature-flags/actions/set-feature-flag.js.map +1 -0
  160. package/dist/feature-flags/index.d.ts +5 -0
  161. package/dist/feature-flags/index.d.ts.map +1 -0
  162. package/dist/feature-flags/index.js +5 -0
  163. package/dist/feature-flags/index.js.map +1 -0
  164. package/dist/feature-flags/permissions.d.ts +13 -0
  165. package/dist/feature-flags/permissions.d.ts.map +1 -0
  166. package/dist/feature-flags/permissions.js +37 -0
  167. package/dist/feature-flags/permissions.js.map +1 -0
  168. package/dist/feature-flags/plugin.d.ts +17 -0
  169. package/dist/feature-flags/plugin.d.ts.map +1 -0
  170. package/dist/feature-flags/plugin.js +29 -0
  171. package/dist/feature-flags/plugin.js.map +1 -0
  172. package/dist/feature-flags/registry.d.ts +23 -0
  173. package/dist/feature-flags/registry.d.ts.map +1 -0
  174. package/dist/feature-flags/registry.js +59 -0
  175. package/dist/feature-flags/registry.js.map +1 -0
  176. package/dist/feature-flags/store.d.ts +31 -0
  177. package/dist/feature-flags/store.d.ts.map +1 -0
  178. package/dist/feature-flags/store.js +124 -0
  179. package/dist/feature-flags/store.js.map +1 -0
  180. package/dist/index.d.ts +1 -0
  181. package/dist/index.d.ts.map +1 -1
  182. package/dist/index.js +1 -0
  183. package/dist/index.js.map +1 -1
  184. package/dist/integrations/a2a-continuation-processor.js +62 -5
  185. package/dist/integrations/a2a-continuation-processor.js.map +1 -1
  186. package/dist/integrations/pending-tasks-store.d.ts +3 -0
  187. package/dist/integrations/pending-tasks-store.d.ts.map +1 -1
  188. package/dist/integrations/pending-tasks-store.js +75 -1
  189. package/dist/integrations/pending-tasks-store.js.map +1 -1
  190. package/dist/integrations/plugin.d.ts.map +1 -1
  191. package/dist/integrations/plugin.js +81 -5
  192. package/dist/integrations/plugin.js.map +1 -1
  193. package/dist/integrations/webhook-handler.d.ts +23 -2
  194. package/dist/integrations/webhook-handler.d.ts.map +1 -1
  195. package/dist/integrations/webhook-handler.js +257 -35
  196. package/dist/integrations/webhook-handler.js.map +1 -1
  197. package/dist/localization/default-messages.d.ts +42 -0
  198. package/dist/localization/default-messages.d.ts.map +1 -1
  199. package/dist/localization/default-messages.js +42 -0
  200. package/dist/localization/default-messages.js.map +1 -1
  201. package/dist/notifications/routes.d.ts +2 -2
  202. package/dist/observability/routes.d.ts +1 -1
  203. package/dist/progress/routes.d.ts +1 -1
  204. package/dist/server/action-discovery.d.ts.map +1 -1
  205. package/dist/server/action-discovery.js +12 -0
  206. package/dist/server/action-discovery.js.map +1 -1
  207. package/dist/server/action-routes.d.ts +3 -0
  208. package/dist/server/action-routes.d.ts.map +1 -1
  209. package/dist/server/action-routes.js +45 -5
  210. package/dist/server/action-routes.js.map +1 -1
  211. package/dist/server/agent-chat-plugin.d.ts +6 -0
  212. package/dist/server/agent-chat-plugin.d.ts.map +1 -1
  213. package/dist/server/agent-chat-plugin.js +71 -6
  214. package/dist/server/agent-chat-plugin.js.map +1 -1
  215. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  216. package/dist/server/index.d.ts +1 -0
  217. package/dist/server/index.d.ts.map +1 -1
  218. package/dist/server/index.js +1 -0
  219. package/dist/server/index.js.map +1 -1
  220. package/dist/settings/org-settings.d.ts +2 -0
  221. package/dist/settings/org-settings.d.ts.map +1 -1
  222. package/dist/settings/org-settings.js +5 -1
  223. package/dist/settings/org-settings.js.map +1 -1
  224. package/dist/settings/store.d.ts +8 -0
  225. package/dist/settings/store.d.ts.map +1 -1
  226. package/dist/settings/store.js +48 -0
  227. package/dist/settings/store.js.map +1 -1
  228. package/dist/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  229. package/dist/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  230. package/dist/templates/default/AGENTS.md +1 -0
  231. package/dist/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  232. package/dist/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  233. package/dist/templates/workspace-core/AGENTS.md +1 -1
  234. package/dist/templates/workspace-root/AGENTS.md +1 -1
  235. package/dist/vite/action-types-plugin.d.ts.map +1 -1
  236. package/dist/vite/action-types-plugin.js +12 -0
  237. package/dist/vite/action-types-plugin.js.map +1 -1
  238. package/docs/content/actions.mdx +48 -0
  239. package/docs/content/locales/ar-SA/actions.mdx +38 -0
  240. package/docs/content/locales/de-DE/actions.mdx +38 -0
  241. package/docs/content/locales/es-ES/actions.mdx +38 -0
  242. package/docs/content/locales/fr-FR/actions.mdx +38 -0
  243. package/docs/content/locales/hi-IN/actions.mdx +38 -0
  244. package/docs/content/locales/ja-JP/actions.mdx +38 -0
  245. package/docs/content/locales/ko-KR/actions.mdx +38 -0
  246. package/docs/content/locales/pt-BR/actions.mdx +38 -0
  247. package/docs/content/locales/zh-CN/actions.mdx +38 -0
  248. package/docs/content/locales/zh-TW/actions.mdx +38 -0
  249. package/package.json +5 -1
  250. package/src/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  251. package/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  252. package/src/templates/default/AGENTS.md +1 -0
  253. package/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  254. package/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  255. package/src/templates/workspace-core/AGENTS.md +1 -1
  256. package/src/templates/workspace-root/AGENTS.md +1 -1
  257. package/corpus/templates/clips/actions/get-feature-flags.ts +0 -30
@@ -11,6 +11,7 @@
11
11
  */
12
12
 
13
13
  import { defineAction } from "@agent-native/core";
14
+ import { isFeatureFlagEnabled } from "@agent-native/core/feature-flags";
14
15
  import { sendFusionBranchMessage } from "@agent-native/core/server";
15
16
  import { getRequestUserEmail } from "@agent-native/core/server/request-context";
16
17
  import { assertAccess } from "@agent-native/core/sharing";
@@ -18,10 +19,7 @@ import { z } from "zod";
18
19
 
19
20
  import { schema } from "../server/db/index.js";
20
21
  import "../server/db/index.js"; // ensure registerShareableResource runs
21
- import {
22
- FULL_APP_BUILDING_ENABLED,
23
- readFusionApp,
24
- } from "../shared/full-app.js";
22
+ import { FULL_APP_BUILDING, readFusionApp } from "../shared/full-app.js";
25
23
 
26
24
  export default defineAction({
27
25
  description:
@@ -38,8 +36,8 @@ export default defineAction({
38
36
  .min(1)
39
37
  .describe("The message to send to the app's coding agent."),
40
38
  }),
41
- run: async ({ designId, prompt }) => {
42
- if (!FULL_APP_BUILDING_ENABLED) {
39
+ run: async ({ designId, prompt }, ctx) => {
40
+ if (!(await isFeatureFlagEnabled(FULL_APP_BUILDING, ctx))) {
43
41
  throw new Error("Full app building is not enabled");
44
42
  }
45
43
 
@@ -10,6 +10,7 @@
10
10
  */
11
11
 
12
12
  import { defineAction } from "@agent-native/core";
13
+ import { isFeatureFlagEnabled } from "@agent-native/core/feature-flags";
13
14
  import { ensureFusionContainer } from "@agent-native/core/server";
14
15
  import { assertAccess } from "@agent-native/core/sharing";
15
16
  import { and, count, eq } from "drizzle-orm";
@@ -24,7 +25,7 @@ import {
24
25
  upsertFusionScreens,
25
26
  } from "../server/lib/fusion-screens.js";
26
27
  import {
27
- FULL_APP_BUILDING_ENABLED,
28
+ FULL_APP_BUILDING,
28
29
  parseDesignDataBlob,
29
30
  readFusionApp,
30
31
  writeFusionApp,
@@ -70,8 +71,8 @@ export default defineAction({
70
71
  "Defaults to the design's existing fusion screen paths, or ['/'] if none exist.",
71
72
  ),
72
73
  }),
73
- run: async ({ designId, paths }) => {
74
- if (!FULL_APP_BUILDING_ENABLED) {
74
+ run: async ({ designId, paths }, ctx) => {
75
+ if (!(await isFeatureFlagEnabled(FULL_APP_BUILDING, ctx))) {
75
76
  throw new Error("Full app building is not enabled");
76
77
  }
77
78
 
@@ -1182,7 +1182,7 @@ function PromptAttachmentMenu({
1182
1182
  /**
1183
1183
  * Compact segmented "Design" / "Full app" pill selector shown in the new-design
1184
1184
  * popover title row. Only rendered by the caller when full-app building is
1185
- * flag-enabled (see FULL_APP_BUILDING_ENABLED in shared/full-app.ts) — when
1185
+ * flag-enabled by the Design page — when
1186
1186
  * absent the popover renders with no mode control at all.
1187
1187
  */
1188
1188
  function CreationModeToggle({
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  useActionQuery,
3
3
  useActionMutation,
4
+ useFeatureFlag,
4
5
  useT,
5
6
  } from "@agent-native/core/client";
6
7
  import type { PromptComposerSubmitOptions } from "@agent-native/core/client";
@@ -13,7 +14,7 @@ import {
13
14
  useSetHeaderActions,
14
15
  useSetPageTitle,
15
16
  } from "@agent-native/toolkit/app-shell";
16
- import { FULL_APP_BUILDING_ENABLED } from "@shared/full-app";
17
+ import { FULL_APP_BUILDING } from "@shared/full-app";
17
18
  import { derivePromptTitle } from "@shared/prompt-title";
18
19
  import {
19
20
  IconChecks,
@@ -96,13 +97,14 @@ export default function Index() {
96
97
  () => new Set(),
97
98
  );
98
99
  const [showNewPrompt, setShowNewPrompt] = useState(false);
100
+ const fullAppBuildingEnabled = useFeatureFlag(FULL_APP_BUILDING.key);
99
101
  const [newDesignHandoffPending, setNewDesignHandoffPending] = useState(false);
100
102
  const [newDesignSystemId, setNewDesignSystemId] = useState<
101
103
  string | null | undefined
102
104
  >(undefined);
103
105
  const [newTemplateId, setNewTemplateId] = useState<string | null>(null);
104
106
  // "Design" (default, inline prototype) vs "Full app" (Builder Fusion
105
- // cloud container). Only reachable behind FULL_APP_BUILDING_ENABLED — the
107
+ // cloud container). Only reachable behind the full-app-building flag — the
106
108
  // popover renders no mode control at all when the flag is off, so this
107
109
  // state is always "design" in that case.
108
110
  const [newDesignMode, setNewDesignMode] = useState<"design" | "app">(
@@ -136,7 +138,7 @@ export default function Index() {
136
138
  "create-design-from-template",
137
139
  );
138
140
  // Fires the fusion-backed cloud container build; only ever called when
139
- // FULL_APP_BUILDING_ENABLED is true and the user picked "Full app".
141
+ // runtime flag is true and the user picked "Full app".
140
142
  const createFusionAppMutation = useActionMutation("create-fusion-app");
141
143
  const deleteMutation = useActionMutation("delete-design");
142
144
  const duplicateMutation = useActionMutation("duplicate-design");
@@ -482,7 +484,7 @@ export default function Index() {
482
484
  const { id, title, ready } = createDesign(derivedTitle, designSystemId);
483
485
  handleGenerateDesignTitle(id, prompt, title);
484
486
 
485
- if (FULL_APP_BUILDING_ENABLED && newDesignMode === "app") {
487
+ if (fullAppBuildingEnabled && newDesignMode === "app") {
486
488
  // Full-app designs are backed by a real running container, not a
487
489
  // queued inline generation — skip writePendingGeneration and let the
488
490
  // fusion app mutation (and its own status/progress banner in the
@@ -1030,9 +1032,9 @@ export default function Index() {
1030
1032
  handleNewPromptOpenChange(false);
1031
1033
  navigate("/design-systems/setup");
1032
1034
  }}
1033
- creationMode={FULL_APP_BUILDING_ENABLED ? newDesignMode : undefined}
1035
+ creationMode={fullAppBuildingEnabled ? newDesignMode : undefined}
1034
1036
  onCreationModeChange={
1035
- FULL_APP_BUILDING_ENABLED ? setNewDesignMode : undefined
1037
+ fullAppBuildingEnabled ? setNewDesignMode : undefined
1036
1038
  }
1037
1039
  />
1038
1040
 
@@ -0,0 +1,5 @@
1
+ import { createFeatureFlagsPlugin } from "@agent-native/core/server";
2
+
3
+ import { FULL_APP_BUILDING } from "../../shared/full-app.js";
4
+
5
+ export default createFeatureFlagsPlugin({ flags: [FULL_APP_BUILDING] });
@@ -13,16 +13,19 @@
13
13
  * a design as app-backed.
14
14
  */
15
15
 
16
+ import { defineFeatureFlag } from "@agent-native/core/feature-flags";
17
+
16
18
  /**
17
- * Master switch for full app building in the Design app.
18
- *
19
- * Deliberately a plain code boolean for now: flip to `true` to expose the
20
- * "Full app" creation option and enable the fusion app actions. Builder
19
+ * Runtime rollout for full app building in the Design app. Builder
21
20
  * credentials plus a branch project id (DISPATCH_BUILDER_PROJECT_ID /
22
- * BUILDER_BRANCH_PROJECT_ID / BUILDER_PROJECT_ID) are still required at
23
- * runtime without them the actions return the standard connect CTA.
21
+ * BUILDER_BRANCH_PROJECT_ID / BUILDER_PROJECT_ID) remain separate setup
22
+ * requirements; without them the actions return the standard connect CTA.
24
23
  */
25
- export const FULL_APP_BUILDING_ENABLED = false;
24
+ export const FULL_APP_BUILDING = defineFeatureFlag({
25
+ key: "full-app-building",
26
+ displayName: "Full app building",
27
+ description: "Create and edit Builder Fusion-backed applications.",
28
+ });
26
29
 
27
30
  export type DesignFusionAppStatus = "building" | "ready" | "error";
28
31
 
@@ -0,0 +1,169 @@
1
+ ---
2
+ name: feature-flags
3
+ description: >-
4
+ Declare, evaluate, manage, and remove framework feature flags. Use when
5
+ shipping a capability gradually, targeting users or organizations, or
6
+ replacing a compile-time rollout switch with a production-safe runtime flag.
7
+ scope: dev
8
+ metadata:
9
+ internal: true
10
+ ---
11
+
12
+ # Feature Flags
13
+
14
+ A feature flag is a boolean declared in app code, evaluated locally by Core,
15
+ and managed from the Analytics fleet control plane. Code owns whether a flag
16
+ exists. Runtime settings own only its rollout state.
17
+
18
+ Flags let an app deploy dormant code and turn it on in the real environment
19
+ without another deployment. They are not experiments: do not add variants,
20
+ hypotheses, conversion metrics, exposure tracking, or lifecycle states.
21
+
22
+ ## When to use one
23
+
24
+ Use a flag for a reversible rollout of a user-facing capability whose dormant
25
+ code is safe to deploy. Flags are useful for production dogfooding, exact-user
26
+ or organization pilots, and deterministic percentage rollouts.
27
+
28
+ Do not use a flag for authentication, authorization, secrets, audit enablement,
29
+ SSR cache behavior, or another security boundary. Client hiding is presentation
30
+ only; every guarded server action must evaluate the same registered flag.
31
+
32
+ ## Agent workflow
33
+
34
+ ### 1. Declare
35
+
36
+ Keep definitions in a shared TypeScript module so server and client code use the
37
+ same stable key. Flags are boolean and default-off.
38
+
39
+ ```ts
40
+ import { defineFeatureFlag } from "@agent-native/core/feature-flags";
41
+
42
+ export const FULL_APP_BUILDING = defineFeatureFlag({
43
+ key: "full-app-building",
44
+ displayName: "Full app building",
45
+ description: "Create and edit Fusion-backed applications.",
46
+ });
47
+ ```
48
+
49
+ Keys are immutable, never reused, and contain only letters, numbers, dots,
50
+ underscores, or hyphens. Prefer a concise app-owned name. Do not create flag
51
+ definitions or rollout rows from Analytics.
52
+
53
+ ### 2. Register
54
+
55
+ Register app definitions from a Nitro plugin before actions are discovered.
56
+ Do not add app-specific flags to a Core registry.
57
+
58
+ ```ts
59
+ import { createFeatureFlagsPlugin } from "@agent-native/core/server";
60
+
61
+ import { FULL_APP_BUILDING } from "../../shared/feature-flags.js";
62
+
63
+ export default createFeatureFlagsPlugin({ flags: [FULL_APP_BUILDING] });
64
+ ```
65
+
66
+ ### 3. Guard server and client
67
+
68
+ The server action is the enforcement boundary:
69
+
70
+ ```ts
71
+ import { isFeatureFlagEnabled } from "@agent-native/core/feature-flags";
72
+
73
+ run: async (args, ctx) => {
74
+ if (!(await isFeatureFlagEnabled(FULL_APP_BUILDING, ctx))) {
75
+ throw new Error("Full app building is not enabled for this account.");
76
+ }
77
+ // guarded operation
78
+ }
79
+ ```
80
+
81
+ Use the client hook only to hide or reveal hydrated UI:
82
+
83
+ ```tsx
84
+ import { useFeatureFlag } from "@agent-native/core/client";
85
+
86
+ const enabled = useFeatureFlag(FULL_APP_BUILDING.key);
87
+ return enabled ? <FullAppOption /> : null;
88
+ ```
89
+
90
+ The client hook intentionally returns false while loading or for an unknown
91
+ flag. Never replace that fail-closed behavior with app-local bucketing or a
92
+ compile-time fallback. Never evaluate personalized flags in the public SSR
93
+ shell; it is shared and cached for every visitor.
94
+
95
+ ### 4. Verify and roll out
96
+
97
+ 1. Verify the off path before changing rollout state.
98
+ 2. Confirm the registered flag appears in **Analytics → Feature flags** for the
99
+ app and is Off by default.
100
+ 3. Use **Enable for me** for initial production dogfood.
101
+ 4. Expand to exact emails, organization IDs, or a percentage only from
102
+ Analytics.
103
+ 5. Confirm the client presentation and authoritative server action agree.
104
+
105
+ ## Management contract
106
+
107
+ Core mounts three actions in registered apps:
108
+
109
+ | Action | Purpose |
110
+ | --- | --- |
111
+ | `get-feature-flags` | Return the current caller's evaluated boolean values. |
112
+ | `list-feature-flags` | Return definitions and rollout metadata to an authorized operator. |
113
+ | `set-feature-flag` | Atomically turn a flag off, enable it for the operator, or replace targeting rules. |
114
+
115
+ Analytics calls the app-local operator actions through narrowly scoped A2A
116
+ delegation. Tokens require an exact audience, organization, scope, operator
117
+ role, and audit correlation id. Management is permission-checked and audited
118
+ by the target app. Never manage flags through generic settings routes, raw SQL,
119
+ or per-app toggle UIs.
120
+
121
+ ## Rollout semantics
122
+
123
+ The operator modes are **Off**, **Targeted**, and **Everyone**. Core stores them
124
+ as `off`, `rules`, and `on`.
125
+
126
+ Targeted rules combine exact normalized emails, exact organization IDs, and a
127
+ percentage with OR semantics. Exact matches are checked first. Percentage
128
+ buckets use Core's stable hash of the flag key and authenticated user identity;
129
+ anonymous callers fail closed. Raising a percentage preserves the users already
130
+ included at a lower percentage. Do not implement bucketing in app code.
131
+
132
+ Unknown definitions, missing state, malformed state, storage errors, and
133
+ evaluation errors all return the code default (`false` in v1). Explicit Off
134
+ wins over every target; Everyone enables every authenticated caller.
135
+
136
+ ## Remove a flag
137
+
138
+ After a rollout is permanent:
139
+
140
+ 1. Replace guarded branches with the chosen behavior.
141
+ 2. Delete the server and client gates.
142
+ 3. Delete the definition and registration entry.
143
+ 4. Verify the flag disappears from the Analytics fleet.
144
+ 5. Remove stale tests and rollout instructions.
145
+
146
+ A permanent flag is just an if statement with a pension plan.
147
+
148
+ ## Verification checklist
149
+
150
+ - Unknown and unregistered keys evaluate false.
151
+ - UI hiding and server enforcement use the same registered key.
152
+ - Exact-user, organization, deterministic percentage, Everyone, and Off paths
153
+ have focused tests.
154
+ - Increasing a percentage is monotonic; anonymous percentage evaluation is off.
155
+ - Unauthorized callers cannot list targeting details or mutate flags.
156
+ - Mutations are atomic, read back stored state, emit refresh, and appear in the
157
+ audit log with the flag key.
158
+ - Analytics represents ready, no-definition, unsupported, forbidden, legacy,
159
+ and unreachable directory apps honestly.
160
+ - Future agents can find this skill from root `AGENTS.md`, and
161
+ `pnpm guard:workspace-skills` passes after syncing generated copies.
162
+
163
+ ## Related skills
164
+
165
+ - **adding-a-feature** — preserve UI/action/instruction/application-state parity
166
+ - **actions** — define and call guarded app operations
167
+ - **audit-log** — inspect automatic action mutation history
168
+ - **reliable-mutations** — make rollout changes atomic and provable
169
+ - **security** — keep security controls out of feature flags
@@ -0,0 +1,169 @@
1
+ ---
2
+ name: feature-flags
3
+ description: >-
4
+ Declare, evaluate, manage, and remove framework feature flags. Use when
5
+ shipping a capability gradually, targeting users or organizations, or
6
+ replacing a compile-time rollout switch with a production-safe runtime flag.
7
+ scope: dev
8
+ metadata:
9
+ internal: true
10
+ ---
11
+
12
+ # Feature Flags
13
+
14
+ A feature flag is a boolean declared in app code, evaluated locally by Core,
15
+ and managed from the Analytics fleet control plane. Code owns whether a flag
16
+ exists. Runtime settings own only its rollout state.
17
+
18
+ Flags let an app deploy dormant code and turn it on in the real environment
19
+ without another deployment. They are not experiments: do not add variants,
20
+ hypotheses, conversion metrics, exposure tracking, or lifecycle states.
21
+
22
+ ## When to use one
23
+
24
+ Use a flag for a reversible rollout of a user-facing capability whose dormant
25
+ code is safe to deploy. Flags are useful for production dogfooding, exact-user
26
+ or organization pilots, and deterministic percentage rollouts.
27
+
28
+ Do not use a flag for authentication, authorization, secrets, audit enablement,
29
+ SSR cache behavior, or another security boundary. Client hiding is presentation
30
+ only; every guarded server action must evaluate the same registered flag.
31
+
32
+ ## Agent workflow
33
+
34
+ ### 1. Declare
35
+
36
+ Keep definitions in a shared TypeScript module so server and client code use the
37
+ same stable key. Flags are boolean and default-off.
38
+
39
+ ```ts
40
+ import { defineFeatureFlag } from "@agent-native/core/feature-flags";
41
+
42
+ export const FULL_APP_BUILDING = defineFeatureFlag({
43
+ key: "full-app-building",
44
+ displayName: "Full app building",
45
+ description: "Create and edit Fusion-backed applications.",
46
+ });
47
+ ```
48
+
49
+ Keys are immutable, never reused, and contain only letters, numbers, dots,
50
+ underscores, or hyphens. Prefer a concise app-owned name. Do not create flag
51
+ definitions or rollout rows from Analytics.
52
+
53
+ ### 2. Register
54
+
55
+ Register app definitions from a Nitro plugin before actions are discovered.
56
+ Do not add app-specific flags to a Core registry.
57
+
58
+ ```ts
59
+ import { createFeatureFlagsPlugin } from "@agent-native/core/server";
60
+
61
+ import { FULL_APP_BUILDING } from "../../shared/feature-flags.js";
62
+
63
+ export default createFeatureFlagsPlugin({ flags: [FULL_APP_BUILDING] });
64
+ ```
65
+
66
+ ### 3. Guard server and client
67
+
68
+ The server action is the enforcement boundary:
69
+
70
+ ```ts
71
+ import { isFeatureFlagEnabled } from "@agent-native/core/feature-flags";
72
+
73
+ run: async (args, ctx) => {
74
+ if (!(await isFeatureFlagEnabled(FULL_APP_BUILDING, ctx))) {
75
+ throw new Error("Full app building is not enabled for this account.");
76
+ }
77
+ // guarded operation
78
+ }
79
+ ```
80
+
81
+ Use the client hook only to hide or reveal hydrated UI:
82
+
83
+ ```tsx
84
+ import { useFeatureFlag } from "@agent-native/core/client";
85
+
86
+ const enabled = useFeatureFlag(FULL_APP_BUILDING.key);
87
+ return enabled ? <FullAppOption /> : null;
88
+ ```
89
+
90
+ The client hook intentionally returns false while loading or for an unknown
91
+ flag. Never replace that fail-closed behavior with app-local bucketing or a
92
+ compile-time fallback. Never evaluate personalized flags in the public SSR
93
+ shell; it is shared and cached for every visitor.
94
+
95
+ ### 4. Verify and roll out
96
+
97
+ 1. Verify the off path before changing rollout state.
98
+ 2. Confirm the registered flag appears in **Analytics → Feature flags** for the
99
+ app and is Off by default.
100
+ 3. Use **Enable for me** for initial production dogfood.
101
+ 4. Expand to exact emails, organization IDs, or a percentage only from
102
+ Analytics.
103
+ 5. Confirm the client presentation and authoritative server action agree.
104
+
105
+ ## Management contract
106
+
107
+ Core mounts three actions in registered apps:
108
+
109
+ | Action | Purpose |
110
+ | --- | --- |
111
+ | `get-feature-flags` | Return the current caller's evaluated boolean values. |
112
+ | `list-feature-flags` | Return definitions and rollout metadata to an authorized operator. |
113
+ | `set-feature-flag` | Atomically turn a flag off, enable it for the operator, or replace targeting rules. |
114
+
115
+ Analytics calls the app-local operator actions through narrowly scoped A2A
116
+ delegation. Tokens require an exact audience, organization, scope, operator
117
+ role, and audit correlation id. Management is permission-checked and audited
118
+ by the target app. Never manage flags through generic settings routes, raw SQL,
119
+ or per-app toggle UIs.
120
+
121
+ ## Rollout semantics
122
+
123
+ The operator modes are **Off**, **Targeted**, and **Everyone**. Core stores them
124
+ as `off`, `rules`, and `on`.
125
+
126
+ Targeted rules combine exact normalized emails, exact organization IDs, and a
127
+ percentage with OR semantics. Exact matches are checked first. Percentage
128
+ buckets use Core's stable hash of the flag key and authenticated user identity;
129
+ anonymous callers fail closed. Raising a percentage preserves the users already
130
+ included at a lower percentage. Do not implement bucketing in app code.
131
+
132
+ Unknown definitions, missing state, malformed state, storage errors, and
133
+ evaluation errors all return the code default (`false` in v1). Explicit Off
134
+ wins over every target; Everyone enables every authenticated caller.
135
+
136
+ ## Remove a flag
137
+
138
+ After a rollout is permanent:
139
+
140
+ 1. Replace guarded branches with the chosen behavior.
141
+ 2. Delete the server and client gates.
142
+ 3. Delete the definition and registration entry.
143
+ 4. Verify the flag disappears from the Analytics fleet.
144
+ 5. Remove stale tests and rollout instructions.
145
+
146
+ A permanent flag is just an if statement with a pension plan.
147
+
148
+ ## Verification checklist
149
+
150
+ - Unknown and unregistered keys evaluate false.
151
+ - UI hiding and server enforcement use the same registered key.
152
+ - Exact-user, organization, deterministic percentage, Everyone, and Off paths
153
+ have focused tests.
154
+ - Increasing a percentage is monotonic; anonymous percentage evaluation is off.
155
+ - Unauthorized callers cannot list targeting details or mutate flags.
156
+ - Mutations are atomic, read back stored state, emit refresh, and appear in the
157
+ audit log with the flag key.
158
+ - Analytics represents ready, no-definition, unsupported, forbidden, legacy,
159
+ and unreachable directory apps honestly.
160
+ - Future agents can find this skill from root `AGENTS.md`, and
161
+ `pnpm guard:workspace-skills` passes after syncing generated copies.
162
+
163
+ ## Related skills
164
+
165
+ - **adding-a-feature** — preserve UI/action/instruction/application-state parity
166
+ - **actions** — define and call guarded app operations
167
+ - **audit-log** — inspect automatic action mutation history
168
+ - **reliable-mutations** — make rollout changes atomic and provable
169
+ - **security** — keep security controls out of feature flags
@@ -0,0 +1,169 @@
1
+ ---
2
+ name: feature-flags
3
+ description: >-
4
+ Declare, evaluate, manage, and remove framework feature flags. Use when
5
+ shipping a capability gradually, targeting users or organizations, or
6
+ replacing a compile-time rollout switch with a production-safe runtime flag.
7
+ scope: dev
8
+ metadata:
9
+ internal: true
10
+ ---
11
+
12
+ # Feature Flags
13
+
14
+ A feature flag is a boolean declared in app code, evaluated locally by Core,
15
+ and managed from the Analytics fleet control plane. Code owns whether a flag
16
+ exists. Runtime settings own only its rollout state.
17
+
18
+ Flags let an app deploy dormant code and turn it on in the real environment
19
+ without another deployment. They are not experiments: do not add variants,
20
+ hypotheses, conversion metrics, exposure tracking, or lifecycle states.
21
+
22
+ ## When to use one
23
+
24
+ Use a flag for a reversible rollout of a user-facing capability whose dormant
25
+ code is safe to deploy. Flags are useful for production dogfooding, exact-user
26
+ or organization pilots, and deterministic percentage rollouts.
27
+
28
+ Do not use a flag for authentication, authorization, secrets, audit enablement,
29
+ SSR cache behavior, or another security boundary. Client hiding is presentation
30
+ only; every guarded server action must evaluate the same registered flag.
31
+
32
+ ## Agent workflow
33
+
34
+ ### 1. Declare
35
+
36
+ Keep definitions in a shared TypeScript module so server and client code use the
37
+ same stable key. Flags are boolean and default-off.
38
+
39
+ ```ts
40
+ import { defineFeatureFlag } from "@agent-native/core/feature-flags";
41
+
42
+ export const FULL_APP_BUILDING = defineFeatureFlag({
43
+ key: "full-app-building",
44
+ displayName: "Full app building",
45
+ description: "Create and edit Fusion-backed applications.",
46
+ });
47
+ ```
48
+
49
+ Keys are immutable, never reused, and contain only letters, numbers, dots,
50
+ underscores, or hyphens. Prefer a concise app-owned name. Do not create flag
51
+ definitions or rollout rows from Analytics.
52
+
53
+ ### 2. Register
54
+
55
+ Register app definitions from a Nitro plugin before actions are discovered.
56
+ Do not add app-specific flags to a Core registry.
57
+
58
+ ```ts
59
+ import { createFeatureFlagsPlugin } from "@agent-native/core/server";
60
+
61
+ import { FULL_APP_BUILDING } from "../../shared/feature-flags.js";
62
+
63
+ export default createFeatureFlagsPlugin({ flags: [FULL_APP_BUILDING] });
64
+ ```
65
+
66
+ ### 3. Guard server and client
67
+
68
+ The server action is the enforcement boundary:
69
+
70
+ ```ts
71
+ import { isFeatureFlagEnabled } from "@agent-native/core/feature-flags";
72
+
73
+ run: async (args, ctx) => {
74
+ if (!(await isFeatureFlagEnabled(FULL_APP_BUILDING, ctx))) {
75
+ throw new Error("Full app building is not enabled for this account.");
76
+ }
77
+ // guarded operation
78
+ }
79
+ ```
80
+
81
+ Use the client hook only to hide or reveal hydrated UI:
82
+
83
+ ```tsx
84
+ import { useFeatureFlag } from "@agent-native/core/client";
85
+
86
+ const enabled = useFeatureFlag(FULL_APP_BUILDING.key);
87
+ return enabled ? <FullAppOption /> : null;
88
+ ```
89
+
90
+ The client hook intentionally returns false while loading or for an unknown
91
+ flag. Never replace that fail-closed behavior with app-local bucketing or a
92
+ compile-time fallback. Never evaluate personalized flags in the public SSR
93
+ shell; it is shared and cached for every visitor.
94
+
95
+ ### 4. Verify and roll out
96
+
97
+ 1. Verify the off path before changing rollout state.
98
+ 2. Confirm the registered flag appears in **Analytics → Feature flags** for the
99
+ app and is Off by default.
100
+ 3. Use **Enable for me** for initial production dogfood.
101
+ 4. Expand to exact emails, organization IDs, or a percentage only from
102
+ Analytics.
103
+ 5. Confirm the client presentation and authoritative server action agree.
104
+
105
+ ## Management contract
106
+
107
+ Core mounts three actions in registered apps:
108
+
109
+ | Action | Purpose |
110
+ | --- | --- |
111
+ | `get-feature-flags` | Return the current caller's evaluated boolean values. |
112
+ | `list-feature-flags` | Return definitions and rollout metadata to an authorized operator. |
113
+ | `set-feature-flag` | Atomically turn a flag off, enable it for the operator, or replace targeting rules. |
114
+
115
+ Analytics calls the app-local operator actions through narrowly scoped A2A
116
+ delegation. Tokens require an exact audience, organization, scope, operator
117
+ role, and audit correlation id. Management is permission-checked and audited
118
+ by the target app. Never manage flags through generic settings routes, raw SQL,
119
+ or per-app toggle UIs.
120
+
121
+ ## Rollout semantics
122
+
123
+ The operator modes are **Off**, **Targeted**, and **Everyone**. Core stores them
124
+ as `off`, `rules`, and `on`.
125
+
126
+ Targeted rules combine exact normalized emails, exact organization IDs, and a
127
+ percentage with OR semantics. Exact matches are checked first. Percentage
128
+ buckets use Core's stable hash of the flag key and authenticated user identity;
129
+ anonymous callers fail closed. Raising a percentage preserves the users already
130
+ included at a lower percentage. Do not implement bucketing in app code.
131
+
132
+ Unknown definitions, missing state, malformed state, storage errors, and
133
+ evaluation errors all return the code default (`false` in v1). Explicit Off
134
+ wins over every target; Everyone enables every authenticated caller.
135
+
136
+ ## Remove a flag
137
+
138
+ After a rollout is permanent:
139
+
140
+ 1. Replace guarded branches with the chosen behavior.
141
+ 2. Delete the server and client gates.
142
+ 3. Delete the definition and registration entry.
143
+ 4. Verify the flag disappears from the Analytics fleet.
144
+ 5. Remove stale tests and rollout instructions.
145
+
146
+ A permanent flag is just an if statement with a pension plan.
147
+
148
+ ## Verification checklist
149
+
150
+ - Unknown and unregistered keys evaluate false.
151
+ - UI hiding and server enforcement use the same registered key.
152
+ - Exact-user, organization, deterministic percentage, Everyone, and Off paths
153
+ have focused tests.
154
+ - Increasing a percentage is monotonic; anonymous percentage evaluation is off.
155
+ - Unauthorized callers cannot list targeting details or mutate flags.
156
+ - Mutations are atomic, read back stored state, emit refresh, and appear in the
157
+ audit log with the flag key.
158
+ - Analytics represents ready, no-definition, unsupported, forbidden, legacy,
159
+ and unreachable directory apps honestly.
160
+ - Future agents can find this skill from root `AGENTS.md`, and
161
+ `pnpm guard:workspace-skills` passes after syncing generated copies.
162
+
163
+ ## Related skills
164
+
165
+ - **adding-a-feature** — preserve UI/action/instruction/application-state parity
166
+ - **actions** — define and call guarded app operations
167
+ - **audit-log** — inspect automatic action mutation history
168
+ - **reliable-mutations** — make rollout changes atomic and provable
169
+ - **security** — keep security controls out of feature flags