Sprint 1-3 Completed (Backend + Frontend): Backend (Sprint 1-2): - Implement 5-layer Agent framework (Query->Planner->Executor->Tools->Reflection) - Create agent_schema with 6 tables (agent_definitions, stages, prompts, sessions, traces, reflexion_rules) - Create protocol_schema with 2 tables (protocol_contexts, protocol_generations) - Implement Protocol Agent core services (Orchestrator, ContextService, PromptBuilder) - Integrate LLM service adapter (DeepSeek/Qwen/GPT-5/Claude) - 6 API endpoints with full authentication - 10/10 API tests passed Frontend (Sprint 3): - Add Protocol Agent entry in AgentHub (indigo theme card) - Implement ProtocolAgentPage with 3-column layout - Collapsible sidebar (Gemini style, 48px <-> 280px) - StatePanel with 5 stage cards (scientific_question, pico, study_design, sample_size, endpoints) - ChatArea with sync button and action cards integration - 100% prototype design restoration (608 lines CSS) - Detailed endpoints structure: baseline, exposure, outcomes, confounders Features: - 5-stage dialogue flow for research protocol design - Conversation-driven interaction with sync-to-protocol button - Real-time context state management - One-click protocol generation button (UI ready, backend pending) Database: - agent_schema: 6 tables for reusable Agent framework - protocol_schema: 2 tables for Protocol Agent - Seed data: 1 agent + 5 stages + 9 prompts + 4 reflexion rules Code Stats: - Backend: 13 files, 4338 lines - Frontend: 14 files, 2071 lines - Total: 27 files, 6409 lines Status: MVP core functionality completed, pending frontend-backend integration testing Next: Sprint 4 - One-click protocol generation + Word export
96 lines
1.8 KiB
PowerShell
96 lines
1.8 KiB
PowerShell
#!/usr/bin/env pwsh
|
||
# REDCap Docker日志查看脚本
|
||
# 版本:v1.0
|
||
# 日期:2026-01-01
|
||
|
||
param(
|
||
[string]$Service = "", # 指定服务名(redcap-web, redcap-db, phpmyadmin)
|
||
[switch]$Follow, # 实时跟踪日志
|
||
[int]$Tail = 50 # 显示最近N行日志
|
||
)
|
||
|
||
Write-Host "📝 REDCap Docker日志" -ForegroundColor Cyan
|
||
Write-Host ""
|
||
|
||
# 切换到项目目录
|
||
$ScriptDir = Split-Path -Parent $PSCommandPath
|
||
$ProjectDir = Split-Path -Parent $ScriptDir
|
||
Set-Location $ProjectDir
|
||
|
||
# 构建docker-compose logs命令
|
||
$logCmd = "docker-compose logs"
|
||
|
||
if ($Follow) {
|
||
$logCmd += " -f"
|
||
} else {
|
||
$logCmd += " --tail=$Tail"
|
||
}
|
||
|
||
if ($Service) {
|
||
$logCmd += " $Service"
|
||
Write-Host "查看服务:$Service" -ForegroundColor Yellow
|
||
} else {
|
||
Write-Host "查看所有服务日志" -ForegroundColor Yellow
|
||
}
|
||
|
||
if ($Follow) {
|
||
Write-Host "实时跟踪模式(按Ctrl+C退出)" -ForegroundColor Gray
|
||
} else {
|
||
Write-Host "显示最近 $Tail 行日志" -ForegroundColor Gray
|
||
}
|
||
|
||
Write-Host ""
|
||
Write-Host "============================================" -ForegroundColor Gray
|
||
|
||
# 执行命令
|
||
Invoke-Expression $logCmd
|
||
|
||
Write-Host ""
|
||
Write-Host "💡 提示:" -ForegroundColor Cyan
|
||
Write-Host " • 查看特定服务:.\scripts\logs-redcap.ps1 -Service redcap-web" -ForegroundColor Gray
|
||
Write-Host " • 实时跟踪:.\scripts\logs-redcap.ps1 -Follow" -ForegroundColor Gray
|
||
Write-Host " • 显示更多行:.\scripts\logs-redcap.ps1 -Tail 100" -ForegroundColor Gray
|
||
Write-Host ""
|
||
Write-Host "可用服务名:" -ForegroundColor Cyan
|
||
Write-Host " • redcap-web(REDCap Web服务)" -ForegroundColor Gray
|
||
Write-Host " • redcap-db(MySQL数据库)" -ForegroundColor Gray
|
||
Write-Host " • phpmyadmin(数据库管理工具)" -ForegroundColor Gray
|
||
Write-Host ""
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|