import { c as _c } from "react/compiler-runtime"; import React, { type ReactNode } from 'react'; import { Box } from '../../../../ink.js'; import { useKeybinding } from '../../../../keybindings/useKeybinding.js'; import { isAutoMemoryEnabled } from '../../../../memdir/paths.js'; import { type AgentMemoryScope, loadAgentMemoryPrompt } from '../../../../tools/AgentTool/agentMemory.js'; import { ConfigurableShortcutHint } from '../../../ConfigurableShortcutHint.js'; import { Select } from '../../../CustomSelect/select.js'; import { Byline } from '../../../design-system/Byline.js'; import { KeyboardShortcutHint } from '../../../design-system/KeyboardShortcutHint.js'; import { useWizard } from '../../../wizard/index.js'; import { WizardDialogLayout } from '../../../wizard/WizardDialogLayout.js'; import type { AgentWizardData } from '../types.js'; type MemoryOption = { label: string; value: AgentMemoryScope | 'none'; }; export function MemoryStep() { const $ = _c(13); const { goNext, goBack, updateWizardData, wizardData } = useWizard(); let t0; if ($[0] === Symbol.for("react.memo_cache_sentinel")) { t0 = { context: "Confirmation" }; $[0] = t0; } else { t0 = $[0]; } useKeybinding("confirm:no", goBack, t0); const isUserScope = wizardData.location === "userSettings"; let t1; if ($[1] !== isUserScope) { t1 = isUserScope ? [{ label: "User scope (~/.claude/agent-memory/) (Recommended)", value: "user" }, { label: "None (no persistent memory)", value: "none" }, { label: "Project scope (.claude/agent-memory/)", value: "project" }, { label: "Local scope (.claude/agent-memory-local/)", value: "local" }] : [{ label: "Project scope (.claude/agent-memory/) (Recommended)", value: "project" }, { label: "None (no persistent memory)", value: "none" }, { label: "User scope (~/.claude/agent-memory/)", value: "user" }, { label: "Local scope (.claude/agent-memory-local/)", value: "local" }]; $[1] = isUserScope; $[2] = t1; } else { t1 = $[2]; } const memoryOptions = t1; let t2; if ($[3] !== goNext || $[4] !== updateWizardData || $[5] !== wizardData.finalAgent || $[6] !== wizardData.systemPrompt) { t2 = value => { const memory = value === "none" ? undefined : value as AgentMemoryScope; const agentType = wizardData.finalAgent?.agentType; updateWizardData({ selectedMemory: memory, finalAgent: wizardData.finalAgent ? { ...wizardData.finalAgent, memory, getSystemPrompt: isAutoMemoryEnabled() && memory && agentType ? () => wizardData.systemPrompt + "\n\n" + loadAgentMemoryPrompt(agentType, memory) : () => wizardData.systemPrompt } : undefined }); goNext(); }; $[3] = goNext; $[4] = updateWizardData; $[5] = wizardData.finalAgent; $[6] = wizardData.systemPrompt; $[7] = t2; } else { t2 = $[7]; } const handleSelect = t2; let t3; if ($[8] === Symbol.for("react.memo_cache_sentinel")) { t3 = ; $[8] = t3; } else { t3 = $[8]; } let t4; if ($[9] !== goBack || $[10] !== handleSelect || $[11] !== memoryOptions) { t4 =