ellipsis — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ellipsis (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.
Truncates text with expandable "..." toggle. Supports character limit and line-based truncation with responsive re-measurement.
import { Ellipsis } from 'reablocks';| Prop | Type | Default | Description | |
|---|---|---|---|---|
value | string | — | Text to truncate | |
limit | number | 256 | Character limit for truncation | |
lines | number | — | Number of lines to show (overrides character limit) | |
expandable | boolean | true | Allow expanding truncated text | |
moreText | string | '...' | Text for the expand button | |
lessText | string | 'Show less' | Text for the collapse button | |
removeLinebreaks | boolean | true | Replace line breaks with spaces | |
title | `string \ | false` | — | Hover title (defaults to full value, false to disable) |
className | string | — | Additional CSS classes | |
theme | EllipsisTheme | — | Per-instance theme override |
<Ellipsis value="A very long text string that exceeds the character limit..." /><Ellipsis expandable={false} value={longText} />
{/* Shows truncated text with "..." but no expand button */}When lines is set, truncation is based on visible lines rather than character count. Responsive — re-measures on window resize.
<div style={{ width: 250 }}>
<Ellipsis lines={3} value={longText} />
</div>interface EllipsisTheme {
dots: string; // Expand/collapse button styles (cursor-pointer, opacity)
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.