mantine-form
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: mantine-form description: > Build forms using @mantine/form in the mantine-9 repository.
Malicious tool definition detected
Tool: references/api.md [1/2] Description: # @mantine/form API Reference ## Table of Contents - [useForm options](#useform-options) - [useForm return value](#useform-return-value) - [useField](#usefield-hook) - [createFormContext](#createformcontext) - [createFormActions](#createformactions) - [Built-in validators](#built-in-validators) - [Validation rule format](#validation-rule-format) - [Key types](#key-types) --- ## useForm options ```ts useForm<Values, TransformedValues>({ mode?, initialVal
Tool: references/api.md [2/2] Description: withError?: boolean // default true — include error prop withFocus?: boolean // default true — include onFocus/onBlur for touched tracking } ``` ### Watch | Method | Signature | Description | |---|---|---| | `watch` | `(path, subscriber) => void` | Subscribe to a field's changes | Subscriber receives `{ value, previousValue, touched, dirty }`.
Malicious tool definition detected
Tool: references/patterns.md Description: # @mantine/form Patterns ## Table of Contents - [Basic form with validation](#basic-form-with-validation) - [Nested object fields](#nested-object-fields) - [Array / list fields](#array--list-fields) - [Async validation](#async-validation) - [Form context across components](#form-context-across-components) - [transformValues](#transformvalues) - [Uncontrolled mode](#uncontrolled-mode) - [Standalone useField](#standalone-usefield) - [Server errors after su