import { useTranslation } from 'react-i18next'; import { HelpText } from './HelpText'; import { FieldLabel, FieldInput } from './formUtils'; import type { SectionFormProps } from './types'; /** * Skill Quotas — per-user skill store limits (`skills.*`). * * These caps bound how many skills a user can install and how large the * store may grow. They exist in the config schema (SkillsConfig) but were * previously only editable via config.yaml. (Distinct from the SkillsForm * panel under User Folder, which is the skill *store* browser/editor.) */ export function SkillsQuotaForm({ config, onChange }: SectionFormProps) { const { t } = useTranslation('settings'); const skills = config.skills ?? {}; return (