feat(admin): Complete Phase 3.5.1-3.5.4 Prompt Management System (83%)

Summary:
- Implement Prompt management infrastructure and core services
- Build admin portal frontend with light theme
- Integrate CodeMirror 6 editor for non-technical users

Phase 3.5.1: Infrastructure Setup
- Create capability_schema for Prompt storage
- Add prompt_templates and prompt_versions tables
- Add prompt:view/edit/debug/publish permissions
- Migrate RVW prompts to database (RVW_EDITORIAL, RVW_METHODOLOGY)

Phase 3.5.2: PromptService Core
- Implement gray preview logic (DRAFT for debuggers, ACTIVE for users)
- Module-level debug control (setDebugMode)
- Handlebars template rendering
- Variable extraction and validation (extractVariables, validateVariables)
- Three-level disaster recovery (database -> cache -> hardcoded fallback)

Phase 3.5.3: Management API
- 8 RESTful endpoints (/api/admin/prompts/*)
- Permission control (PROMPT_ENGINEER can edit, SUPER_ADMIN can publish)

Phase 3.5.4: Frontend Management UI
- Build admin portal architecture (AdminLayout, OrgLayout)
- Add route system (/admin/*, /org/*)
- Implement PromptListPage (filter, search, debug switch)
- Implement PromptEditor (CodeMirror 6 simplified for clinical users)
- Implement PromptEditorPage (edit, save, publish, test, version history)

Technical Details:
- Backend: 6 files, ~2044 lines (prompt.service.ts 596 lines)
- Frontend: 9 files, ~1735 lines (PromptEditorPage.tsx 399 lines)
- CodeMirror 6: Line numbers, auto-wrap, variable highlight, search, undo/redo
- Chinese-friendly: 15px font, 1.8 line-height, system fonts

Next Step: Phase 3.5.5 - Integrate RVW module with PromptService

Tested: Backend API tests passed (8/8), Frontend pending user testing
Status: Ready for Phase 3.5.5 RVW integration
This commit is contained in:
2026-01-11 21:25:16 +08:00
parent cdfbc9927a
commit 5523ef36ea
297 changed files with 15914 additions and 1266 deletions

View File

@@ -571,5 +571,6 @@ df['creatinine'] = pd.to_numeric(df['creatinine'], errors='coerce')

View File

@@ -986,5 +986,6 @@ export const aiController = new AIController();

View File

@@ -1320,5 +1320,6 @@ npm install react-markdown

View File

@@ -228,5 +228,6 @@ FMA___基线 | FMA___1个月 | FMA___2个月

View File

@@ -386,5 +386,6 @@ formula = "FMA总分0-100 / 100"

View File

@@ -220,5 +220,6 @@ async handleFillnaMice(request, reply) {

View File

@@ -192,5 +192,6 @@ method: 'mean' | 'median' | 'mode' | 'constant' | 'ffill' | 'bfill'

View File

@@ -643,5 +643,6 @@ import { logger } from '../../../../common/logging/index.js';

View File

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

View File

@@ -356,5 +356,6 @@ const initialMessages = defaultMessages.length > 0 ? defaultMessages : [{

View File

@@ -644,5 +644,6 @@ http://localhost:5173/data-cleaning/tool-c

View File

@@ -432,5 +432,6 @@ Docs: docs/03-业务模块/DC-数据清洗整理/06-开发记录/DC模块重建

View File

@@ -305,5 +305,6 @@ ConflictDetectionService // 冲突检测(字段级对比)

View File

@@ -469,5 +469,6 @@ Tool B后端代码**100%复用**了平台通用能力层,无任何重复开发

View File

@@ -246,5 +246,6 @@ $ node scripts/check-dc-tables.mjs

View File

@@ -479,5 +479,6 @@ ${fields.map((f, i) => `${i + 1}. ${f.name}${f.desc}`).join('\n')}