kbd — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited kbd (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.
Displays keyboard shortcuts with platform-aware modifier key symbols. Splits key combinations by + and renders each key as a styled Chip inside a <kbd> element.
import { Kbd } from 'reablocks';| Prop | Type | Default | Description |
|---|---|---|---|
keycode | string | — | Keyboard shortcut string (e.g. "mod+shift+k") |
theme | KbdTheme | — | Per-instance theme override |
Also inherits Chip props (except children and theme): size, color, variant, etc.
<Kbd keycode="mod+shift+k" />Renders as: ⌘ ⇧ k (on Mac) or CTRL ⇧ k (on Windows/Linux)
The getHotkeyText utility performs these string replacements (keys are not auto-uppercased):
| Input | Mac Output | Windows/Linux Output |
|---|---|---|
mod, modifier, meta | ⌘ | CTRL |
shift | ⇧ | ⇧ |
plus | + | + |
minus | - | - |
| Other keys | As-is | As-is |
<Kbd keycode="mod+c" /> {/* ⌘ c or CTRL c */}
<Kbd keycode="mod+shift+p" /> {/* ⌘ ⇧ p or CTRL ⇧ p */}
<Kbd keycode="mod+plus" /> {/* ⌘ + or CTRL + */}interface KbdTheme {
base: string; // Container (inline-flex, gap, alignment)
chip: string; // Individual key chip (font-mono, rounded)
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.