wip convo ui

This commit is contained in:
2026-06-23 00:59:06 +01:00
parent 25713ef614
commit 57c3275cce
30 changed files with 1649 additions and 251 deletions

View File

@@ -15,6 +15,8 @@
"create-admin": "bun run src/scripts/create-admin.ts"
},
"dependencies": {
"@better-auth/core": "^1.6.20",
"@better-auth/expo": "^1.6.20",
"@earendil-works/pi-coding-agent": "^0.79.1",
"@freya/agent-protocol": "workspace:*",
"@freya/core": "workspace:*",
@@ -29,7 +31,7 @@
"@nym.sh/jrpc": "^0.1.0",
"@openrouter/sdk": "^0.9.11",
"arktype": "^2.1.29",
"better-auth": "^1",
"better-auth": "^1.6.20",
"drizzle-orm": "^0.45.1",
"hono": "^4",
"lodash.merge": "^4.6.2",

View File

@@ -1,3 +1,4 @@
import { expo } from "@better-auth/expo"
import { betterAuth } from "better-auth"
import { drizzleAdapter } from "better-auth/adapters/drizzle"
import { admin } from "better-auth/plugins"
@@ -32,7 +33,7 @@ export function createAuth(db: Database) {
},
},
},
plugins: [admin()],
plugins: [admin(), expo()],
})
}