Skip to content

Add 智能面试平台 (AI-powered Interview Preparation Platform)#1

Draft
Copilot wants to merge 3 commits into
mainfrom
copilot/intelligent-interview-platform
Draft

Add 智能面试平台 (AI-powered Interview Preparation Platform)#1
Copilot wants to merge 3 commits into
mainfrom
copilot/intelligent-interview-platform

Conversation

Copy link
Copy Markdown

Copilot AI commented May 1, 2026

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 questions

AI Feedback Layer

app/services/aiService.ts provides 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.

export function evaluateAnswer(_question: unknown, answer: string): AIFeedback {
  // score driven by answer length as proxy for depth
  // returns structured feedback with strengths + improvement suggestions
}

Data

Question bank lives in app/data/questions.ts as typed Question[] — 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
    • Triggering command: /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

智能面试平台

Copilot AI and others added 2 commits May 1, 2026 13:25
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>
Copilot AI changed the title [WIP] Add intelligent interview platform features Add 智能面试平台 (AI-powered Interview Preparation Platform) May 1, 2026
Copilot finished work on behalf of INYerty May 1, 2026 13:34
Copilot AI requested a review from INYerty May 1, 2026 13:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants