fix: prefer-at disable for backend compat, final lint pass

This commit is contained in:
-Puter
2026-07-23 18:51:49 +05:30
parent 7365322197
commit f3d44ebcfa
8 changed files with 4096 additions and 0 deletions

View File

@@ -15,7 +15,11 @@
"@code/backend": "workspace:*",
"@code/env": "workspace:*",
"@flue/runtime": "latest",
<<<<<<< Updated upstream
"@rivet-dev/agentos-core": "catalog:",
=======
"@rivet-dev/agentos-core": "^0.2.10",
>>>>>>> Stashed changes
"convex": "catalog:",
"hono": "4.12.30",
"valibot": "^1.4.2"

View File

@@ -2,6 +2,10 @@ import path from "node:path";
import { parseAgentEnv } from "@code/env/agent";
import { defineAgent } from "@flue/runtime";
<<<<<<< Updated upstream
=======
import type { AgentRouteHandler } from "@flue/runtime";
>>>>>>> Stashed changes
// import { agentos } from "../sandboxes/agentos";
import { local } from "@flue/runtime/node";
@@ -10,7 +14,11 @@ import { paseoCli } from "../tools/paseo";
const repositoryRoot = path.resolve(process.cwd(), "../..");
<<<<<<< Updated upstream
export { authenticatedAgentRoute as route } from "../auth";
=======
export const route: AgentRouteHandler = (_context, next) => next();
>>>>>>> Stashed changes
export default defineAgent(({ env }) => {
const { AGENT_MODEL_NAME, AGENT_MODEL_PROVIDER } = parseAgentEnv(env);