Files
Void-Homelab/lib/db/migrations/017_little_blue.sql
2026-06-04 21:43:34 +10:00

6 lines
349 B
SQL

-- Seed Little Blue, the homelab caretaker/fix-it agent. read + act (no content write).
-- 'act' is enforced by the action service's tier-gating + whitelist, not canAct.
INSERT INTO agents (slug, name, kind, model, capabilities)
VALUES ('little-blue', 'Little Blue', 'claude', NULL, '{"read":true,"act":true}'::jsonb)
ON CONFLICT (slug) DO NOTHING;