import React from 'react'; import { Checkbox } from '@renderer/components/ui/checkbox'; import { Label } from '@renderer/components/ui/label'; import { Info } from 'lucide-react'; interface SkipPermissionsCheckboxProps { id: string; checked: boolean; onCheckedChange: (checked: boolean) => void; } export const SkipPermissionsCheckbox: React.FC = ({ id, checked, onCheckedChange, }) => ( <>
onCheckedChange(value === true)} />
{checked ? (

Unleash Claude's full power — no interruptions asking for permission. Autonomous mode — all tools execute without confirmation. Be cautious with untrusted code.

) : (

Manual mode — you'll approve or deny each tool call in real-time.

)} );