heatmap — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited heatmap (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.
Grid-based heatmap with color-scaled cells. Includes a calendar heatmap variant (year and month views). Supports custom symbols, cell selection, tooltips, and multi-axis layouts.
import {
Heatmap,
HeatmapSeries,
HeatmapCell,
CalendarHeatmap
} from 'reaviz';| Prop | Type | Default | Description |
|---|---|---|---|
data | ChartNestedDataShape[] | [] | Chart data |
width | number | auto | Width in pixels |
height | number | auto | Height in pixels |
margins | Margins | 10 | Chart margins |
series | ReactElement<HeatmapSeriesProps> | <HeatmapSeries padding={0.3} /> | Series component |
xAxis | ReactElement<LinearAxisProps> | <LinearXAxis type="category" /> | X axis (no axis line, padded labels) |
yAxis | ReactElement<LinearAxisProps> | <LinearYAxis type="category" /> | Y axis (no axis line, padded labels) |
secondaryAxis | ReactElement[] | — | Additional axis components |
className | string | — | SVG CSS class |
containerClassName | string | — | Container div CSS class |
| Prop | Type | Default | Description |
|---|---|---|---|
padding | number | 0.1 | Padding between cells |
animated | boolean | true | Enable animations |
colorScheme | ColorSchemeType | ['rgba(28,107,86,0.5)', '#2da283'] | Color range for value mapping |
emptyColor | string | 'rgba(200,200,200,0.08)' | Color for cells with no data |
cell | ReactElement<HeatmapCellProps> | <HeatmapCell /> | Cell component |
selections | any | — | Selected cell(s) for active state |
| Prop | Type | Default | Description | |
|---|---|---|---|---|
rx | number | 2 | Horizontal corner radius | |
ry | number | 2 | Vertical corner radius | |
cursor | string | 'auto' | CSS cursor on hover | |
tooltip | `ReactElement<ChartTooltipProps> \ | null` | <ChartTooltip /> | Tooltip component |
symbol | (data) => ReactNode | — | Custom symbol renderer (replaces rectangle) | |
onClick | (event) => void | — | Click handler | |
onMouseEnter | (event) => void | — | Mouse enter handler | |
onMouseLeave | (event) => void | — | Mouse leave handler |
Extends Heatmap props with:
| Prop | Type | Default | Description | |
|---|---|---|---|---|
data | ChartShallowDataShape[] | — | Flat data with Date keys (not nested) | |
view | `'year' \ | 'month'` | 'year' | Calendar view mode |
height | number | — | Component height | |
width | number | — | Component width |
const data = [
{ key: 'Jan', data: [
{ key: 'Low', data: 5 },
{ key: 'Med', data: 8 },
{ key: 'High', data: 12 },
]},
{ key: 'Feb', data: [
{ key: 'Low', data: 3 },
{ key: 'Med', data: 10 },
{ key: 'High', data: 7 },
]},
];
<Heatmap
height={250}
width={400}
data={data}
/><Heatmap
data={data}
series={<HeatmapSeries colorScheme="OrRd" />}
/><Heatmap
data={data}
series={
<HeatmapSeries colorScheme={['#f0f9e8', '#08589e']} />
}
/><Heatmap
data={data}
series={
<HeatmapSeries
colorScheme="OrRd"
cell={
<HeatmapCell
symbol={() => (
<circle r={14} transform="translate(14, 14)" />
)}
/>
}
/>
}
/>const [active, setActive] = useState([]);
<Heatmap
data={data}
series={
<HeatmapSeries
selections={active}
cell={
<HeatmapCell
cursor="pointer"
onClick={(e) => setActive([e.value])}
/>
}
/>
}
/>const calendarData = [
{ key: new Date('2024-01-01'), data: 3 },
{ key: new Date('2024-01-02'), data: 7 },
{ key: new Date('2024-01-03'), data: 1 },
// ... one entry per day
];
<CalendarHeatmap
height={115}
width={715}
data={calendarData}
view="year"
/><CalendarHeatmap
height={115}
width={100}
data={monthData}
view="month"
/><HeatmapSeries
cell={
<HeatmapCell
tooltip={
<ChartTooltip
content={(d) => `${d.data.key}: ${d.data.value}`}
/>
}
/>
}
/><Heatmap
data={data}
series={<HeatmapSeries padding={0} />}
/>"OrRd") from D3 chromatic are supported alongside custom arrays{ key: Date, data: number } into the nested grid structure internally"date · value" format~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.