feat(frontend): Next.js 15 + React 19 scaffold#25
Merged
Conversation
Minimal scaffold for the research KG visualization frontend:
- Next.js 15 (app router, Turbopack), React 19, TypeScript 5.7
- TailwindCSS, reactflow (graph viz), TanStack Query, zod
- ESLint 9 + Prettier + Vitest configured
Source: app/{layout,page}.tsx + globals.css + build configs.
node_modules/.next gitignored. No lockfile yet — deps install +
`next build` verification is a follow-up (documented in PR).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- [Medium] next.config rewrite now explicitly targets the Deno HTTP gateway per ADR-003 (renamed env → NEXT_PUBLIC_KHIVE_GATEWAY_URL, added comment tying :8000 default to `deno task server`). - [Low] Drop experimental.typedRoutes (conflicts with `next dev --turbopack` in Next 15.1; webpack-only feature). - [Low] Add frontend/README.md documenting stack, gateway contract, and honest scaffold status. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ohdearquant
added a commit
that referenced
this pull request
May 20, 2026
Proposes Deno + Hono REST wrapper over the Request DSL for the Next.js frontend dashboard (PR #25, issue #70). Defines REST routes for entities, edges, tasks, search, and traversal; raw /api/request DSL passthrough; bearer-token auth with local-dev no-auth mode; CORS policy; consistent error envelope; and WebSocket/SSE event stream stub deferred to phase 2 pending ADR-038. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Minimal scaffold for the research KG visualization frontend:
reactflow(graph viz), TanStack Query, zod10 files:
app/{layout,page}.tsx+globals.css+ build configs.node_modules/and.next/are gitignored.Status
This is a scaffold only. Honest build status:
pnpm install+pnpm buildnot yet run (node deps not installed in the authoring environment)pnpm installon a follow-up will pin depsFollow-up PR will install deps, commit the lockfile, and verify
next build+ a smoke render.Test plan
pnpm install && pnpm build(follow-up)🤖 Generated with Claude Code