6 lines
349 B
SQL
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;
|