redact — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited redact (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.
Masks sensitive content with a configurable character, keeping first and last characters visible. Click to toggle visibility.
import { Redact } from 'reablocks';| Prop | Type | Default | Description |
|---|---|---|---|
value | string | — | Text to mask |
allowToggle | boolean | true | Allow clicking to reveal/hide content |
compactLength | number | 8 | Number of characters in masked output |
character | string | '*' | Masking character |
tooltipText | string | 'Click to toggle sensitive content' | Hover title text |
className | string | — | Additional CSS classes |
theme | RedactTheme | — | Per-instance theme override |
<Redact value="my-secret-api-key-12345" />
{/* Renders: "m******5" — click to toggle */}<Redact value="sensitive-data" allowToggle={false} />
{/* Always masked, not clickable */}<Redact value="secret" character="•" compactLength={6} />
{/* "s••••t" */}interface RedactTheme {
base: string; // Base styles (cursor-text)
interactive: string; // Styles when allowToggle is true (cursor-pointer, hover:underline)
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.