diff --git a/mycelium-frontend/AGENTS.md b/mycelium-frontend/AGENTS.md new file mode 100644 index 00000000..643577df --- /dev/null +++ b/mycelium-frontend/AGENTS.md @@ -0,0 +1,9 @@ + + +# This is NOT the Next.js you know + +This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` (resolved from this file's directory; in monorepos the `next` package may not be visible from the repo root) before writing any code. Heed deprecation notices. + +This block is written and re-added by `next dev` — verify at `node_modules/next/dist/server/lib/generate-agent-files.js`. Removing it from a diff only re-creates the uncommitted change; committing it with your work keeps the tree clean. + + diff --git a/mycelium-frontend/CLAUDE.md b/mycelium-frontend/CLAUDE.md new file mode 100644 index 00000000..43c994c2 --- /dev/null +++ b/mycelium-frontend/CLAUDE.md @@ -0,0 +1 @@ +@AGENTS.md diff --git a/mycelium-frontend/src/app/layout.tsx b/mycelium-frontend/src/app/layout.tsx index 4daef2d1..549d52a6 100644 --- a/mycelium-frontend/src/app/layout.tsx +++ b/mycelium-frontend/src/app/layout.tsx @@ -5,6 +5,7 @@ import type { Metadata } from "next"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; import { CurrentUserProvider } from "@/components/current-user"; +import { NotificationSettingsProvider } from "@/components/notification-settings"; export const metadata: Metadata = { title: "mycelium", @@ -23,7 +24,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })