feat(ai): 优化拆解目标和负责人推荐
This commit is contained in:
@@ -10,9 +10,16 @@ export type AgentTaskCategoryCode =
|
||||
| 'database_schema'
|
||||
| 'api_integration'
|
||||
| 'test_functional'
|
||||
| 'test_ui_interaction'
|
||||
| 'test_form_validation'
|
||||
| 'test_api'
|
||||
| 'test_data_consistency'
|
||||
| 'test_permission'
|
||||
| 'test_exception'
|
||||
| 'test_boundary'
|
||||
| 'test_state_flow'
|
||||
| 'test_compatibility'
|
||||
| 'test_regression'
|
||||
| 'data_processing'
|
||||
| 'implementation_support'
|
||||
| 'documentation';
|
||||
@@ -31,6 +38,8 @@ export interface AgentDevTaskDraft {
|
||||
categoryCode: AgentTaskCategoryCode;
|
||||
priority: 'P0' | 'P1' | 'P2' | 'P3';
|
||||
aiEstimateHours: number;
|
||||
recommendedAssigneeName?: string;
|
||||
recommendedAssigneeReason?: string;
|
||||
references: AgentReference[];
|
||||
}
|
||||
|
||||
@@ -40,6 +49,8 @@ export interface AgentTestCaseDraft {
|
||||
categoryCode: AgentTaskCategoryCode;
|
||||
priority: 'P0' | 'P1' | 'P2' | 'P3';
|
||||
aiEstimateHours: number;
|
||||
recommendedAssigneeName?: string;
|
||||
recommendedAssigneeReason?: string;
|
||||
references: AgentReference[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user