"use client"; import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; import { settingsApi } from "@/lib/api"; import type { FeatureFlag } from "@/lib/api/settings"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { useState } from "react"; import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { Button } from "@/components/ui/button"; import { Collapsible, CollapsibleContent, CollapsibleTrigger, } from "@/components/ui/collapsible"; import { XCredentialsForm } from "@/components/settings/x-credentials-card"; import { cn } from "@/lib/utils"; import { Flag, ChevronDown, ChevronRight } from "lucide-react"; import { toast } from "sonner"; // One-line blurb per flag so the operator knows what each master switch gates. const FLAG_DESCRIPTIONS: Record = { external_pr_enabled: "Discover and review inbound external/fork pull requests.", internal_pr_enabled: "Run the read-only safety reviewer on internal branch PRs.", research_enabled: "Let the Board and PMs run web research.", strategy_engine_enabled: "Generate and maintain company strategy artifacts.", self_heal_enabled: "Watch RoboCo's own CI and notify you when it regresses.", self_heal_originate_enabled: "Also open a PENDING fix task for a detected regression (needs Self-healing on; the task waits for your approval).", provisioning_enabled: "Auto-provision projects from approved pitches.", toolchain_match_enabled: "Provision each agent workspace with the target project's Python (not RoboCo's) and block delivery gates when its test suite can't be executed.", conventions_enabled: "Enforce a per-project architectural standard (.roboco/conventions.yml): inject the map, attach baseline constraints, and block i_am_done / pr_pass on misplaced definitions or lint suppressions.", rag_auto_update_enabled: "Keep the knowledge base index refreshed automatically.", transcript_prune_enabled: "Run the background sweep that prunes old transcripts.", gateway_health_enabled: "Recover an agent whose MCP gateway has broken (it can run no tools) while its container stays up — kill + respawn it instead of shielding it from the reaper forever.", ci_watch_enabled: "Watch every opted-in project's CI and open a fix task when its default branch goes red (per-project opt-in; never auto-merges).", dep_update_enabled: "Periodically probe opted-in projects for dependency updates and open an update task when a lockfile would change (per-project opt-in; never auto-merges).", release_manager_enabled: "Run the deterministic release-readiness sweep and propose a release for you to approve or reject — it never publishes without your approval, and the executor is fail-closed on a red gate.", org_memory_enabled: "Close the learn→reuse loop: distill a lesson at task completion, index journal reflections, and auto-inject similar past lessons + approved playbooks into an agent's briefing on claim.", sandbox_db_enabled: "Provision a throwaway Postgres/Redis sibling container per agent spawn (per-project opt-in) instead of injecting RoboCo's own production DB credentials into the agent's gate.", routing_strict: "Fail-closed model routing: refuse to silently downgrade an agent to the legacy Anthropic path when its configured provider is disabled (raise instead). Off => graceful degradation with a warning.", x_engine_enabled: "Draft release-announcement posts for the X (Twitter) account — every draft is held in a queue for you to edit, approve, or reject; nothing posts automatically, and it stays inert until you set credentials in the X card below.", x_replies_enabled: "Also poll X mentions and draft replies (still held for your approval — nothing auto-replies). Off by default: reading mentions needs a paid X API tier, so leave this off if you only want release posts.", x_feature_spotlight_enabled: "Periodically spawn the Head of Marketing to investigate RoboCo's shipped features and draft a spotlight post for an under-publicized capability — held in the same X post queue below for your approval. Needs x_engine_enabled and X credentials.", roadmap_engine_enabled: "Weekly: the Product Owner explores the company's projects and proposes a themed cycle of 3-7 roadmap items — you approve or reject each one individually; approved items land in the backlog and nothing auto-starts.", fable_mode_enabled: "Compose the Fable behavioral doctrine into every agent's system prompt and install the matching turn-discipline/honesty/verification hooks at spawn (both Claude Code and grok runtimes). Off by default; spawn path is byte-for-byte unchanged.", }; export function FeatureFlagsCard() { const queryClient = useQueryClient(); const [xCredsOpen, setXCredsOpen] = useState(false); const { data, isLoading } = useQuery({ queryKey: ["feature-flags"], queryFn: settingsApi.getFeatureFlags, }); const toggleMutation = useMutation({ mutationFn: ({ key, enabled }: { key: string; enabled: boolean }) => settingsApi.setFeatureFlag(key, enabled), onSuccess: (_data, { enabled }) => { queryClient.invalidateQueries({ queryKey: ["feature-flags"] }); toast.success( `Feature ${enabled ? "enabled" : "disabled"} — takes effect on next restart`, ); }, onError: (error) => { toast.error( `Failed to update: ${error instanceof Error ? error.message : "Unknown error"}`, ); }, }); const flags: FeatureFlag[] = data?.flags ?? []; const note = data?.note ?? "Changes take effect on the next backend restart."; return ( Feature Flags Master switches for optional subsystems. Unset flags fall back to the environment default. {note} {isLoading && (

Loading feature flags…

)} {!isLoading && flags.length === 0 && (

No feature flags available.

)}
{flags.map((flag) => { const isXEngine = flag.key === "x_engine_enabled"; return (

{FLAG_DESCRIPTIONS[flag.key] ?? ""}

toggleMutation.mutate({ key: flag.key, enabled: checked }) } />
{isXEngine && ( )}
); })}
); }