小橘 d1a2ee876a fix: hermesRun command and tester verdict via llmExtract
- Fix hermes invocation: 'hermes -q' → 'hermes chat -q' with proper flags
- Replace fragile string.includes('PASS') with llmExtract judge
  (previous false positive: matched '--pass-session-id' in usage text)

小橘 🍊(NEKO Team)
2026-04-23 12:20:11 +00:00

15 lines
465 B
SQL

-- Migration: 0001_init
-- Creates the disk_usage_mounts table for disk-usage-mounts sense.
CREATE TABLE IF NOT EXISTS disk_usage_mounts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
ts INTEGER NOT NULL,
device TEXT NOT NULL,
mount TEXT NOT NULL,
fstype TEXT NOT NULL,
total_bytes INTEGER NOT NULL,
used_bytes INTEGER NOT NULL,
avail_bytes INTEGER NOT NULL,
used_percent REAL NOT NULL
);