Add 智能面试平台 (AI-powered Interview Preparation Platform)#1
Draft
Copilot wants to merge 3 commits into
Draft
Conversation
Complete Next.js 14 application with: - Home page with hero, stats, features, and category sections - Question bank (32 questions, 6 categories) with search/filter - Question detail page with hints & sample answer accordion - Mock interview with 5-question session, countdown timer, and AI feedback - Dashboard with performance chart, weak areas, and session history - AI feedback simulation (evaluateAnswer) with score, strengths, improvements - Reusable components: Navigation, QuestionCard, CategoryBadge, DifficultyBadge - Full TypeScript typing, dark theme (gray-950), Tailwind CSS - @/ alias mapped to app/, Google Fonts replaced with system font-sans Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: INYerty <175546943+INYerty@users.noreply.github.com>
…nused vars) Agent-Logs-Url: https://github.com/INYerty/interview-guide/sessions/5d500aeb-064e-428d-8573-f9a7faec4b99 Co-authored-by: INYerty <175546943+INYerty@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add intelligent interview platform features
Add 智能面试平台 (AI-powered Interview Preparation Platform)
May 1, 2026
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.
Greenfield implementation of a full-stack intelligent interview platform built with Next.js 14 (App Router), TypeScript, and Tailwind CSS.
Routes
/— Hero landing page with stats, feature highlights, and category quick-links/questions— 32-question bank across 6 categories (算法, 系统设计, 行为面试, 数据库, 网络, 操作系统); filterable by category, difficulty, and keyword search; URL-param-driven initial state (?category=算法)/questions/[id]— Full question detail with collapsible hints and sample answers/interview— 5-question mock sessions with per-question countdown timers and AI evaluation after each submission/dashboard— Session history, category performance breakdown, weak-area identification, and recommended questionsAI Feedback Layer
app/services/aiService.tsprovides a pluggable evaluation layer — currently simulates scoring by answer depth and returns structured{ score, summary, strengths, improvements, relatedTopics }. Designed to be swapped for a real LLM call without changing the consumer interface.Data
Question bank lives in
app/data/questions.tsas typedQuestion[]— no external DB dependency, easy to extend or replace with an API call.Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
fonts.googleapis.com/usr/local/bin/node node /home/REDACTED/work/interview-guide/interview-guide/node_modules/.bin/next build(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt