"use client"; import { Button } from "@prototype/components/ui/button"; import { usePrototypeSlug } from "@prototype/components/prototypes/prototype-target"; import { buildPrSplitPlanCopyText, type PrSplitPlanPromptOptions, } from "@prototype/lib/pr-split/build-pr-split-plan-prompt"; import { useWorkspaceProfile } from "@prototype/lib/prototypes/use-workspace-profile"; import useCopyToClipboard from "@prototype/lib/use-copy-to-clipboard"; type PrototypeSpecPanelEmptyStateProps = { promptOptions?: Omit; }; export function PrototypeSpecPanelEmptyState({ promptOptions, }: PrototypeSpecPanelEmptyStateProps) { const slug = usePrototypeSlug(); const { copy, icon, isCopied } = useCopyToClipboard(); const workspaceProfile = useWorkspaceProfile(); const canCopy = Boolean(slug); return (

No PRs configured yet. Copy the prompt below to have an agent audit what changed on this prototype and create a merge-ordered PR split spec.

); }