docs(dc/tool-c): Complete Tool C MVP planning and TODO list

Summary:
- Update Tool C MVP Development Plan (V1.3)
  * Clarify Python execution as core feature
  * Add 15 real medical data cleaning scenarios (basic/medium/advanced)
  * Enhance System Prompt with 10 Few-shot examples
  * Discover existing Python service (extraction_service)
  * Update to extend existing service instead of rebuilding
- Create Tool C MVP Development TODO List
  * 3-week plan with 30 tasks (Day 1-15)
  * 4 core milestones with clear acceptance criteria
  * Daily checklist and risk management
  * Detailed task breakdown for each day

Key Changes:
- Python service: Extend existing extraction_service instead of new setup
- Test scenarios: 15 scenarios (5 basic + 5 medium + 5 advanced)
- Success criteria: Basic >90%, Medium >80%, Advanced >60%, Total >80%
- Development time: Reduced from 3 weeks to 2 weeks (reuse infrastructure)

Status: Planning complete, ready to start Day 1 development
This commit is contained in:
2025-12-06 11:00:44 +08:00
parent 8a17369138
commit 8be741cd52
42 changed files with 3581 additions and 0 deletions

View File

@@ -511,3 +511,4 @@ export default FulltextDetailDrawer;

View File

@@ -110,3 +110,4 @@ export function useFulltextResults({

View File

@@ -73,3 +73,4 @@ export function useFulltextTask({

View File

@@ -464,3 +464,4 @@ export default FulltextResults;

View File

@@ -104,3 +104,4 @@ export const useAssets = (activeTab: AssetTabType) => {
};

View File

@@ -94,3 +94,4 @@ export const useRecentTasks = () => {
};

View File

@@ -52,3 +52,4 @@ export interface Asset {
export type AssetTabType = 'all' | 'processed' | 'raw';