@zeyue0329/xiaoma-cli 1.0.24 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/ENHANCED_WORKFLOW_OPTIMIZATION.md +225 -0
  2. package/ENHANCED_WORKFLOW_OPTIMIZATION_SUMMARY.md +293 -0
  3. package/dist/teams/team-fullstack-with-database.txt +1447 -377
  4. package/package.json +1 -1
  5. package/tools/installer/package.json +1 -1
  6. package/xiaoma-core/agents/automated-fix-validator.yaml +578 -0
  7. package/xiaoma-core/agents/automated-quality-validator.yaml +544 -0
  8. package/xiaoma-core/agents/enhanced-workflow-orchestrator.yaml +303 -0
  9. package/xiaoma-core/agents/global-requirements-auditor.yaml +512 -0
  10. package/xiaoma-core/agents/intelligent-template-adapter.yaml +375 -0
  11. package/xiaoma-core/agents/issue-dispatcher.yaml +627 -0
  12. package/xiaoma-core/agents/master-execution-engine.yaml +529 -0
  13. package/xiaoma-core/agents/requirements-coverage-auditor.yaml +373 -0
  14. package/xiaoma-core/docs/ENHANCED_WORKFLOW_USAGE_GUIDE.md +306 -0
  15. package/xiaoma-core/docs/SERIAL_EXECUTION_WORKFLOW_GUIDE.md +347 -0
  16. package/xiaoma-core/docs/ULTIMATE_AUTOMATION_USAGE_GUIDE.md +291 -0
  17. package/xiaoma-core/docs/activate-enhanced-workflow.md +154 -0
  18. package/xiaoma-core/tasks/requirements-coverage-audit.md +198 -0
  19. package/xiaoma-core/templates/global-qa-monitoring-tmpl.yaml +442 -0
  20. package/xiaoma-core/templates/requirements-coverage-audit.yaml +329 -0
  21. package/xiaoma-core/templates/start-enhanced-workflow.yaml +347 -0
  22. package/xiaoma-core/workflows/enhanced-fullstack-with-database.yaml +177 -14
  23. package/xiaoma-core/workflows/enhanced-fullstack-with-qa-loop.yaml +766 -0
  24. package/xiaoma-core/workflows/full-requirement-automation.yaml +1267 -360
@@ -0,0 +1,627 @@
1
+ # Issue Dispatcher and Feedback Agent
2
+ # 问题分发与回溯智能体
3
+
4
+ meta:
5
+ name: "Issue Dispatcher and Feedback Agent"
6
+ version: "2.0"
7
+ description: "智能问题分发、任务路由和反馈回溯管理智能体,负责闭环质量保证流程的协调"
8
+ created_date: "2025-09-10"
9
+ specialization: "issue_routing_and_feedback_management"
10
+ priority: "CRITICAL"
11
+
12
+ # ========== 智能体核心能力 ==========
13
+ agent_capabilities:
14
+ core_functions:
15
+ - "智能问题分类与优先级排序"
16
+ - "动态任务路由与分配"
17
+ - "反馈循环管理与追踪"
18
+ - "修复进度监控与催办"
19
+ - "多智能体协调与通信"
20
+ - "冲突检测与解决"
21
+ - "工作流状态同步"
22
+ - "智能重试与回滚管理"
23
+
24
+ routing_intelligence:
25
+ - "基于问题类型的智能路由"
26
+ - "负载均衡考虑"
27
+ - "技能匹配优化"
28
+ - "历史性能分析"
29
+ - "依赖关系管理"
30
+ - "并行任务编排"
31
+
32
+ # ========== 问题接收与分析引擎 ==========
33
+ issue_reception_engine:
34
+ input_sources:
35
+ - source: "global_requirements_auditor"
36
+ priority: "HIGHEST"
37
+ data_format: "structured_audit_report"
38
+ processing: "immediate"
39
+
40
+ - source: "automated_quality_validator"
41
+ priority: "HIGH"
42
+ data_format: "quality_validation_report"
43
+ processing: "immediate"
44
+
45
+ - source: "continuous_monitoring"
46
+ priority: "MEDIUM"
47
+ data_format: "real_time_alerts"
48
+ processing: "batched"
49
+
50
+ - source: "manual_feedback"
51
+ priority: "VARIABLE"
52
+ data_format: "unstructured_text"
53
+ processing: "queued"
54
+
55
+ issue_parser:
56
+ parsing_strategies:
57
+ - strategy: "structured_data_parser"
58
+ applicable_to: ["audit_reports", "validation_reports"]
59
+ extraction_rules:
60
+ - issue_id_extraction
61
+ - severity_identification
62
+ - component_mapping
63
+ - root_cause_extraction
64
+ - suggested_action_parsing
65
+
66
+ - strategy: "natural_language_parser"
67
+ applicable_to: ["manual_feedback", "comments"]
68
+ nlp_techniques:
69
+ - sentiment_analysis
70
+ - entity_recognition
71
+ - intent_classification
72
+ - urgency_detection
73
+
74
+ - strategy: "pattern_matcher"
75
+ applicable_to: ["error_logs", "alerts"]
76
+ patterns:
77
+ - error_pattern_recognition
78
+ - anomaly_detection
79
+ - trend_identification
80
+
81
+ # ========== 智能分类与优先级引擎 ==========
82
+ classification_prioritization_engine:
83
+ classification_dimensions:
84
+ by_severity:
85
+ critical:
86
+ description: "生产阻塞或数据丢失风险"
87
+ sla: "2_hours"
88
+ escalation: "immediate"
89
+ high:
90
+ description: "主要功能受影响"
91
+ sla: "8_hours"
92
+ escalation: "4_hours"
93
+ medium:
94
+ description: "次要功能问题"
95
+ sla: "24_hours"
96
+ escalation: "12_hours"
97
+ low:
98
+ description: "优化建议"
99
+ sla: "72_hours"
100
+ escalation: "none"
101
+
102
+ by_type:
103
+ requirement_gap:
104
+ description: "需求覆盖缺失"
105
+ default_assignee: "sm"
106
+ fix_complexity: "medium"
107
+
108
+ story_quality:
109
+ description: "用户故事质量问题"
110
+ default_assignee: "sm"
111
+ fix_complexity: "low"
112
+
113
+ implementation_defect:
114
+ description: "代码实现缺陷"
115
+ default_assignee: "dev"
116
+ fix_complexity: "variable"
117
+
118
+ test_coverage:
119
+ description: "测试覆盖不足"
120
+ default_assignee: "qa"
121
+ fix_complexity: "medium"
122
+
123
+ integration_issue:
124
+ description: "集成问题"
125
+ default_assignee: "architect"
126
+ fix_complexity: "high"
127
+
128
+ performance_issue:
129
+ description: "性能问题"
130
+ default_assignee: "dev"
131
+ fix_complexity: "high"
132
+
133
+ documentation_gap:
134
+ description: "文档缺失"
135
+ default_assignee: "doc"
136
+ fix_complexity: "low"
137
+
138
+ prioritization_algorithm:
139
+ factors:
140
+ - factor: "business_impact"
141
+ weight: 35
142
+ scoring:
143
+ revenue_impact: 10
144
+ user_experience: 8
145
+ compliance_risk: 9
146
+ brand_reputation: 7
147
+
148
+ - factor: "technical_severity"
149
+ weight: 30
150
+ scoring:
151
+ data_integrity: 10
152
+ system_stability: 9
153
+ functionality: 7
154
+ performance: 6
155
+
156
+ - factor: "effort_estimate"
157
+ weight: 20
158
+ scoring:
159
+ quick_fix: 10
160
+ moderate_effort: 6
161
+ significant_effort: 3
162
+ major_rework: 1
163
+
164
+ - factor: "dependency_count"
165
+ weight: 15
166
+ scoring:
167
+ no_dependencies: 10
168
+ few_dependencies: 7
169
+ many_dependencies: 4
170
+ critical_path: 1
171
+
172
+ priority_calculation: "weighted_sum_with_threshold_adjustment"
173
+
174
+ queue_management:
175
+ strategy: "dynamic_priority_queue"
176
+ rebalancing_frequency: "every_30_minutes"
177
+ starvation_prevention: true
178
+ aging_factor: 1.1 # 每天增加10%优先级
179
+
180
+ # ========== 智能路由与分配引擎 ==========
181
+ intelligent_routing_engine:
182
+ routing_strategies:
183
+ - strategy: "skill_based_routing"
184
+ description: "基于技能匹配的路由"
185
+ matching_criteria:
186
+ - agent_capabilities
187
+ - historical_performance
188
+ - current_workload
189
+ - availability_status
190
+
191
+ - strategy: "round_robin_with_weights"
192
+ description: "加权轮询路由"
193
+ applicable_when: "multiple_qualified_agents"
194
+ weight_factors:
195
+ - success_rate
196
+ - average_resolution_time
197
+ - quality_score
198
+
199
+ - strategy: "escalation_routing"
200
+ description: "升级路由"
201
+ triggers:
202
+ - sla_breach_imminent
203
+ - repeated_failures
204
+ - critical_severity
205
+ escalation_path:
206
+ - primary_agent
207
+ - senior_agent
208
+ - architect_agent
209
+ - human_intervention
210
+
211
+ task_assignment_rules:
212
+ - rule: "missing_user_story"
213
+ conditions:
214
+ issue_type: "requirement_gap"
215
+ sub_type: "missing_story"
216
+ assignments:
217
+ primary: "sm"
218
+ backup: "po"
219
+ action_template:
220
+ command: "create_user_story"
221
+ parameters:
222
+ - requirement_id
223
+ - epic_context
224
+ - acceptance_criteria
225
+ validation_required: true
226
+ success_criteria:
227
+ - story_created
228
+ - requirement_mapped
229
+ - acceptance_criteria_defined
230
+
231
+ - rule: "story_quality_improvement"
232
+ conditions:
233
+ issue_type: "story_quality"
234
+ quality_score: "<85"
235
+ assignments:
236
+ primary: "sm"
237
+ reviewer: "po"
238
+ action_template:
239
+ command: "refine_user_story"
240
+ parameters:
241
+ - story_id
242
+ - quality_issues
243
+ - improvement_suggestions
244
+ validation_required: true
245
+ success_criteria:
246
+ - quality_score: ">=90"
247
+ - invest_compliance: true
248
+
249
+ - rule: "code_implementation_fix"
250
+ conditions:
251
+ issue_type: "implementation_defect"
252
+ assignments:
253
+ primary: "dev"
254
+ reviewer: "qa"
255
+ action_template:
256
+ command: "fix_implementation"
257
+ parameters:
258
+ - defect_id
259
+ - root_cause
260
+ - fix_suggestion
261
+ - test_cases
262
+ validation_required: true
263
+ success_criteria:
264
+ - code_fixed
265
+ - tests_passing
266
+ - review_approved
267
+
268
+ - rule: "test_coverage_enhancement"
269
+ conditions:
270
+ issue_type: "test_coverage"
271
+ coverage: "<80"
272
+ assignments:
273
+ primary: "qa"
274
+ support: "dev"
275
+ action_template:
276
+ command: "enhance_test_coverage"
277
+ parameters:
278
+ - component_id
279
+ - current_coverage
280
+ - target_coverage
281
+ - test_types_needed
282
+ validation_required: false
283
+ success_criteria:
284
+ - coverage: ">=80"
285
+ - critical_paths_covered: true
286
+
287
+ # ========== 反馈循环管理器 ==========
288
+ feedback_loop_manager:
289
+ loop_configuration:
290
+ max_iterations: 5
291
+ iteration_timeout: 3600 # 1小时
292
+ convergence_criteria:
293
+ - all_critical_issues_resolved
294
+ - quality_score_achieved
295
+ - coverage_targets_met
296
+
297
+ feedback_tracking:
298
+ tracking_elements:
299
+ - issue_id
300
+ - assigned_agent
301
+ - assignment_timestamp
302
+ - current_status
303
+ - iteration_count
304
+ - resolution_attempts
305
+ - blockers_encountered
306
+ - partial_progress
307
+
308
+ status_transitions:
309
+ assigned:
310
+ next_states: ["in_progress", "blocked", "cancelled"]
311
+ timeout: 300 # 5分钟开始处理
312
+
313
+ in_progress:
314
+ next_states: ["validation", "blocked", "failed"]
315
+ timeout: 3600 # 1小时完成
316
+
317
+ validation:
318
+ next_states: ["completed", "rejected", "rework"]
319
+ timeout: 600 # 10分钟验证
320
+
321
+ blocked:
322
+ next_states: ["in_progress", "escalated", "cancelled"]
323
+ timeout: 1800 # 30分钟解决阻塞
324
+
325
+ rework:
326
+ next_states: ["in_progress"]
327
+ max_rework_count: 3
328
+
329
+ completed:
330
+ next_states: ["closed"]
331
+ success_notification: true
332
+
333
+ failed:
334
+ next_states: ["escalated", "cancelled"]
335
+ failure_analysis_required: true
336
+
337
+ progress_monitoring:
338
+ monitoring_frequency: "every_5_minutes"
339
+ health_checks:
340
+ - agent_responsiveness
341
+ - task_progress_rate
342
+ - error_rate_threshold
343
+ - resource_utilization
344
+
345
+ intervention_triggers:
346
+ - no_progress_for_15_minutes
347
+ - error_rate_exceeds_10_percent
348
+ - agent_unresponsive
349
+ - sla_breach_risk
350
+
351
+ intervention_actions:
352
+ - send_reminder
353
+ - escalate_to_backup
354
+ - reassign_task
355
+ - split_into_subtasks
356
+ - request_human_help
357
+
358
+ # ========== 协调与通信机制 ==========
359
+ coordination_communication:
360
+ inter_agent_communication:
361
+ protocols:
362
+ - protocol: "synchronous_request_response"
363
+ use_cases: ["immediate_actions", "validations"]
364
+ timeout: 300
365
+ retry_policy:
366
+ max_retries: 3
367
+ backoff: "exponential"
368
+
369
+ - protocol: "asynchronous_messaging"
370
+ use_cases: ["batch_processing", "notifications"]
371
+ delivery_guarantee: "at_least_once"
372
+ message_queue: "priority_queue"
373
+
374
+ - protocol: "event_driven"
375
+ use_cases: ["status_updates", "completion_notifications"]
376
+ event_bus: "distributed"
377
+ event_retention: "7_days"
378
+
379
+ message_formats:
380
+ task_assignment:
381
+ schema: "json"
382
+ required_fields:
383
+ - task_id
384
+ - task_type
385
+ - priority
386
+ - deadline
387
+ - context
388
+ - success_criteria
389
+
390
+ status_update:
391
+ schema: "json"
392
+ required_fields:
393
+ - task_id
394
+ - current_status
395
+ - progress_percentage
396
+ - blockers
397
+ - eta
398
+
399
+ completion_report:
400
+ schema: "json"
401
+ required_fields:
402
+ - task_id
403
+ - final_status
404
+ - resolution_details
405
+ - validation_results
406
+ - metrics
407
+
408
+ conflict_resolution:
409
+ conflict_types:
410
+ - type: "resource_contention"
411
+ resolution: "priority_based_allocation"
412
+
413
+ - type: "contradictory_fixes"
414
+ resolution: "architectural_review"
415
+
416
+ - type: "circular_dependencies"
417
+ resolution: "dependency_breaking"
418
+
419
+ - type: "version_conflicts"
420
+ resolution: "merge_strategy"
421
+
422
+ resolution_strategies:
423
+ automated_resolution:
424
+ applicable_to: ["simple_conflicts", "clear_priorities"]
425
+ methods:
426
+ - rule_based_resolution
427
+ - priority_comparison
428
+ - timestamp_ordering
429
+
430
+ collaborative_resolution:
431
+ applicable_to: ["complex_conflicts", "cross_component"]
432
+ methods:
433
+ - multi_agent_negotiation
434
+ - consensus_building
435
+ - voting_mechanism
436
+
437
+ escalated_resolution:
438
+ applicable_to: ["critical_conflicts", "deadlocks"]
439
+ methods:
440
+ - architect_intervention
441
+ - human_decision
442
+ - rollback_and_retry
443
+
444
+ # ========== 修复验证与回归 ==========
445
+ fix_validation_engine:
446
+ validation_stages:
447
+ - stage: "immediate_validation"
448
+ description: "立即验证修复是否解决了报告的问题"
449
+ validators:
450
+ - syntax_checker
451
+ - unit_test_runner
452
+ - static_analyzer
453
+ pass_criteria:
454
+ - no_syntax_errors
455
+ - unit_tests_passing
456
+ - no_new_issues_introduced
457
+
458
+ - stage: "integration_validation"
459
+ description: "验证修复对系统集成的影响"
460
+ validators:
461
+ - integration_test_runner
462
+ - api_contract_validator
463
+ - database_consistency_checker
464
+ pass_criteria:
465
+ - integration_tests_passing
466
+ - api_contracts_maintained
467
+ - data_integrity_preserved
468
+
469
+ - stage: "regression_validation"
470
+ description: "确保修复没有引入新问题"
471
+ validators:
472
+ - regression_test_suite
473
+ - performance_benchmarker
474
+ - security_scanner
475
+ pass_criteria:
476
+ - no_regression_failures
477
+ - performance_maintained
478
+ - no_security_vulnerabilities
479
+
480
+ - stage: "business_validation"
481
+ description: "验证业务需求满足情况"
482
+ validators:
483
+ - acceptance_test_runner
484
+ - requirement_coverage_checker
485
+ - user_story_validator
486
+ pass_criteria:
487
+ - acceptance_criteria_met
488
+ - requirements_covered
489
+ - story_completed
490
+
491
+ validation_orchestration:
492
+ execution_mode: "progressive" # 逐步深入
493
+ early_termination: true # 失败即停止
494
+ parallel_validation: true # 并行验证
495
+
496
+ failure_handling:
497
+ immediate_failure:
498
+ action: "reject_and_rework"
499
+ notification: "immediate"
500
+
501
+ partial_failure:
502
+ action: "analyze_and_decide"
503
+ options: ["partial_accept", "full_rework", "split_task"]
504
+
505
+ validation_timeout:
506
+ action: "escalate"
507
+ fallback: "manual_validation"
508
+
509
+ # ========== 报告与度量 ==========
510
+ reporting_metrics:
511
+ operational_metrics:
512
+ - metric: "mean_time_to_resolution"
513
+ calculation: "average(resolution_time)"
514
+ target: "<4_hours"
515
+ tracking_period: "rolling_7_days"
516
+
517
+ - metric: "first_time_fix_rate"
518
+ calculation: "successful_fixes / total_fixes"
519
+ target: ">80%"
520
+ tracking_period: "rolling_30_days"
521
+
522
+ - metric: "rework_rate"
523
+ calculation: "rework_count / total_fixes"
524
+ target: "<20%"
525
+ tracking_period: "rolling_30_days"
526
+
527
+ - metric: "sla_compliance"
528
+ calculation: "on_time_resolutions / total_resolutions"
529
+ target: ">95%"
530
+ tracking_period: "rolling_7_days"
531
+
532
+ quality_metrics:
533
+ - metric: "fix_effectiveness"
534
+ calculation: "permanent_fixes / total_fixes"
535
+ target: ">90%"
536
+
537
+ - metric: "regression_rate"
538
+ calculation: "regressions_introduced / total_fixes"
539
+ target: "<5%"
540
+
541
+ - metric: "validation_accuracy"
542
+ calculation: "correct_validations / total_validations"
543
+ target: ">95%"
544
+
545
+ reporting_dashboards:
546
+ real_time_dashboard:
547
+ refresh_rate: "30_seconds"
548
+ widgets:
549
+ - active_issues_count
550
+ - in_progress_fixes
551
+ - blocked_tasks
552
+ - sla_risk_items
553
+ - agent_workload_chart
554
+ - resolution_trend_graph
555
+
556
+ daily_summary:
557
+ generation_time: "09:00_AM"
558
+ contents:
559
+ - issues_received
560
+ - issues_resolved
561
+ - outstanding_issues
562
+ - average_resolution_time
563
+ - top_problem_areas
564
+ - agent_performance
565
+
566
+ weekly_analysis:
567
+ generation_time: "Monday_09:00_AM"
568
+ contents:
569
+ - trend_analysis
570
+ - root_cause_patterns
571
+ - improvement_opportunities
572
+ - capacity_planning
573
+ - quality_trends
574
+
575
+ # ========== 智能学习与优化 ==========
576
+ learning_optimization:
577
+ pattern_recognition:
578
+ - pattern: "recurring_issues"
579
+ detection: "frequency_analysis"
580
+ action: "root_cause_investigation"
581
+ optimization: "preventive_measures"
582
+
583
+ - pattern: "fix_effectiveness"
584
+ detection: "success_rate_tracking"
585
+ action: "best_practice_extraction"
586
+ optimization: "template_updates"
587
+
588
+ - pattern: "agent_performance"
589
+ detection: "performance_analytics"
590
+ action: "skill_gap_identification"
591
+ optimization: "training_recommendations"
592
+
593
+ continuous_improvement:
594
+ - improvement: "routing_optimization"
595
+ method: "machine_learning"
596
+ inputs: ["historical_assignments", "resolution_times", "success_rates"]
597
+ output: "optimized_routing_rules"
598
+
599
+ - improvement: "priority_tuning"
600
+ method: "feedback_analysis"
601
+ inputs: ["business_impact", "actual_urgency", "resolution_effort"]
602
+ output: "adjusted_priority_weights"
603
+
604
+ - improvement: "validation_enhancement"
605
+ method: "false_positive_analysis"
606
+ inputs: ["validation_results", "actual_outcomes", "rework_cases"]
607
+ output: "improved_validation_rules"
608
+
609
+ # ========== 成功标准 ==========
610
+ success_criteria:
611
+ operational_excellence:
612
+ - "问题路由准确率>95%"
613
+ - "平均响应时间<5分钟"
614
+ - "SLA达成率>95%"
615
+ - "首次修复成功率>80%"
616
+
617
+ quality_assurance:
618
+ - "验证准确率>95%"
619
+ - "回归率<5%"
620
+ - "问题逃逸率<2%"
621
+ - "修复永久性>90%"
622
+
623
+ efficiency_metrics:
624
+ - "自动化处理率>85%"
625
+ - "并行处理能力>10个任务"
626
+ - "资源利用率70-85%"
627
+ - "端到端处理时间<4小时"