ng-blatui — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ng-blatui (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.
ng-blatui is an accessible Angular UI library (Angular 21 & 22 — standalone, signals, zoneless, SSR-ready) ported from BlatUI. 155 components, 16 blocks, 70 charts, 34 page templates.
npm i ng-blatuiTailwind CSS v4 is the styling layer. Follow the theming setup at https://ngblatui.remix-it.com/docs/installation (import the ng-blatui preset/tokens into your Tailwind config and global stylesheet).
ng-blatui barrel and add it to a standalone component's imports. There is no NgModule.<bui-avatar>, attribute/directive form <button buiButton>, <input buiInput>, <span buiBadge tone="success">.input()/model(), outputs output(). Bind with [checked] / (checkedChange) etc. Works under zoneless change detection and SSR with no extra setup.ControlValueAccessor, so the same component drops into Reactive, Template-driven and Signal forms (formControlName, [(ngModel)], or [formControl]).--background, --foreground, --primary, --border, --muted, --radius…). Restyle globally by overriding tokens; supports light/dark.Example:
import { Component } from '@angular/core';
import { BuiButton, BuiBadge } from 'ng-blatui';
@Component({
selector: 'app-demo',
imports: [BuiButton, BuiBadge],
template: `<button buiButton>Save <span buiBadge tone="success">New</span></button>`,
})
export class Demo {}Don't invent component names or props. Resolve them from one of these, in order of preference:
npx ng-blatui-mcp exposes tools list_components, list_blocks, list_charts, list_templates, search, and get_docs({ name }) which returns the full usage + code for any slug. Config snippets: https://ngblatui.remix-it.com/docs/installation or the repo's USING-WITH-AI.md.https://ngblatui.remix-it.com/registry.json — every item with name, type, category, url.https://ngblatui.remix-it.com/llms.txt — the curated index.https://ngblatui.remix-it.com/components/<slug> returns real HTML with the live example, props and copy-paste code. Same for /blocks/<slug>, /charts/<slug>, /templates/<slug>.When asked for a component you're unsure about, call get_docs (or fetch the /components/<slug> page) and copy the documented import + usage rather than guessing.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.