checkbox — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited checkbox (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Animated checkbox with SVG check/intermediate marks, label support, and keyboard accessibility. Built on Framer Motion with customizable SVG paths.
import { Checkbox } from 'reablocks';| Prop | Type | Default | Description | ||
|---|---|---|---|---|---|
checked | boolean | false | Whether the checkbox is checked | ||
intermediate | boolean | false | Intermediate/indeterminate state | ||
label | `string \ | ReactNode` | — | Label text or element | |
labelPosition | `'start' \ | 'end'` | 'end' | Label placement relative to checkbox | |
disabled | boolean | — | Disable the checkbox | ||
size | `'small' \ | 'medium' \ | 'large'` | 'medium' | Checkbox size |
onChange | (value: boolean) => void | — | Change handler (receives new checked state) | ||
onBlur | (event: FocusEvent) => void | — | Blur handler | ||
className | string | — | CSS classes for the checkbox element | ||
containerClassName | string | — | CSS classes for the outer container | ||
labelClassName | string | — | CSS classes for the label | ||
borderPath | string | rounded rect | Custom SVG path for the box border | ||
checkedPath | string | checkmark | Custom SVG path for checked state | ||
intermediatePath | string | dash | Custom SVG path for intermediate state | ||
theme | CheckboxTheme | — | Per-instance theme override |
const [checked, setChecked] = useState(false);
<Checkbox checked={checked} label="Accept terms" onChange={setChecked} /><Checkbox checked={checked} intermediate label="Select all" onChange={setChecked} /><Checkbox checked={checked} label="Start label" labelPosition="start" onChange={setChecked} />
<Checkbox checked={checked} label="End label" labelPosition="end" onChange={setChecked} /><Checkbox checked={checked} size="small" label="Small" onChange={setChecked} />
<Checkbox checked={checked} size="medium" label="Medium" onChange={setChecked} />
<Checkbox checked={checked} size="large" label="Large" onChange={setChecked} /><Checkbox
borderPath="M2 0.5h12s1.5 0 1.5 1.5v12s0 1.5 ..."
checkedPath="M14.49 2.99..."
checked={checked}
label="Custom check"
onChange={setChecked}
/><Checkbox
checked={checked}
label={<div><span className="mr-1">Check</span><b>me</b></div>}
onChange={setChecked}
/>interface CheckboxTheme {
base: string;
label: {
base: string;
clickable: string;
disabled: string;
checked: string;
sizes: { small, medium, large };
};
border: { base: string; disabled: string; checked: string };
check: { base: string; disabled: string; checked: string };
checkbox: { base: string; disabled: string; checked: string };
sizes: { small, medium, large };
boxVariants: {
hover: { strokeWidth, stroke, fill };
pressed: { scale };
checked: { stroke, fill };
unchecked: { stroke, fill };
};
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.