livewire-patterns — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited livewire-patterns (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.
class EditProfile extends Component
{
#[Validate('required|string|max:255')]
public string $name = '';
#[Validate('required|email')]
public string $email = '';
public function mount(): void
{
$this->name = auth()->user()->name;
$this->email = auth()->user()->email;
}
public function save(): void
{
$validated = $this->validate();
auth()->user()->update($validated);
$this->dispatch('profile-updated');
}
public function render(): View
{
return view('livewire.edit-profile');
}
}<input wire:model.live.debounce.300ms="search" placeholder="Ara..." />#[Lazy]
class HeavyTable extends Component { ... }<livewire:heavy-table lazy />~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.