empathy-framework 4.6.6__py3-none-any.whl → 4.7.1__py3-none-any.whl

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 (273) hide show
  1. empathy_framework-4.7.1.dist-info/METADATA +690 -0
  2. empathy_framework-4.7.1.dist-info/RECORD +379 -0
  3. {empathy_framework-4.6.6.dist-info → empathy_framework-4.7.1.dist-info}/top_level.txt +1 -2
  4. empathy_healthcare_plugin/monitors/monitoring/__init__.py +9 -9
  5. empathy_llm_toolkit/agent_factory/__init__.py +6 -6
  6. empathy_llm_toolkit/agent_factory/adapters/wizard_adapter.py +7 -10
  7. empathy_llm_toolkit/agents_md/__init__.py +22 -0
  8. empathy_llm_toolkit/agents_md/loader.py +218 -0
  9. empathy_llm_toolkit/agents_md/parser.py +271 -0
  10. empathy_llm_toolkit/agents_md/registry.py +307 -0
  11. empathy_llm_toolkit/commands/__init__.py +51 -0
  12. empathy_llm_toolkit/commands/context.py +375 -0
  13. empathy_llm_toolkit/commands/loader.py +301 -0
  14. empathy_llm_toolkit/commands/models.py +231 -0
  15. empathy_llm_toolkit/commands/parser.py +371 -0
  16. empathy_llm_toolkit/commands/registry.py +429 -0
  17. empathy_llm_toolkit/config/__init__.py +8 -8
  18. empathy_llm_toolkit/config/unified.py +3 -7
  19. empathy_llm_toolkit/context/__init__.py +22 -0
  20. empathy_llm_toolkit/context/compaction.py +455 -0
  21. empathy_llm_toolkit/context/manager.py +434 -0
  22. empathy_llm_toolkit/hooks/__init__.py +24 -0
  23. empathy_llm_toolkit/hooks/config.py +306 -0
  24. empathy_llm_toolkit/hooks/executor.py +289 -0
  25. empathy_llm_toolkit/hooks/registry.py +302 -0
  26. empathy_llm_toolkit/hooks/scripts/__init__.py +39 -0
  27. empathy_llm_toolkit/hooks/scripts/evaluate_session.py +201 -0
  28. empathy_llm_toolkit/hooks/scripts/first_time_init.py +285 -0
  29. empathy_llm_toolkit/hooks/scripts/pre_compact.py +207 -0
  30. empathy_llm_toolkit/hooks/scripts/session_end.py +183 -0
  31. empathy_llm_toolkit/hooks/scripts/session_start.py +163 -0
  32. empathy_llm_toolkit/hooks/scripts/suggest_compact.py +225 -0
  33. empathy_llm_toolkit/learning/__init__.py +30 -0
  34. empathy_llm_toolkit/learning/evaluator.py +438 -0
  35. empathy_llm_toolkit/learning/extractor.py +514 -0
  36. empathy_llm_toolkit/learning/storage.py +560 -0
  37. empathy_llm_toolkit/providers.py +4 -11
  38. empathy_llm_toolkit/security/__init__.py +17 -17
  39. empathy_llm_toolkit/utils/tokens.py +2 -5
  40. empathy_os/__init__.py +202 -70
  41. empathy_os/cache_monitor.py +5 -3
  42. empathy_os/cli/__init__.py +11 -55
  43. empathy_os/cli/__main__.py +29 -15
  44. empathy_os/cli/commands/inspection.py +21 -12
  45. empathy_os/cli/commands/memory.py +4 -12
  46. empathy_os/cli/commands/profiling.py +198 -0
  47. empathy_os/cli/commands/utilities.py +27 -7
  48. empathy_os/cli.py +28 -57
  49. empathy_os/cli_unified.py +525 -1164
  50. empathy_os/cost_tracker.py +9 -3
  51. empathy_os/dashboard/server.py +200 -2
  52. empathy_os/hot_reload/__init__.py +7 -7
  53. empathy_os/hot_reload/config.py +6 -7
  54. empathy_os/hot_reload/integration.py +35 -35
  55. empathy_os/hot_reload/reloader.py +57 -57
  56. empathy_os/hot_reload/watcher.py +28 -28
  57. empathy_os/hot_reload/websocket.py +2 -2
  58. empathy_os/memory/__init__.py +11 -4
  59. empathy_os/memory/claude_memory.py +1 -1
  60. empathy_os/memory/cross_session.py +8 -12
  61. empathy_os/memory/edges.py +6 -6
  62. empathy_os/memory/file_session.py +770 -0
  63. empathy_os/memory/graph.py +30 -30
  64. empathy_os/memory/nodes.py +6 -6
  65. empathy_os/memory/short_term.py +15 -9
  66. empathy_os/memory/unified.py +606 -140
  67. empathy_os/meta_workflows/agent_creator.py +3 -9
  68. empathy_os/meta_workflows/cli_meta_workflows.py +113 -53
  69. empathy_os/meta_workflows/form_engine.py +6 -18
  70. empathy_os/meta_workflows/intent_detector.py +64 -24
  71. empathy_os/meta_workflows/models.py +3 -1
  72. empathy_os/meta_workflows/pattern_learner.py +13 -31
  73. empathy_os/meta_workflows/plan_generator.py +55 -47
  74. empathy_os/meta_workflows/session_context.py +2 -3
  75. empathy_os/meta_workflows/workflow.py +20 -51
  76. empathy_os/models/cli.py +2 -2
  77. empathy_os/models/tasks.py +1 -2
  78. empathy_os/models/telemetry.py +4 -1
  79. empathy_os/models/token_estimator.py +3 -1
  80. empathy_os/monitoring/alerts.py +938 -9
  81. empathy_os/monitoring/alerts_cli.py +346 -183
  82. empathy_os/orchestration/execution_strategies.py +12 -29
  83. empathy_os/orchestration/pattern_learner.py +20 -26
  84. empathy_os/orchestration/real_tools.py +6 -15
  85. empathy_os/platform_utils.py +2 -1
  86. empathy_os/plugins/__init__.py +2 -2
  87. empathy_os/plugins/base.py +64 -64
  88. empathy_os/plugins/registry.py +32 -32
  89. empathy_os/project_index/index.py +49 -15
  90. empathy_os/project_index/models.py +1 -2
  91. empathy_os/project_index/reports.py +1 -1
  92. empathy_os/project_index/scanner.py +1 -0
  93. empathy_os/redis_memory.py +10 -7
  94. empathy_os/resilience/__init__.py +1 -1
  95. empathy_os/resilience/health.py +10 -10
  96. empathy_os/routing/__init__.py +7 -7
  97. empathy_os/routing/chain_executor.py +37 -37
  98. empathy_os/routing/classifier.py +36 -36
  99. empathy_os/routing/smart_router.py +40 -40
  100. empathy_os/routing/{wizard_registry.py → workflow_registry.py} +47 -47
  101. empathy_os/scaffolding/__init__.py +8 -8
  102. empathy_os/scaffolding/__main__.py +1 -1
  103. empathy_os/scaffolding/cli.py +28 -28
  104. empathy_os/socratic/__init__.py +3 -19
  105. empathy_os/socratic/ab_testing.py +25 -36
  106. empathy_os/socratic/blueprint.py +38 -38
  107. empathy_os/socratic/cli.py +34 -20
  108. empathy_os/socratic/collaboration.py +30 -28
  109. empathy_os/socratic/domain_templates.py +9 -1
  110. empathy_os/socratic/embeddings.py +17 -13
  111. empathy_os/socratic/engine.py +135 -70
  112. empathy_os/socratic/explainer.py +70 -60
  113. empathy_os/socratic/feedback.py +24 -19
  114. empathy_os/socratic/forms.py +15 -10
  115. empathy_os/socratic/generator.py +51 -35
  116. empathy_os/socratic/llm_analyzer.py +25 -23
  117. empathy_os/socratic/mcp_server.py +99 -159
  118. empathy_os/socratic/session.py +19 -13
  119. empathy_os/socratic/storage.py +98 -67
  120. empathy_os/socratic/success.py +38 -27
  121. empathy_os/socratic/visual_editor.py +51 -39
  122. empathy_os/socratic/web_ui.py +99 -66
  123. empathy_os/telemetry/cli.py +3 -1
  124. empathy_os/telemetry/usage_tracker.py +1 -3
  125. empathy_os/test_generator/__init__.py +3 -3
  126. empathy_os/test_generator/cli.py +28 -28
  127. empathy_os/test_generator/generator.py +64 -66
  128. empathy_os/test_generator/risk_analyzer.py +11 -11
  129. empathy_os/vscode_bridge 2.py +173 -0
  130. empathy_os/vscode_bridge.py +173 -0
  131. empathy_os/workflows/__init__.py +212 -120
  132. empathy_os/workflows/batch_processing.py +8 -24
  133. empathy_os/workflows/bug_predict.py +1 -1
  134. empathy_os/workflows/code_review.py +20 -5
  135. empathy_os/workflows/code_review_pipeline.py +13 -8
  136. empathy_os/workflows/keyboard_shortcuts/workflow.py +6 -2
  137. empathy_os/workflows/manage_documentation.py +1 -0
  138. empathy_os/workflows/orchestrated_health_check.py +6 -11
  139. empathy_os/workflows/orchestrated_release_prep.py +3 -3
  140. empathy_os/workflows/pr_review.py +18 -10
  141. empathy_os/workflows/progressive/README 2.md +454 -0
  142. empathy_os/workflows/progressive/__init__ 2.py +92 -0
  143. empathy_os/workflows/progressive/__init__.py +2 -12
  144. empathy_os/workflows/progressive/cli 2.py +242 -0
  145. empathy_os/workflows/progressive/cli.py +14 -37
  146. empathy_os/workflows/progressive/core 2.py +488 -0
  147. empathy_os/workflows/progressive/core.py +12 -12
  148. empathy_os/workflows/progressive/orchestrator 2.py +701 -0
  149. empathy_os/workflows/progressive/orchestrator.py +166 -144
  150. empathy_os/workflows/progressive/reports 2.py +528 -0
  151. empathy_os/workflows/progressive/reports.py +22 -31
  152. empathy_os/workflows/progressive/telemetry 2.py +280 -0
  153. empathy_os/workflows/progressive/telemetry.py +8 -14
  154. empathy_os/workflows/progressive/test_gen 2.py +514 -0
  155. empathy_os/workflows/progressive/test_gen.py +29 -48
  156. empathy_os/workflows/progressive/workflow 2.py +628 -0
  157. empathy_os/workflows/progressive/workflow.py +31 -70
  158. empathy_os/workflows/release_prep.py +21 -6
  159. empathy_os/workflows/release_prep_crew.py +1 -0
  160. empathy_os/workflows/secure_release.py +13 -6
  161. empathy_os/workflows/security_audit.py +8 -3
  162. empathy_os/workflows/test_coverage_boost_crew.py +3 -2
  163. empathy_os/workflows/test_maintenance_crew.py +1 -0
  164. empathy_os/workflows/test_runner.py +16 -12
  165. empathy_software_plugin/SOFTWARE_PLUGIN_README.md +25 -703
  166. empathy_software_plugin/cli.py +0 -122
  167. patterns/README.md +119 -0
  168. patterns/__init__.py +95 -0
  169. patterns/behavior.py +298 -0
  170. patterns/code_review_memory.json +441 -0
  171. patterns/core.py +97 -0
  172. patterns/debugging.json +3763 -0
  173. patterns/empathy.py +268 -0
  174. patterns/health_check_memory.json +505 -0
  175. patterns/input.py +161 -0
  176. patterns/memory_graph.json +8 -0
  177. patterns/refactoring_memory.json +1113 -0
  178. patterns/registry.py +663 -0
  179. patterns/security_memory.json +8 -0
  180. patterns/structural.py +415 -0
  181. patterns/validation.py +194 -0
  182. coach_wizards/__init__.py +0 -45
  183. coach_wizards/accessibility_wizard.py +0 -91
  184. coach_wizards/api_wizard.py +0 -91
  185. coach_wizards/base_wizard.py +0 -209
  186. coach_wizards/cicd_wizard.py +0 -91
  187. coach_wizards/code_reviewer_README.md +0 -60
  188. coach_wizards/code_reviewer_wizard.py +0 -180
  189. coach_wizards/compliance_wizard.py +0 -91
  190. coach_wizards/database_wizard.py +0 -91
  191. coach_wizards/debugging_wizard.py +0 -91
  192. coach_wizards/documentation_wizard.py +0 -91
  193. coach_wizards/generate_wizards.py +0 -347
  194. coach_wizards/localization_wizard.py +0 -173
  195. coach_wizards/migration_wizard.py +0 -91
  196. coach_wizards/monitoring_wizard.py +0 -91
  197. coach_wizards/observability_wizard.py +0 -91
  198. coach_wizards/performance_wizard.py +0 -91
  199. coach_wizards/prompt_engineering_wizard.py +0 -661
  200. coach_wizards/refactoring_wizard.py +0 -91
  201. coach_wizards/scaling_wizard.py +0 -90
  202. coach_wizards/security_wizard.py +0 -92
  203. coach_wizards/testing_wizard.py +0 -91
  204. empathy_framework-4.6.6.dist-info/METADATA +0 -1597
  205. empathy_framework-4.6.6.dist-info/RECORD +0 -410
  206. empathy_llm_toolkit/wizards/__init__.py +0 -43
  207. empathy_llm_toolkit/wizards/base_wizard.py +0 -364
  208. empathy_llm_toolkit/wizards/customer_support_wizard.py +0 -190
  209. empathy_llm_toolkit/wizards/healthcare_wizard.py +0 -378
  210. empathy_llm_toolkit/wizards/patient_assessment_README.md +0 -64
  211. empathy_llm_toolkit/wizards/patient_assessment_wizard.py +0 -193
  212. empathy_llm_toolkit/wizards/technology_wizard.py +0 -209
  213. empathy_os/wizard_factory_cli.py +0 -170
  214. empathy_software_plugin/wizards/__init__.py +0 -42
  215. empathy_software_plugin/wizards/advanced_debugging_wizard.py +0 -395
  216. empathy_software_plugin/wizards/agent_orchestration_wizard.py +0 -511
  217. empathy_software_plugin/wizards/ai_collaboration_wizard.py +0 -503
  218. empathy_software_plugin/wizards/ai_context_wizard.py +0 -441
  219. empathy_software_plugin/wizards/ai_documentation_wizard.py +0 -503
  220. empathy_software_plugin/wizards/base_wizard.py +0 -288
  221. empathy_software_plugin/wizards/book_chapter_wizard.py +0 -519
  222. empathy_software_plugin/wizards/code_review_wizard.py +0 -604
  223. empathy_software_plugin/wizards/debugging/__init__.py +0 -50
  224. empathy_software_plugin/wizards/debugging/bug_risk_analyzer.py +0 -414
  225. empathy_software_plugin/wizards/debugging/config_loaders.py +0 -446
  226. empathy_software_plugin/wizards/debugging/fix_applier.py +0 -469
  227. empathy_software_plugin/wizards/debugging/language_patterns.py +0 -385
  228. empathy_software_plugin/wizards/debugging/linter_parsers.py +0 -470
  229. empathy_software_plugin/wizards/debugging/verification.py +0 -369
  230. empathy_software_plugin/wizards/enhanced_testing_wizard.py +0 -537
  231. empathy_software_plugin/wizards/memory_enhanced_debugging_wizard.py +0 -816
  232. empathy_software_plugin/wizards/multi_model_wizard.py +0 -501
  233. empathy_software_plugin/wizards/pattern_extraction_wizard.py +0 -422
  234. empathy_software_plugin/wizards/pattern_retriever_wizard.py +0 -400
  235. empathy_software_plugin/wizards/performance/__init__.py +0 -9
  236. empathy_software_plugin/wizards/performance/bottleneck_detector.py +0 -221
  237. empathy_software_plugin/wizards/performance/profiler_parsers.py +0 -278
  238. empathy_software_plugin/wizards/performance/trajectory_analyzer.py +0 -429
  239. empathy_software_plugin/wizards/performance_profiling_wizard.py +0 -305
  240. empathy_software_plugin/wizards/prompt_engineering_wizard.py +0 -425
  241. empathy_software_plugin/wizards/rag_pattern_wizard.py +0 -461
  242. empathy_software_plugin/wizards/security/__init__.py +0 -32
  243. empathy_software_plugin/wizards/security/exploit_analyzer.py +0 -290
  244. empathy_software_plugin/wizards/security/owasp_patterns.py +0 -241
  245. empathy_software_plugin/wizards/security/vulnerability_scanner.py +0 -604
  246. empathy_software_plugin/wizards/security_analysis_wizard.py +0 -322
  247. empathy_software_plugin/wizards/security_learning_wizard.py +0 -740
  248. empathy_software_plugin/wizards/tech_debt_wizard.py +0 -726
  249. empathy_software_plugin/wizards/testing/__init__.py +0 -27
  250. empathy_software_plugin/wizards/testing/coverage_analyzer.py +0 -459
  251. empathy_software_plugin/wizards/testing/quality_analyzer.py +0 -525
  252. empathy_software_plugin/wizards/testing/test_suggester.py +0 -533
  253. empathy_software_plugin/wizards/testing_wizard.py +0 -274
  254. wizards/__init__.py +0 -82
  255. wizards/admission_assessment_wizard.py +0 -644
  256. wizards/care_plan.py +0 -321
  257. wizards/clinical_assessment.py +0 -769
  258. wizards/discharge_planning.py +0 -77
  259. wizards/discharge_summary_wizard.py +0 -468
  260. wizards/dosage_calculation.py +0 -497
  261. wizards/incident_report_wizard.py +0 -454
  262. wizards/medication_reconciliation.py +0 -85
  263. wizards/nursing_assessment.py +0 -171
  264. wizards/patient_education.py +0 -654
  265. wizards/quality_improvement.py +0 -705
  266. wizards/sbar_report.py +0 -324
  267. wizards/sbar_wizard.py +0 -608
  268. wizards/shift_handoff_wizard.py +0 -535
  269. wizards/soap_note_wizard.py +0 -679
  270. wizards/treatment_plan.py +0 -15
  271. {empathy_framework-4.6.6.dist-info → empathy_framework-4.7.1.dist-info}/WHEEL +0 -0
  272. {empathy_framework-4.6.6.dist-info → empathy_framework-4.7.1.dist-info}/entry_points.txt +0 -0
  273. {empathy_framework-4.6.6.dist-info → empathy_framework-4.7.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,1113 @@
1
+ {
2
+ "version": "1.0",
3
+ "updated_at": "2026-01-24T17:59:32.841110",
4
+ "node_count": 69,
5
+ "edge_count": 0,
6
+ "nodes": [
7
+ {
8
+ "id": "refactoring_analysis_20260122111120_b517fde25c89",
9
+ "type": "pattern",
10
+ "name": "refactor:.",
11
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
12
+ "source_wizard": "refactoring_crew",
13
+ "source_file": "",
14
+ "source_line": null,
15
+ "severity": "",
16
+ "confidence": 1.0,
17
+ "metadata": {},
18
+ "tags": [],
19
+ "created_at": "2026-01-22T11:11:20.727169",
20
+ "updated_at": "2026-01-22T11:11:20.727170",
21
+ "status": "open"
22
+ },
23
+ {
24
+ "id": "refactoring_analysis_20260122111159_3e09427a11df",
25
+ "type": "pattern",
26
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp42c6mvtm/app.py",
27
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
28
+ "source_wizard": "refactoring_crew",
29
+ "source_file": "",
30
+ "source_line": null,
31
+ "severity": "",
32
+ "confidence": 1.0,
33
+ "metadata": {},
34
+ "tags": [],
35
+ "created_at": "2026-01-22T11:11:59.036178",
36
+ "updated_at": "2026-01-22T11:11:59.036178",
37
+ "status": "open"
38
+ },
39
+ {
40
+ "id": "refactoring_analysis_20260122111228_0d7cf37bf5bc",
41
+ "type": "pattern",
42
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp20ucdn11/app.py",
43
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
44
+ "source_wizard": "refactoring_crew",
45
+ "source_file": "",
46
+ "source_line": null,
47
+ "severity": "",
48
+ "confidence": 1.0,
49
+ "metadata": {},
50
+ "tags": [],
51
+ "created_at": "2026-01-22T11:12:28.678896",
52
+ "updated_at": "2026-01-22T11:12:28.678897",
53
+ "status": "open"
54
+ },
55
+ {
56
+ "id": "refactoring_analysis_20260122111316_1b721bef5332",
57
+ "type": "pattern",
58
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpb0ngv3g4/app.py",
59
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
60
+ "source_wizard": "refactoring_crew",
61
+ "source_file": "",
62
+ "source_line": null,
63
+ "severity": "",
64
+ "confidence": 1.0,
65
+ "metadata": {},
66
+ "tags": [],
67
+ "created_at": "2026-01-22T11:13:16.179318",
68
+ "updated_at": "2026-01-22T11:13:16.179319",
69
+ "status": "open"
70
+ },
71
+ {
72
+ "id": "refactoring_analysis_20260122111349_b517fde25c89",
73
+ "type": "pattern",
74
+ "name": "refactor:.",
75
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
76
+ "source_wizard": "refactoring_crew",
77
+ "source_file": "",
78
+ "source_line": null,
79
+ "severity": "",
80
+ "confidence": 1.0,
81
+ "metadata": {},
82
+ "tags": [],
83
+ "created_at": "2026-01-22T11:13:49.573093",
84
+ "updated_at": "2026-01-22T11:13:49.573095",
85
+ "status": "open"
86
+ },
87
+ {
88
+ "id": "refactoring_analysis_20260122111427_0b7ee47c088e",
89
+ "type": "pattern",
90
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpgtjd1pca/app.py",
91
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
92
+ "source_wizard": "refactoring_crew",
93
+ "source_file": "",
94
+ "source_line": null,
95
+ "severity": "",
96
+ "confidence": 1.0,
97
+ "metadata": {},
98
+ "tags": [],
99
+ "created_at": "2026-01-22T11:14:27.585318",
100
+ "updated_at": "2026-01-22T11:14:27.585319",
101
+ "status": "open"
102
+ },
103
+ {
104
+ "id": "refactoring_analysis_20260122111523_1b5f44f7fc78",
105
+ "type": "pattern",
106
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp4daxi54t/app.py",
107
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
108
+ "source_wizard": "refactoring_crew",
109
+ "source_file": "",
110
+ "source_line": null,
111
+ "severity": "",
112
+ "confidence": 1.0,
113
+ "metadata": {},
114
+ "tags": [],
115
+ "created_at": "2026-01-22T11:15:23.249714",
116
+ "updated_at": "2026-01-22T11:15:23.249715",
117
+ "status": "open"
118
+ },
119
+ {
120
+ "id": "refactoring_analysis_20260122111545_b517fde25c89",
121
+ "type": "pattern",
122
+ "name": "refactor:.",
123
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
124
+ "source_wizard": "refactoring_crew",
125
+ "source_file": "",
126
+ "source_line": null,
127
+ "severity": "",
128
+ "confidence": 1.0,
129
+ "metadata": {},
130
+ "tags": [],
131
+ "created_at": "2026-01-22T11:15:45.538723",
132
+ "updated_at": "2026-01-22T11:15:45.538723",
133
+ "status": "open"
134
+ },
135
+ {
136
+ "id": "refactoring_analysis_20260122112217_26cbf7e96432",
137
+ "type": "pattern",
138
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp5q_3teaz/app.py",
139
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
140
+ "source_wizard": "refactoring_crew",
141
+ "source_file": "",
142
+ "source_line": null,
143
+ "severity": "",
144
+ "confidence": 1.0,
145
+ "metadata": {},
146
+ "tags": [],
147
+ "created_at": "2026-01-22T11:22:17.860212",
148
+ "updated_at": "2026-01-22T11:22:17.860212",
149
+ "status": "open"
150
+ },
151
+ {
152
+ "id": "refactoring_analysis_20260122112501_912841708a08",
153
+ "type": "pattern",
154
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpdsbph0x5/app.py",
155
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
156
+ "source_wizard": "refactoring_crew",
157
+ "source_file": "",
158
+ "source_line": null,
159
+ "severity": "",
160
+ "confidence": 1.0,
161
+ "metadata": {},
162
+ "tags": [],
163
+ "created_at": "2026-01-22T11:25:01.117641",
164
+ "updated_at": "2026-01-22T11:25:01.117641",
165
+ "status": "open"
166
+ },
167
+ {
168
+ "id": "refactoring_analysis_20260122112554_aae1f70a2305",
169
+ "type": "pattern",
170
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpr3bszwfn/app.py",
171
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
172
+ "source_wizard": "refactoring_crew",
173
+ "source_file": "",
174
+ "source_line": null,
175
+ "severity": "",
176
+ "confidence": 1.0,
177
+ "metadata": {},
178
+ "tags": [],
179
+ "created_at": "2026-01-22T11:25:54.723709",
180
+ "updated_at": "2026-01-22T11:25:54.723711",
181
+ "status": "open"
182
+ },
183
+ {
184
+ "id": "refactoring_analysis_20260122112727_ff8776918849",
185
+ "type": "pattern",
186
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpxlcvuuhq/app.py",
187
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
188
+ "source_wizard": "refactoring_crew",
189
+ "source_file": "",
190
+ "source_line": null,
191
+ "severity": "",
192
+ "confidence": 1.0,
193
+ "metadata": {},
194
+ "tags": [],
195
+ "created_at": "2026-01-22T11:27:27.922075",
196
+ "updated_at": "2026-01-22T11:27:27.922076",
197
+ "status": "open"
198
+ },
199
+ {
200
+ "id": "refactoring_analysis_20260122112800_d99b7fe7a158",
201
+ "type": "pattern",
202
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpv59jtksa/app.py",
203
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
204
+ "source_wizard": "refactoring_crew",
205
+ "source_file": "",
206
+ "source_line": null,
207
+ "severity": "",
208
+ "confidence": 1.0,
209
+ "metadata": {},
210
+ "tags": [],
211
+ "created_at": "2026-01-22T11:28:00.125150",
212
+ "updated_at": "2026-01-22T11:28:00.125151",
213
+ "status": "open"
214
+ },
215
+ {
216
+ "id": "refactoring_analysis_20260122112825_b517fde25c89",
217
+ "type": "pattern",
218
+ "name": "refactor:.",
219
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
220
+ "source_wizard": "refactoring_crew",
221
+ "source_file": "",
222
+ "source_line": null,
223
+ "severity": "",
224
+ "confidence": 1.0,
225
+ "metadata": {},
226
+ "tags": [],
227
+ "created_at": "2026-01-22T11:28:25.435315",
228
+ "updated_at": "2026-01-22T11:28:25.435316",
229
+ "status": "open"
230
+ },
231
+ {
232
+ "id": "refactoring_analysis_20260122112827_3da14209de3a",
233
+ "type": "pattern",
234
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp_bmvsp4_/app.py",
235
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
236
+ "source_wizard": "refactoring_crew",
237
+ "source_file": "",
238
+ "source_line": null,
239
+ "severity": "",
240
+ "confidence": 1.0,
241
+ "metadata": {},
242
+ "tags": [],
243
+ "created_at": "2026-01-22T11:28:27.685893",
244
+ "updated_at": "2026-01-22T11:28:27.685894",
245
+ "status": "open"
246
+ },
247
+ {
248
+ "id": "refactoring_analysis_20260122112939_35013b726859",
249
+ "type": "pattern",
250
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpa7n1mna1/app.py",
251
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
252
+ "source_wizard": "refactoring_crew",
253
+ "source_file": "",
254
+ "source_line": null,
255
+ "severity": "",
256
+ "confidence": 1.0,
257
+ "metadata": {},
258
+ "tags": [],
259
+ "created_at": "2026-01-22T11:29:39.566928",
260
+ "updated_at": "2026-01-22T11:29:39.566929",
261
+ "status": "open"
262
+ },
263
+ {
264
+ "id": "refactoring_analysis_20260122112942_b517fde25c89",
265
+ "type": "pattern",
266
+ "name": "refactor:.",
267
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
268
+ "source_wizard": "refactoring_crew",
269
+ "source_file": "",
270
+ "source_line": null,
271
+ "severity": "",
272
+ "confidence": 1.0,
273
+ "metadata": {},
274
+ "tags": [],
275
+ "created_at": "2026-01-22T11:29:42.973294",
276
+ "updated_at": "2026-01-22T11:29:42.973295",
277
+ "status": "open"
278
+ },
279
+ {
280
+ "id": "refactoring_analysis_20260122113008_7e57af796626",
281
+ "type": "pattern",
282
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp4006poz7/app.py",
283
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
284
+ "source_wizard": "refactoring_crew",
285
+ "source_file": "",
286
+ "source_line": null,
287
+ "severity": "",
288
+ "confidence": 1.0,
289
+ "metadata": {},
290
+ "tags": [],
291
+ "created_at": "2026-01-22T11:30:08.602641",
292
+ "updated_at": "2026-01-22T11:30:08.602642",
293
+ "status": "open"
294
+ },
295
+ {
296
+ "id": "refactoring_analysis_20260122113040_f59faa436ed0",
297
+ "type": "pattern",
298
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpf3_c72t3/app.py",
299
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
300
+ "source_wizard": "refactoring_crew",
301
+ "source_file": "",
302
+ "source_line": null,
303
+ "severity": "",
304
+ "confidence": 1.0,
305
+ "metadata": {},
306
+ "tags": [],
307
+ "created_at": "2026-01-22T11:30:40.973463",
308
+ "updated_at": "2026-01-22T11:30:40.973464",
309
+ "status": "open"
310
+ },
311
+ {
312
+ "id": "refactoring_analysis_20260122113053_7f52c2c07826",
313
+ "type": "pattern",
314
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp1on1ea9x/app.py",
315
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
316
+ "source_wizard": "refactoring_crew",
317
+ "source_file": "",
318
+ "source_line": null,
319
+ "severity": "",
320
+ "confidence": 1.0,
321
+ "metadata": {},
322
+ "tags": [],
323
+ "created_at": "2026-01-22T11:30:53.250251",
324
+ "updated_at": "2026-01-22T11:30:53.250251",
325
+ "status": "open"
326
+ },
327
+ {
328
+ "id": "refactoring_analysis_20260122113110_2d8ae72ced5d",
329
+ "type": "pattern",
330
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpn7w86gvp/app.py",
331
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
332
+ "source_wizard": "refactoring_crew",
333
+ "source_file": "",
334
+ "source_line": null,
335
+ "severity": "",
336
+ "confidence": 1.0,
337
+ "metadata": {},
338
+ "tags": [],
339
+ "created_at": "2026-01-22T11:31:10.767222",
340
+ "updated_at": "2026-01-22T11:31:10.767223",
341
+ "status": "open"
342
+ },
343
+ {
344
+ "id": "refactoring_analysis_20260122114320_2da8d6f74e19",
345
+ "type": "pattern",
346
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp839w0g3j/app.py",
347
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
348
+ "source_wizard": "refactoring_crew",
349
+ "source_file": "",
350
+ "source_line": null,
351
+ "severity": "",
352
+ "confidence": 1.0,
353
+ "metadata": {},
354
+ "tags": [],
355
+ "created_at": "2026-01-22T11:43:20.160586",
356
+ "updated_at": "2026-01-22T11:43:20.160586",
357
+ "status": "open"
358
+ },
359
+ {
360
+ "id": "refactoring_analysis_20260122114612_b517fde25c89",
361
+ "type": "pattern",
362
+ "name": "refactor:.",
363
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
364
+ "source_wizard": "refactoring_crew",
365
+ "source_file": "",
366
+ "source_line": null,
367
+ "severity": "",
368
+ "confidence": 1.0,
369
+ "metadata": {},
370
+ "tags": [],
371
+ "created_at": "2026-01-22T11:46:12.027016",
372
+ "updated_at": "2026-01-22T11:46:12.027017",
373
+ "status": "open"
374
+ },
375
+ {
376
+ "id": "refactoring_analysis_20260122115246_811aa5c22016",
377
+ "type": "pattern",
378
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpjxdwamcx/app.py",
379
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
380
+ "source_wizard": "refactoring_crew",
381
+ "source_file": "",
382
+ "source_line": null,
383
+ "severity": "",
384
+ "confidence": 1.0,
385
+ "metadata": {},
386
+ "tags": [],
387
+ "created_at": "2026-01-22T11:52:46.411333",
388
+ "updated_at": "2026-01-22T11:52:46.411334",
389
+ "status": "open"
390
+ },
391
+ {
392
+ "id": "refactoring_analysis_20260122122914_1fd003a9e60b",
393
+ "type": "pattern",
394
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp38bqgddd/app.py",
395
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
396
+ "source_wizard": "refactoring_crew",
397
+ "source_file": "",
398
+ "source_line": null,
399
+ "severity": "",
400
+ "confidence": 1.0,
401
+ "metadata": {},
402
+ "tags": [],
403
+ "created_at": "2026-01-22T12:29:14.667653",
404
+ "updated_at": "2026-01-22T12:29:14.667654",
405
+ "status": "open"
406
+ },
407
+ {
408
+ "id": "refactoring_analysis_20260122125226_62dd6d6ac528",
409
+ "type": "pattern",
410
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpguy325q5/app.py",
411
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
412
+ "source_wizard": "refactoring_crew",
413
+ "source_file": "",
414
+ "source_line": null,
415
+ "severity": "",
416
+ "confidence": 1.0,
417
+ "metadata": {},
418
+ "tags": [],
419
+ "created_at": "2026-01-22T12:52:26.290983",
420
+ "updated_at": "2026-01-22T12:52:26.290983",
421
+ "status": "open"
422
+ },
423
+ {
424
+ "id": "refactoring_analysis_20260122130858_d2bcee3c95f6",
425
+ "type": "pattern",
426
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmprgtpf_ic/app.py",
427
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
428
+ "source_wizard": "refactoring_crew",
429
+ "source_file": "",
430
+ "source_line": null,
431
+ "severity": "",
432
+ "confidence": 1.0,
433
+ "metadata": {},
434
+ "tags": [],
435
+ "created_at": "2026-01-22T13:08:58.646944",
436
+ "updated_at": "2026-01-22T13:08:58.646945",
437
+ "status": "open"
438
+ },
439
+ {
440
+ "id": "refactoring_analysis_20260122132730_fc95b509551f",
441
+ "type": "pattern",
442
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpfpvfwsz5/app.py",
443
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
444
+ "source_wizard": "refactoring_crew",
445
+ "source_file": "",
446
+ "source_line": null,
447
+ "severity": "",
448
+ "confidence": 1.0,
449
+ "metadata": {},
450
+ "tags": [],
451
+ "created_at": "2026-01-22T13:27:30.628738",
452
+ "updated_at": "2026-01-22T13:27:30.628738",
453
+ "status": "open"
454
+ },
455
+ {
456
+ "id": "refactoring_analysis_20260122133559_b517fde25c89",
457
+ "type": "pattern",
458
+ "name": "refactor:.",
459
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
460
+ "source_wizard": "refactoring_crew",
461
+ "source_file": "",
462
+ "source_line": null,
463
+ "severity": "",
464
+ "confidence": 1.0,
465
+ "metadata": {},
466
+ "tags": [],
467
+ "created_at": "2026-01-22T13:35:59.503423",
468
+ "updated_at": "2026-01-22T13:35:59.503426",
469
+ "status": "open"
470
+ },
471
+ {
472
+ "id": "refactoring_analysis_20260122134413_61bae84a7d33",
473
+ "type": "pattern",
474
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpyijnoq5z/app.py",
475
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
476
+ "source_wizard": "refactoring_crew",
477
+ "source_file": "",
478
+ "source_line": null,
479
+ "severity": "",
480
+ "confidence": 1.0,
481
+ "metadata": {},
482
+ "tags": [],
483
+ "created_at": "2026-01-22T13:44:13.673411",
484
+ "updated_at": "2026-01-22T13:44:13.673411",
485
+ "status": "open"
486
+ },
487
+ {
488
+ "id": "refactoring_analysis_20260122135047_df74fbce89e4",
489
+ "type": "pattern",
490
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpzjw4it3p/app.py",
491
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
492
+ "source_wizard": "refactoring_crew",
493
+ "source_file": "",
494
+ "source_line": null,
495
+ "severity": "",
496
+ "confidence": 1.0,
497
+ "metadata": {},
498
+ "tags": [],
499
+ "created_at": "2026-01-22T13:50:47.542588",
500
+ "updated_at": "2026-01-22T13:50:47.542589",
501
+ "status": "open"
502
+ },
503
+ {
504
+ "id": "refactoring_analysis_20260122135959_b517fde25c89",
505
+ "type": "pattern",
506
+ "name": "refactor:.",
507
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
508
+ "source_wizard": "refactoring_crew",
509
+ "source_file": "",
510
+ "source_line": null,
511
+ "severity": "",
512
+ "confidence": 1.0,
513
+ "metadata": {},
514
+ "tags": [],
515
+ "created_at": "2026-01-22T13:59:59.205510",
516
+ "updated_at": "2026-01-22T13:59:59.205511",
517
+ "status": "open"
518
+ },
519
+ {
520
+ "id": "refactoring_analysis_20260122140948_8a4bd640cb63",
521
+ "type": "pattern",
522
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpaqokzl0i/app.py",
523
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
524
+ "source_wizard": "refactoring_crew",
525
+ "source_file": "",
526
+ "source_line": null,
527
+ "severity": "",
528
+ "confidence": 1.0,
529
+ "metadata": {},
530
+ "tags": [],
531
+ "created_at": "2026-01-22T14:09:48.504869",
532
+ "updated_at": "2026-01-22T14:09:48.504869",
533
+ "status": "open"
534
+ },
535
+ {
536
+ "id": "refactoring_analysis_20260122141834_b517fde25c89",
537
+ "type": "pattern",
538
+ "name": "refactor:.",
539
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
540
+ "source_wizard": "refactoring_crew",
541
+ "source_file": "",
542
+ "source_line": null,
543
+ "severity": "",
544
+ "confidence": 1.0,
545
+ "metadata": {},
546
+ "tags": [],
547
+ "created_at": "2026-01-22T14:18:34.294496",
548
+ "updated_at": "2026-01-22T14:18:34.294497",
549
+ "status": "open"
550
+ },
551
+ {
552
+ "id": "refactoring_analysis_20260122144322_375dbe08ba72",
553
+ "type": "pattern",
554
+ "name": "refactor:examples/website_examples/02_tech_debt_trajectory.py",
555
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
556
+ "source_wizard": "refactoring_crew",
557
+ "source_file": "",
558
+ "source_line": null,
559
+ "severity": "",
560
+ "confidence": 1.0,
561
+ "metadata": {},
562
+ "tags": [],
563
+ "created_at": "2026-01-22T14:43:22.233759",
564
+ "updated_at": "2026-01-22T14:43:22.233759",
565
+ "status": "open"
566
+ },
567
+ {
568
+ "id": "refactoring_analysis_20260122144322_d588ffdd5f58",
569
+ "type": "pattern",
570
+ "name": "refactor:tests/test_tech_debt_wizard.py",
571
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
572
+ "source_wizard": "refactoring_crew",
573
+ "source_file": "",
574
+ "source_line": null,
575
+ "severity": "",
576
+ "confidence": 1.0,
577
+ "metadata": {},
578
+ "tags": [],
579
+ "created_at": "2026-01-22T14:43:22.386225",
580
+ "updated_at": "2026-01-22T14:43:22.386226",
581
+ "status": "open"
582
+ },
583
+ {
584
+ "id": "refactoring_analysis_20260122144322_89c5c2366141",
585
+ "type": "pattern",
586
+ "name": "refactor:auto_implement_all_todos.py",
587
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
588
+ "source_wizard": "refactoring_crew",
589
+ "source_file": "",
590
+ "source_line": null,
591
+ "severity": "",
592
+ "confidence": 1.0,
593
+ "metadata": {},
594
+ "tags": [],
595
+ "created_at": "2026-01-22T14:43:22.488122",
596
+ "updated_at": "2026-01-22T14:43:22.488122",
597
+ "status": "open"
598
+ },
599
+ {
600
+ "id": "refactoring_analysis_20260122144322_28698f584b0e",
601
+ "type": "pattern",
602
+ "name": "refactor:tests/unit/orchestration/test_meta_orchestration_architecture.py",
603
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
604
+ "source_wizard": "refactoring_crew",
605
+ "source_file": "",
606
+ "source_line": null,
607
+ "severity": "",
608
+ "confidence": 1.0,
609
+ "metadata": {},
610
+ "tags": [],
611
+ "created_at": "2026-01-22T14:43:22.610307",
612
+ "updated_at": "2026-01-22T14:43:22.610308",
613
+ "status": "open"
614
+ },
615
+ {
616
+ "id": "refactoring_analysis_20260122144322_afbcc08dafb7",
617
+ "type": "pattern",
618
+ "name": "refactor:generate_coverage_tests.py",
619
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
620
+ "source_wizard": "refactoring_crew",
621
+ "source_file": "",
622
+ "source_line": null,
623
+ "severity": "",
624
+ "confidence": 1.0,
625
+ "metadata": {},
626
+ "tags": [],
627
+ "created_at": "2026-01-22T14:43:22.734753",
628
+ "updated_at": "2026-01-22T14:43:22.734768",
629
+ "status": "open"
630
+ },
631
+ {
632
+ "id": "refactoring_analysis_20260122145137_28698f584b0e",
633
+ "type": "pattern",
634
+ "name": "refactor:tests/unit/orchestration/test_meta_orchestration_architecture.py",
635
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
636
+ "source_wizard": "refactoring_crew",
637
+ "source_file": "",
638
+ "source_line": null,
639
+ "severity": "",
640
+ "confidence": 1.0,
641
+ "metadata": {},
642
+ "tags": [],
643
+ "created_at": "2026-01-22T14:51:37.931178",
644
+ "updated_at": "2026-01-22T14:51:37.931178",
645
+ "status": "open"
646
+ },
647
+ {
648
+ "id": "refactoring_analysis_20260122145138_77312939e871",
649
+ "type": "pattern",
650
+ "name": "refactor:tests/unit/adapters/test_tech_debt_adapter_exceptions.py",
651
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
652
+ "source_wizard": "refactoring_crew",
653
+ "source_file": "",
654
+ "source_line": null,
655
+ "severity": "",
656
+ "confidence": 1.0,
657
+ "metadata": {},
658
+ "tags": [],
659
+ "created_at": "2026-01-22T14:51:38.070840",
660
+ "updated_at": "2026-01-22T14:51:38.070841",
661
+ "status": "open"
662
+ },
663
+ {
664
+ "id": "refactoring_analysis_20260122145138_afbcc08dafb7",
665
+ "type": "pattern",
666
+ "name": "refactor:generate_coverage_tests.py",
667
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
668
+ "source_wizard": "refactoring_crew",
669
+ "source_file": "",
670
+ "source_line": null,
671
+ "severity": "",
672
+ "confidence": 1.0,
673
+ "metadata": {},
674
+ "tags": [],
675
+ "created_at": "2026-01-22T14:51:38.182599",
676
+ "updated_at": "2026-01-22T14:51:38.182600",
677
+ "status": "open"
678
+ },
679
+ {
680
+ "id": "refactoring_analysis_20260122145138_0ebe1f75a179",
681
+ "type": "pattern",
682
+ "name": "refactor:agents/compliance_anticipation_agent.py",
683
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
684
+ "source_wizard": "refactoring_crew",
685
+ "source_file": "",
686
+ "source_line": null,
687
+ "severity": "",
688
+ "confidence": 1.0,
689
+ "metadata": {},
690
+ "tags": [],
691
+ "created_at": "2026-01-22T14:51:38.314844",
692
+ "updated_at": "2026-01-22T14:51:38.314844",
693
+ "status": "open"
694
+ },
695
+ {
696
+ "id": "refactoring_analysis_20260122145138_375dbe08ba72",
697
+ "type": "pattern",
698
+ "name": "refactor:examples/website_examples/02_tech_debt_trajectory.py",
699
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
700
+ "source_wizard": "refactoring_crew",
701
+ "source_file": "",
702
+ "source_line": null,
703
+ "severity": "",
704
+ "confidence": 1.0,
705
+ "metadata": {},
706
+ "tags": [],
707
+ "created_at": "2026-01-22T14:51:38.425386",
708
+ "updated_at": "2026-01-22T14:51:38.425387",
709
+ "status": "open"
710
+ },
711
+ {
712
+ "id": "refactoring_analysis_20260122145712_649d586b31f8",
713
+ "type": "pattern",
714
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpc10ahs9q/app.py",
715
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
716
+ "source_wizard": "refactoring_crew",
717
+ "source_file": "",
718
+ "source_line": null,
719
+ "severity": "",
720
+ "confidence": 1.0,
721
+ "metadata": {},
722
+ "tags": [],
723
+ "created_at": "2026-01-22T14:57:12.693368",
724
+ "updated_at": "2026-01-22T14:57:12.693368",
725
+ "status": "open"
726
+ },
727
+ {
728
+ "id": "refactoring_analysis_20260122145742_b517fde25c89",
729
+ "type": "pattern",
730
+ "name": "refactor:.",
731
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
732
+ "source_wizard": "refactoring_crew",
733
+ "source_file": "",
734
+ "source_line": null,
735
+ "severity": "",
736
+ "confidence": 1.0,
737
+ "metadata": {},
738
+ "tags": [],
739
+ "created_at": "2026-01-22T14:57:42.608968",
740
+ "updated_at": "2026-01-22T14:57:42.608968",
741
+ "status": "open"
742
+ },
743
+ {
744
+ "id": "refactoring_analysis_20260123122755_7a4898a6d14f",
745
+ "type": "pattern",
746
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpka40v2qm/app.py",
747
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
748
+ "source_wizard": "refactoring_crew",
749
+ "source_file": "",
750
+ "source_line": null,
751
+ "severity": "",
752
+ "confidence": 1.0,
753
+ "metadata": {},
754
+ "tags": [],
755
+ "created_at": "2026-01-23T12:27:55.387504",
756
+ "updated_at": "2026-01-23T12:27:55.387505",
757
+ "status": "open"
758
+ },
759
+ {
760
+ "id": "refactoring_analysis_20260123122826_b517fde25c89",
761
+ "type": "pattern",
762
+ "name": "refactor:.",
763
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
764
+ "source_wizard": "refactoring_crew",
765
+ "source_file": "",
766
+ "source_line": null,
767
+ "severity": "",
768
+ "confidence": 1.0,
769
+ "metadata": {},
770
+ "tags": [],
771
+ "created_at": "2026-01-23T12:28:26.851665",
772
+ "updated_at": "2026-01-23T12:28:26.851665",
773
+ "status": "open"
774
+ },
775
+ {
776
+ "id": "refactoring_analysis_20260124094724_b517fde25c89",
777
+ "type": "pattern",
778
+ "name": "refactor:.",
779
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
780
+ "source_wizard": "refactoring_crew",
781
+ "source_file": "",
782
+ "source_line": null,
783
+ "severity": "",
784
+ "confidence": 1.0,
785
+ "metadata": {},
786
+ "tags": [],
787
+ "created_at": "2026-01-24T09:47:24.863306",
788
+ "updated_at": "2026-01-24T09:47:24.863306",
789
+ "status": "open"
790
+ },
791
+ {
792
+ "id": "refactoring_analysis_20260124101703_b517fde25c89",
793
+ "type": "pattern",
794
+ "name": "refactor:.",
795
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
796
+ "source_wizard": "refactoring_crew",
797
+ "source_file": "",
798
+ "source_line": null,
799
+ "severity": "",
800
+ "confidence": 1.0,
801
+ "metadata": {},
802
+ "tags": [],
803
+ "created_at": "2026-01-24T10:17:03.959623",
804
+ "updated_at": "2026-01-24T10:17:03.959624",
805
+ "status": "open"
806
+ },
807
+ {
808
+ "id": "refactoring_analysis_20260124103902_b517fde25c89",
809
+ "type": "pattern",
810
+ "name": "refactor:.",
811
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
812
+ "source_wizard": "refactoring_crew",
813
+ "source_file": "",
814
+ "source_line": null,
815
+ "severity": "",
816
+ "confidence": 1.0,
817
+ "metadata": {},
818
+ "tags": [],
819
+ "created_at": "2026-01-24T10:39:02.013192",
820
+ "updated_at": "2026-01-24T10:39:02.013193",
821
+ "status": "open"
822
+ },
823
+ {
824
+ "id": "refactoring_analysis_20260124105914_b517fde25c89",
825
+ "type": "pattern",
826
+ "name": "refactor:.",
827
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
828
+ "source_wizard": "refactoring_crew",
829
+ "source_file": "",
830
+ "source_line": null,
831
+ "severity": "",
832
+ "confidence": 1.0,
833
+ "metadata": {},
834
+ "tags": [],
835
+ "created_at": "2026-01-24T10:59:14.127168",
836
+ "updated_at": "2026-01-24T10:59:14.127169",
837
+ "status": "open"
838
+ },
839
+ {
840
+ "id": "refactoring_analysis_20260124110109_b517fde25c89",
841
+ "type": "pattern",
842
+ "name": "refactor:.",
843
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
844
+ "source_wizard": "refactoring_crew",
845
+ "source_file": "",
846
+ "source_line": null,
847
+ "severity": "",
848
+ "confidence": 1.0,
849
+ "metadata": {},
850
+ "tags": [],
851
+ "created_at": "2026-01-24T11:01:09.590926",
852
+ "updated_at": "2026-01-24T11:01:09.590927",
853
+ "status": "open"
854
+ },
855
+ {
856
+ "id": "refactoring_analysis_20260124110144_b517fde25c89",
857
+ "type": "pattern",
858
+ "name": "refactor:.",
859
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
860
+ "source_wizard": "refactoring_crew",
861
+ "source_file": "",
862
+ "source_line": null,
863
+ "severity": "",
864
+ "confidence": 1.0,
865
+ "metadata": {},
866
+ "tags": [],
867
+ "created_at": "2026-01-24T11:01:44.880061",
868
+ "updated_at": "2026-01-24T11:01:44.880061",
869
+ "status": "open"
870
+ },
871
+ {
872
+ "id": "refactoring_analysis_20260124110343_b517fde25c89",
873
+ "type": "pattern",
874
+ "name": "refactor:.",
875
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
876
+ "source_wizard": "refactoring_crew",
877
+ "source_file": "",
878
+ "source_line": null,
879
+ "severity": "",
880
+ "confidence": 1.0,
881
+ "metadata": {},
882
+ "tags": [],
883
+ "created_at": "2026-01-24T11:03:43.544230",
884
+ "updated_at": "2026-01-24T11:03:43.544230",
885
+ "status": "open"
886
+ },
887
+ {
888
+ "id": "refactoring_analysis_20260124111050_b517fde25c89",
889
+ "type": "pattern",
890
+ "name": "refactor:.",
891
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
892
+ "source_wizard": "refactoring_crew",
893
+ "source_file": "",
894
+ "source_line": null,
895
+ "severity": "",
896
+ "confidence": 1.0,
897
+ "metadata": {},
898
+ "tags": [],
899
+ "created_at": "2026-01-24T11:10:50.150601",
900
+ "updated_at": "2026-01-24T11:10:50.150602",
901
+ "status": "open"
902
+ },
903
+ {
904
+ "id": "refactoring_analysis_20260124111424_b517fde25c89",
905
+ "type": "pattern",
906
+ "name": "refactor:.",
907
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
908
+ "source_wizard": "refactoring_crew",
909
+ "source_file": "",
910
+ "source_line": null,
911
+ "severity": "",
912
+ "confidence": 1.0,
913
+ "metadata": {},
914
+ "tags": [],
915
+ "created_at": "2026-01-24T11:14:24.747749",
916
+ "updated_at": "2026-01-24T11:14:24.747749",
917
+ "status": "open"
918
+ },
919
+ {
920
+ "id": "refactoring_analysis_20260124112226_b517fde25c89",
921
+ "type": "pattern",
922
+ "name": "refactor:.",
923
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
924
+ "source_wizard": "refactoring_crew",
925
+ "source_file": "",
926
+ "source_line": null,
927
+ "severity": "",
928
+ "confidence": 1.0,
929
+ "metadata": {},
930
+ "tags": [],
931
+ "created_at": "2026-01-24T11:22:26.338302",
932
+ "updated_at": "2026-01-24T11:22:26.338302",
933
+ "status": "open"
934
+ },
935
+ {
936
+ "id": "refactoring_analysis_20260124151415_1803a844d338",
937
+ "type": "pattern",
938
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp0sx36y2u/app.py",
939
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
940
+ "source_wizard": "refactoring_crew",
941
+ "source_file": "",
942
+ "source_line": null,
943
+ "severity": "",
944
+ "confidence": 1.0,
945
+ "metadata": {},
946
+ "tags": [],
947
+ "created_at": "2026-01-24T15:14:15.102217",
948
+ "updated_at": "2026-01-24T15:14:15.102218",
949
+ "status": "open"
950
+ },
951
+ {
952
+ "id": "refactoring_analysis_20260124151431_b517fde25c89",
953
+ "type": "pattern",
954
+ "name": "refactor:.",
955
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
956
+ "source_wizard": "refactoring_crew",
957
+ "source_file": "",
958
+ "source_line": null,
959
+ "severity": "",
960
+ "confidence": 1.0,
961
+ "metadata": {},
962
+ "tags": [],
963
+ "created_at": "2026-01-24T15:14:31.794609",
964
+ "updated_at": "2026-01-24T15:14:31.794610",
965
+ "status": "open"
966
+ },
967
+ {
968
+ "id": "refactoring_analysis_20260124152153_d333b77faeb2",
969
+ "type": "pattern",
970
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp1z36e3z1/app.py",
971
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
972
+ "source_wizard": "refactoring_crew",
973
+ "source_file": "",
974
+ "source_line": null,
975
+ "severity": "",
976
+ "confidence": 1.0,
977
+ "metadata": {},
978
+ "tags": [],
979
+ "created_at": "2026-01-24T15:21:53.597637",
980
+ "updated_at": "2026-01-24T15:21:53.597638",
981
+ "status": "open"
982
+ },
983
+ {
984
+ "id": "refactoring_analysis_20260124152212_b517fde25c89",
985
+ "type": "pattern",
986
+ "name": "refactor:.",
987
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
988
+ "source_wizard": "refactoring_crew",
989
+ "source_file": "",
990
+ "source_line": null,
991
+ "severity": "",
992
+ "confidence": 1.0,
993
+ "metadata": {},
994
+ "tags": [],
995
+ "created_at": "2026-01-24T15:22:12.951350",
996
+ "updated_at": "2026-01-24T15:22:12.951351",
997
+ "status": "open"
998
+ },
999
+ {
1000
+ "id": "refactoring_analysis_20260124153203_3efe6e8def21",
1001
+ "type": "pattern",
1002
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpp05l_nlp/app.py",
1003
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1004
+ "source_wizard": "refactoring_crew",
1005
+ "source_file": "",
1006
+ "source_line": null,
1007
+ "severity": "",
1008
+ "confidence": 1.0,
1009
+ "metadata": {},
1010
+ "tags": [],
1011
+ "created_at": "2026-01-24T15:32:03.760127",
1012
+ "updated_at": "2026-01-24T15:32:03.760128",
1013
+ "status": "open"
1014
+ },
1015
+ {
1016
+ "id": "refactoring_analysis_20260124153221_b517fde25c89",
1017
+ "type": "pattern",
1018
+ "name": "refactor:.",
1019
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1020
+ "source_wizard": "refactoring_crew",
1021
+ "source_file": "",
1022
+ "source_line": null,
1023
+ "severity": "",
1024
+ "confidence": 1.0,
1025
+ "metadata": {},
1026
+ "tags": [],
1027
+ "created_at": "2026-01-24T15:32:21.759298",
1028
+ "updated_at": "2026-01-24T15:32:21.759300",
1029
+ "status": "open"
1030
+ },
1031
+ {
1032
+ "id": "refactoring_analysis_20260124173148_3f2145abc1bc",
1033
+ "type": "pattern",
1034
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpm66to3at/app.py",
1035
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1036
+ "source_wizard": "refactoring_crew",
1037
+ "source_file": "",
1038
+ "source_line": null,
1039
+ "severity": "",
1040
+ "confidence": 1.0,
1041
+ "metadata": {},
1042
+ "tags": [],
1043
+ "created_at": "2026-01-24T17:31:48.185887",
1044
+ "updated_at": "2026-01-24T17:31:48.185888",
1045
+ "status": "open"
1046
+ },
1047
+ {
1048
+ "id": "refactoring_analysis_20260124174207_9594212bd2d0",
1049
+ "type": "pattern",
1050
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpi8xedft_/app.py",
1051
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1052
+ "source_wizard": "refactoring_crew",
1053
+ "source_file": "",
1054
+ "source_line": null,
1055
+ "severity": "",
1056
+ "confidence": 1.0,
1057
+ "metadata": {},
1058
+ "tags": [],
1059
+ "created_at": "2026-01-24T17:42:07.784214",
1060
+ "updated_at": "2026-01-24T17:42:07.784216",
1061
+ "status": "open"
1062
+ },
1063
+ {
1064
+ "id": "refactoring_analysis_20260124175150_9454cccb5353",
1065
+ "type": "pattern",
1066
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmp3hmm3fy1/app.py",
1067
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1068
+ "source_wizard": "refactoring_crew",
1069
+ "source_file": "",
1070
+ "source_line": null,
1071
+ "severity": "",
1072
+ "confidence": 1.0,
1073
+ "metadata": {},
1074
+ "tags": [],
1075
+ "created_at": "2026-01-24T17:51:50.577325",
1076
+ "updated_at": "2026-01-24T17:51:50.577326",
1077
+ "status": "open"
1078
+ },
1079
+ {
1080
+ "id": "refactoring_analysis_20260124175341_3823b0b1d2c2",
1081
+ "type": "pattern",
1082
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmptnluykef/app.py",
1083
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1084
+ "source_wizard": "refactoring_crew",
1085
+ "source_file": "",
1086
+ "source_line": null,
1087
+ "severity": "",
1088
+ "confidence": 1.0,
1089
+ "metadata": {},
1090
+ "tags": [],
1091
+ "created_at": "2026-01-24T17:53:41.036289",
1092
+ "updated_at": "2026-01-24T17:53:41.036291",
1093
+ "status": "open"
1094
+ },
1095
+ {
1096
+ "id": "refactoring_analysis_20260124175932_b645c7909fd3",
1097
+ "type": "pattern",
1098
+ "name": "refactor:/var/folders/5t/bzsz5qd17pd7h_wwwd5qjbnw0000gn/T/tmpx0092mqn/app.py",
1099
+ "description": "Found 1 refactoring opportunities:\n - 1 medium impact\n\nTop categories:\n - other: 1",
1100
+ "source_wizard": "refactoring_crew",
1101
+ "source_file": "",
1102
+ "source_line": null,
1103
+ "severity": "",
1104
+ "confidence": 1.0,
1105
+ "metadata": {},
1106
+ "tags": [],
1107
+ "created_at": "2026-01-24T17:59:32.838892",
1108
+ "updated_at": "2026-01-24T17:59:32.838893",
1109
+ "status": "open"
1110
+ }
1111
+ ],
1112
+ "edges": []
1113
+ }