Yadong (Adam) Zhang

Results 39 issues of Yadong (Adam) Zhang

## Summary by CodeRabbit * **Chores** * Upgraded Prisma from v6 to v7 and added corresponding client dependency. * Added a TypeScript config for the database package and moved to...

https://agents.md/

### Proposed ESLint Rule ```ts "@typescript-eslint/no-restricted-syntax": [ "error", { selector: "TSEnumDeclaration", message: "Runtime enums increase bundle size and reduce tree-shaking effectiveness. Use `as const` objects or union types instead." }...

enhancement

## Summary by CodeRabbit * **Chores** * Added Better Auth MCP server integration to expand available server capabilities ✏️ Tip: You can customize this high-level summary in your review settings.

Close #2546 ```ts import * as z from "zod"; const baz = z .object({ a: z.string(), }); const foo = z .object({ b: z.string(), }) .merge(baz); const bar = foo...