feat(littleblue): agent seed + persona + chat route

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
root
2026-06-04 21:43:34 +10:00
parent ff681847ed
commit b064f7f1a9
6 changed files with 130 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
-- 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;