feat(rvw): Complete RVW module development Phase 1-3

Summary:
- Migrate backend to modules/rvw with v2 API routes (/api/v2/rvw)
- Add new database fields: selectedAgents, editorialScore, methodologyStatus, picoExtract, isArchived
- Create frontend module in frontend-v2/src/modules/rvw
- Implement Dashboard with task list, filtering, batch operations
- Implement ReportDetail with dual tabs (editorial/methodology)
- Implement AgentModal for intelligent agent selection
- Register RVW module in moduleRegistry.ts
- Add navigation entry in TopNavigation
- Update documentation for RVW module status (v3.0)
- Update system status document (v2.9)

Features:
- User can select agents: editorial, methodology, or both
- Support batch task execution
- Task status filtering
- Replace console.log with logger service
- Maintain v1 API backward compatibility

Tested: Frontend and backend verified locally
Status: 85% complete (Phase 1-3 done)
This commit is contained in:
2026-01-07 22:39:08 +08:00
parent 06028c6952
commit 179afa2c6b
226 changed files with 5860 additions and 21 deletions

View File

@@ -1032,5 +1032,6 @@ Redis 实例¥500/月

View File

@@ -490,5 +490,6 @@ import { ChatContainer } from '@/shared/components/Chat';

View File

@@ -410,3 +410,4 @@ frontend-v2/src/modules/pkb/

View File

@@ -272,3 +272,4 @@ npm run dev

View File

@@ -787,3 +787,4 @@ AIA智能问答模块

View File

@@ -932,3 +932,4 @@ CREATE INDEX idx_rvw_tasks_created_at ON rvw_schema.review_tasks(created_at);

View File

@@ -585,3 +585,4 @@ const typography = {

View File

@@ -897,3 +897,4 @@ app.use('/api/v1/knowledge', (req, res) => {

View File

@@ -211,3 +211,4 @@ rm -rf src/modules/pkb

View File

@@ -386,3 +386,4 @@ GET /api/v2/pkb/batch-tasks/batch/templates

View File

@@ -30,3 +30,4 @@ import pkbRoutes from './modules/pkb/routes/index.js';

View File

@@ -299,3 +299,4 @@ backend/

View File

@@ -510,3 +510,4 @@ const response = await fetch('/api/v2/pkb/batch-tasks/batch/execute', {