tapps-agents 3.5.40__py3-none-any.whl → 3.6.0__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 (705) hide show
  1. tapps_agents/__init__.py +2 -2
  2. tapps_agents/agents/__init__.py +22 -22
  3. tapps_agents/agents/analyst/__init__.py +5 -5
  4. tapps_agents/agents/architect/__init__.py +5 -5
  5. tapps_agents/agents/architect/agent.py +1033 -1033
  6. tapps_agents/agents/architect/pattern_detector.py +75 -75
  7. tapps_agents/agents/cleanup/__init__.py +7 -7
  8. tapps_agents/agents/cleanup/agent.py +445 -445
  9. tapps_agents/agents/debugger/__init__.py +7 -7
  10. tapps_agents/agents/debugger/agent.py +310 -310
  11. tapps_agents/agents/debugger/error_analyzer.py +437 -437
  12. tapps_agents/agents/designer/__init__.py +5 -5
  13. tapps_agents/agents/designer/agent.py +786 -786
  14. tapps_agents/agents/designer/visual_designer.py +638 -638
  15. tapps_agents/agents/documenter/__init__.py +7 -7
  16. tapps_agents/agents/documenter/agent.py +531 -531
  17. tapps_agents/agents/documenter/doc_generator.py +472 -472
  18. tapps_agents/agents/documenter/doc_validator.py +393 -393
  19. tapps_agents/agents/documenter/framework_doc_updater.py +493 -493
  20. tapps_agents/agents/enhancer/__init__.py +7 -7
  21. tapps_agents/agents/evaluator/__init__.py +7 -7
  22. tapps_agents/agents/evaluator/agent.py +443 -443
  23. tapps_agents/agents/evaluator/priority_evaluator.py +641 -641
  24. tapps_agents/agents/evaluator/quality_analyzer.py +147 -147
  25. tapps_agents/agents/evaluator/report_generator.py +344 -344
  26. tapps_agents/agents/evaluator/usage_analyzer.py +192 -192
  27. tapps_agents/agents/evaluator/workflow_analyzer.py +189 -189
  28. tapps_agents/agents/implementer/__init__.py +7 -7
  29. tapps_agents/agents/implementer/agent.py +798 -798
  30. tapps_agents/agents/implementer/auto_fix.py +1119 -1119
  31. tapps_agents/agents/implementer/code_generator.py +73 -73
  32. tapps_agents/agents/improver/__init__.py +1 -1
  33. tapps_agents/agents/improver/agent.py +753 -753
  34. tapps_agents/agents/ops/__init__.py +1 -1
  35. tapps_agents/agents/ops/agent.py +619 -619
  36. tapps_agents/agents/ops/dependency_analyzer.py +600 -600
  37. tapps_agents/agents/orchestrator/__init__.py +5 -5
  38. tapps_agents/agents/orchestrator/agent.py +522 -522
  39. tapps_agents/agents/planner/__init__.py +7 -7
  40. tapps_agents/agents/planner/agent.py +1127 -1127
  41. tapps_agents/agents/reviewer/__init__.py +24 -24
  42. tapps_agents/agents/reviewer/agent.py +3513 -3513
  43. tapps_agents/agents/reviewer/aggregator.py +213 -213
  44. tapps_agents/agents/reviewer/batch_review.py +448 -448
  45. tapps_agents/agents/reviewer/cache.py +443 -443
  46. tapps_agents/agents/reviewer/context7_enhancer.py +630 -630
  47. tapps_agents/agents/reviewer/context_detector.py +203 -203
  48. tapps_agents/agents/reviewer/docker_compose_validator.py +158 -158
  49. tapps_agents/agents/reviewer/dockerfile_validator.py +176 -176
  50. tapps_agents/agents/reviewer/error_handling.py +126 -126
  51. tapps_agents/agents/reviewer/feedback_generator.py +490 -490
  52. tapps_agents/agents/reviewer/influxdb_validator.py +316 -316
  53. tapps_agents/agents/reviewer/issue_tracking.py +169 -169
  54. tapps_agents/agents/reviewer/library_detector.py +295 -295
  55. tapps_agents/agents/reviewer/library_patterns.py +268 -268
  56. tapps_agents/agents/reviewer/maintainability_scorer.py +593 -593
  57. tapps_agents/agents/reviewer/metric_strategies.py +276 -276
  58. tapps_agents/agents/reviewer/mqtt_validator.py +160 -160
  59. tapps_agents/agents/reviewer/output_enhancer.py +105 -105
  60. tapps_agents/agents/reviewer/pattern_detector.py +241 -241
  61. tapps_agents/agents/reviewer/performance_scorer.py +357 -357
  62. tapps_agents/agents/reviewer/phased_review.py +516 -516
  63. tapps_agents/agents/reviewer/progressive_review.py +435 -435
  64. tapps_agents/agents/reviewer/react_scorer.py +331 -331
  65. tapps_agents/agents/reviewer/score_constants.py +228 -228
  66. tapps_agents/agents/reviewer/score_validator.py +507 -507
  67. tapps_agents/agents/reviewer/scorer_registry.py +373 -373
  68. tapps_agents/agents/reviewer/scoring.py +1566 -1566
  69. tapps_agents/agents/reviewer/service_discovery.py +534 -534
  70. tapps_agents/agents/reviewer/tools/__init__.py +41 -41
  71. tapps_agents/agents/reviewer/tools/parallel_executor.py +581 -581
  72. tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -250
  73. tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -284
  74. tapps_agents/agents/reviewer/typescript_scorer.py +1142 -1142
  75. tapps_agents/agents/reviewer/validation.py +208 -208
  76. tapps_agents/agents/reviewer/websocket_validator.py +132 -132
  77. tapps_agents/agents/tester/__init__.py +7 -7
  78. tapps_agents/agents/tester/accessibility_auditor.py +309 -309
  79. tapps_agents/agents/tester/agent.py +1080 -1080
  80. tapps_agents/agents/tester/batch_generator.py +54 -54
  81. tapps_agents/agents/tester/context_learner.py +51 -51
  82. tapps_agents/agents/tester/coverage_analyzer.py +386 -386
  83. tapps_agents/agents/tester/coverage_test_generator.py +290 -290
  84. tapps_agents/agents/tester/debug_enhancer.py +238 -238
  85. tapps_agents/agents/tester/device_emulator.py +241 -241
  86. tapps_agents/agents/tester/integration_generator.py +62 -62
  87. tapps_agents/agents/tester/network_recorder.py +300 -300
  88. tapps_agents/agents/tester/performance_monitor.py +320 -320
  89. tapps_agents/agents/tester/test_fixer.py +316 -316
  90. tapps_agents/agents/tester/test_generator.py +632 -632
  91. tapps_agents/agents/tester/trace_manager.py +234 -234
  92. tapps_agents/agents/tester/visual_regression.py +291 -291
  93. tapps_agents/analysis/pattern_detector.py +36 -36
  94. tapps_agents/beads/hydration.py +213 -213
  95. tapps_agents/beads/parse.py +32 -32
  96. tapps_agents/beads/specs.py +206 -206
  97. tapps_agents/cli/__init__.py +9 -9
  98. tapps_agents/cli/__main__.py +8 -8
  99. tapps_agents/cli/base.py +478 -478
  100. tapps_agents/cli/command_classifier.py +72 -72
  101. tapps_agents/cli/commands/__init__.py +2 -2
  102. tapps_agents/cli/commands/analyst.py +173 -173
  103. tapps_agents/cli/commands/architect.py +109 -109
  104. tapps_agents/cli/commands/cleanup_agent.py +92 -92
  105. tapps_agents/cli/commands/common.py +126 -126
  106. tapps_agents/cli/commands/debugger.py +90 -90
  107. tapps_agents/cli/commands/designer.py +112 -112
  108. tapps_agents/cli/commands/documenter.py +136 -136
  109. tapps_agents/cli/commands/enhancer.py +110 -110
  110. tapps_agents/cli/commands/evaluator.py +255 -255
  111. tapps_agents/cli/commands/health.py +665 -665
  112. tapps_agents/cli/commands/implementer.py +301 -301
  113. tapps_agents/cli/commands/improver.py +91 -91
  114. tapps_agents/cli/commands/knowledge.py +111 -111
  115. tapps_agents/cli/commands/learning.py +172 -172
  116. tapps_agents/cli/commands/observability.py +283 -283
  117. tapps_agents/cli/commands/ops.py +135 -135
  118. tapps_agents/cli/commands/orchestrator.py +116 -116
  119. tapps_agents/cli/commands/planner.py +237 -237
  120. tapps_agents/cli/commands/reviewer.py +1872 -1872
  121. tapps_agents/cli/commands/status.py +285 -285
  122. tapps_agents/cli/commands/task.py +227 -219
  123. tapps_agents/cli/commands/tester.py +191 -191
  124. tapps_agents/cli/commands/top_level.py +3586 -3586
  125. tapps_agents/cli/feedback.py +936 -936
  126. tapps_agents/cli/formatters.py +608 -608
  127. tapps_agents/cli/help/__init__.py +7 -7
  128. tapps_agents/cli/help/static_help.py +425 -425
  129. tapps_agents/cli/network_detection.py +110 -110
  130. tapps_agents/cli/output_compactor.py +274 -274
  131. tapps_agents/cli/parsers/__init__.py +2 -2
  132. tapps_agents/cli/parsers/analyst.py +186 -186
  133. tapps_agents/cli/parsers/architect.py +167 -167
  134. tapps_agents/cli/parsers/cleanup_agent.py +228 -228
  135. tapps_agents/cli/parsers/debugger.py +116 -116
  136. tapps_agents/cli/parsers/designer.py +182 -182
  137. tapps_agents/cli/parsers/documenter.py +134 -134
  138. tapps_agents/cli/parsers/enhancer.py +113 -113
  139. tapps_agents/cli/parsers/evaluator.py +213 -213
  140. tapps_agents/cli/parsers/implementer.py +168 -168
  141. tapps_agents/cli/parsers/improver.py +132 -132
  142. tapps_agents/cli/parsers/ops.py +159 -159
  143. tapps_agents/cli/parsers/orchestrator.py +98 -98
  144. tapps_agents/cli/parsers/planner.py +145 -145
  145. tapps_agents/cli/parsers/reviewer.py +462 -462
  146. tapps_agents/cli/parsers/tester.py +124 -124
  147. tapps_agents/cli/progress_heartbeat.py +254 -254
  148. tapps_agents/cli/streaming_progress.py +336 -336
  149. tapps_agents/cli/utils/__init__.py +6 -6
  150. tapps_agents/cli/utils/agent_lifecycle.py +48 -48
  151. tapps_agents/cli/utils/error_formatter.py +82 -82
  152. tapps_agents/cli/utils/error_recovery.py +188 -188
  153. tapps_agents/cli/utils/output_handler.py +59 -59
  154. tapps_agents/cli/utils/prompt_enhancer.py +319 -319
  155. tapps_agents/cli/validators/__init__.py +9 -9
  156. tapps_agents/cli/validators/command_validator.py +81 -81
  157. tapps_agents/context7/__init__.py +112 -112
  158. tapps_agents/context7/agent_integration.py +869 -869
  159. tapps_agents/context7/analytics.py +382 -382
  160. tapps_agents/context7/analytics_dashboard.py +299 -299
  161. tapps_agents/context7/async_cache.py +681 -681
  162. tapps_agents/context7/backup_client.py +958 -958
  163. tapps_agents/context7/cache_locking.py +194 -194
  164. tapps_agents/context7/cache_metadata.py +214 -214
  165. tapps_agents/context7/cache_prewarm.py +488 -488
  166. tapps_agents/context7/cache_structure.py +168 -168
  167. tapps_agents/context7/cache_warming.py +604 -604
  168. tapps_agents/context7/circuit_breaker.py +376 -376
  169. tapps_agents/context7/cleanup.py +461 -461
  170. tapps_agents/context7/commands.py +858 -858
  171. tapps_agents/context7/credential_validation.py +276 -276
  172. tapps_agents/context7/cross_reference_resolver.py +168 -168
  173. tapps_agents/context7/cross_references.py +424 -424
  174. tapps_agents/context7/doc_manager.py +225 -225
  175. tapps_agents/context7/fuzzy_matcher.py +369 -369
  176. tapps_agents/context7/kb_cache.py +404 -404
  177. tapps_agents/context7/language_detector.py +219 -219
  178. tapps_agents/context7/library_detector.py +725 -725
  179. tapps_agents/context7/lookup.py +738 -738
  180. tapps_agents/context7/metadata.py +258 -258
  181. tapps_agents/context7/refresh_queue.py +300 -300
  182. tapps_agents/context7/security.py +373 -373
  183. tapps_agents/context7/staleness_policies.py +278 -278
  184. tapps_agents/context7/tiles_integration.py +47 -47
  185. tapps_agents/continuous_bug_fix/__init__.py +20 -20
  186. tapps_agents/continuous_bug_fix/bug_finder.py +306 -306
  187. tapps_agents/continuous_bug_fix/bug_fix_coordinator.py +177 -177
  188. tapps_agents/continuous_bug_fix/commit_manager.py +178 -178
  189. tapps_agents/continuous_bug_fix/continuous_bug_fixer.py +322 -322
  190. tapps_agents/continuous_bug_fix/proactive_bug_finder.py +285 -285
  191. tapps_agents/core/__init__.py +298 -298
  192. tapps_agents/core/adaptive_cache_config.py +432 -432
  193. tapps_agents/core/agent_base.py +647 -647
  194. tapps_agents/core/agent_cache.py +466 -466
  195. tapps_agents/core/agent_learning.py +1865 -1865
  196. tapps_agents/core/analytics_dashboard.py +563 -563
  197. tapps_agents/core/analytics_enhancements.py +597 -597
  198. tapps_agents/core/anonymization.py +274 -274
  199. tapps_agents/core/artifact_context_builder.py +293 -0
  200. tapps_agents/core/ast_parser.py +228 -228
  201. tapps_agents/core/async_file_ops.py +402 -402
  202. tapps_agents/core/best_practice_consultant.py +299 -299
  203. tapps_agents/core/brownfield_analyzer.py +299 -299
  204. tapps_agents/core/brownfield_review.py +541 -541
  205. tapps_agents/core/browser_controller.py +513 -513
  206. tapps_agents/core/capability_registry.py +418 -418
  207. tapps_agents/core/change_impact_analyzer.py +190 -190
  208. tapps_agents/core/checkpoint_manager.py +377 -377
  209. tapps_agents/core/code_generator.py +329 -329
  210. tapps_agents/core/code_validator.py +276 -276
  211. tapps_agents/core/command_registry.py +327 -327
  212. tapps_agents/core/config.py +33 -0
  213. tapps_agents/core/context_gathering/__init__.py +2 -2
  214. tapps_agents/core/context_gathering/repository_explorer.py +28 -28
  215. tapps_agents/core/context_intelligence/__init__.py +2 -2
  216. tapps_agents/core/context_intelligence/relevance_scorer.py +24 -24
  217. tapps_agents/core/context_intelligence/token_budget_manager.py +27 -27
  218. tapps_agents/core/context_manager.py +240 -240
  219. tapps_agents/core/cursor_feedback_monitor.py +146 -146
  220. tapps_agents/core/cursor_verification.py +290 -290
  221. tapps_agents/core/customization_loader.py +280 -280
  222. tapps_agents/core/customization_schema.py +260 -260
  223. tapps_agents/core/customization_template.py +238 -238
  224. tapps_agents/core/debug_logger.py +124 -124
  225. tapps_agents/core/design_validator.py +298 -298
  226. tapps_agents/core/diagram_generator.py +226 -226
  227. tapps_agents/core/docker_utils.py +232 -232
  228. tapps_agents/core/document_generator.py +617 -617
  229. tapps_agents/core/domain_detector.py +30 -30
  230. tapps_agents/core/error_envelope.py +454 -454
  231. tapps_agents/core/error_handler.py +270 -270
  232. tapps_agents/core/estimation_tracker.py +189 -189
  233. tapps_agents/core/eval_prompt_engine.py +116 -116
  234. tapps_agents/core/evaluation_base.py +119 -119
  235. tapps_agents/core/evaluation_models.py +320 -320
  236. tapps_agents/core/evaluation_orchestrator.py +225 -225
  237. tapps_agents/core/evaluators/__init__.py +7 -7
  238. tapps_agents/core/evaluators/architectural_evaluator.py +205 -205
  239. tapps_agents/core/evaluators/behavioral_evaluator.py +160 -160
  240. tapps_agents/core/evaluators/performance_profile_evaluator.py +160 -160
  241. tapps_agents/core/evaluators/security_posture_evaluator.py +148 -148
  242. tapps_agents/core/evaluators/spec_compliance_evaluator.py +181 -181
  243. tapps_agents/core/exceptions.py +107 -107
  244. tapps_agents/core/expert_config_generator.py +293 -293
  245. tapps_agents/core/export_schema.py +202 -202
  246. tapps_agents/core/external_feedback_models.py +102 -102
  247. tapps_agents/core/external_feedback_storage.py +213 -213
  248. tapps_agents/core/fallback_strategy.py +314 -314
  249. tapps_agents/core/feedback_analyzer.py +162 -162
  250. tapps_agents/core/feedback_collector.py +178 -178
  251. tapps_agents/core/git_operations.py +445 -445
  252. tapps_agents/core/hardware_profiler.py +151 -151
  253. tapps_agents/core/instructions.py +324 -324
  254. tapps_agents/core/io_guardrails.py +69 -69
  255. tapps_agents/core/issue_manifest.py +249 -249
  256. tapps_agents/core/issue_schema.py +139 -139
  257. tapps_agents/core/json_utils.py +128 -128
  258. tapps_agents/core/knowledge_graph.py +446 -446
  259. tapps_agents/core/language_detector.py +296 -296
  260. tapps_agents/core/learning_confidence.py +242 -242
  261. tapps_agents/core/learning_dashboard.py +246 -246
  262. tapps_agents/core/learning_decision.py +384 -384
  263. tapps_agents/core/learning_explainability.py +578 -578
  264. tapps_agents/core/learning_export.py +287 -287
  265. tapps_agents/core/learning_integration.py +228 -228
  266. tapps_agents/core/llm_behavior.py +232 -232
  267. tapps_agents/core/long_duration_support.py +786 -786
  268. tapps_agents/core/mcp_setup.py +106 -106
  269. tapps_agents/core/memory_integration.py +396 -396
  270. tapps_agents/core/meta_learning.py +666 -666
  271. tapps_agents/core/module_path_sanitizer.py +199 -199
  272. tapps_agents/core/multi_agent_orchestrator.py +382 -382
  273. tapps_agents/core/network_errors.py +125 -125
  274. tapps_agents/core/nfr_validator.py +336 -336
  275. tapps_agents/core/offline_mode.py +158 -158
  276. tapps_agents/core/output_contracts.py +300 -300
  277. tapps_agents/core/output_formatter.py +300 -300
  278. tapps_agents/core/path_normalizer.py +174 -174
  279. tapps_agents/core/path_validator.py +322 -322
  280. tapps_agents/core/pattern_library.py +250 -250
  281. tapps_agents/core/performance_benchmark.py +301 -301
  282. tapps_agents/core/performance_monitor.py +184 -184
  283. tapps_agents/core/playwright_mcp_controller.py +771 -771
  284. tapps_agents/core/policy_loader.py +135 -135
  285. tapps_agents/core/progress.py +166 -166
  286. tapps_agents/core/project_profile.py +354 -354
  287. tapps_agents/core/project_type_detector.py +454 -454
  288. tapps_agents/core/prompt_base.py +223 -223
  289. tapps_agents/core/prompt_learning/__init__.py +2 -2
  290. tapps_agents/core/prompt_learning/learning_loop.py +24 -24
  291. tapps_agents/core/prompt_learning/project_prompt_store.py +25 -25
  292. tapps_agents/core/prompt_learning/skills_prompt_analyzer.py +35 -35
  293. tapps_agents/core/prompt_optimization/__init__.py +6 -6
  294. tapps_agents/core/prompt_optimization/ab_tester.py +114 -114
  295. tapps_agents/core/prompt_optimization/correlation_analyzer.py +160 -160
  296. tapps_agents/core/prompt_optimization/progressive_refiner.py +129 -129
  297. tapps_agents/core/prompt_optimization/prompt_library.py +37 -37
  298. tapps_agents/core/requirements_evaluator.py +431 -431
  299. tapps_agents/core/resource_aware_executor.py +449 -449
  300. tapps_agents/core/resource_monitor.py +343 -343
  301. tapps_agents/core/resume_handler.py +298 -298
  302. tapps_agents/core/retry_handler.py +197 -197
  303. tapps_agents/core/review_checklists.py +479 -479
  304. tapps_agents/core/role_loader.py +201 -201
  305. tapps_agents/core/role_template_loader.py +201 -201
  306. tapps_agents/core/runtime_mode.py +60 -60
  307. tapps_agents/core/security_scanner.py +342 -342
  308. tapps_agents/core/skill_agent_registry.py +194 -194
  309. tapps_agents/core/skill_integration.py +208 -208
  310. tapps_agents/core/skill_loader.py +492 -492
  311. tapps_agents/core/skill_template.py +341 -341
  312. tapps_agents/core/skill_validator.py +478 -478
  313. tapps_agents/core/stack_analyzer.py +35 -35
  314. tapps_agents/core/startup.py +174 -174
  315. tapps_agents/core/storage_manager.py +397 -397
  316. tapps_agents/core/storage_models.py +166 -166
  317. tapps_agents/core/story_evaluator.py +410 -410
  318. tapps_agents/core/subprocess_utils.py +170 -170
  319. tapps_agents/core/task_duration.py +296 -296
  320. tapps_agents/core/task_memory.py +582 -582
  321. tapps_agents/core/task_state.py +226 -226
  322. tapps_agents/core/tech_stack_priorities.py +208 -208
  323. tapps_agents/core/temp_directory.py +194 -194
  324. tapps_agents/core/template_merger.py +600 -600
  325. tapps_agents/core/template_selector.py +280 -280
  326. tapps_agents/core/test_generator.py +286 -286
  327. tapps_agents/core/tiered_context.py +253 -253
  328. tapps_agents/core/token_monitor.py +345 -345
  329. tapps_agents/core/traceability.py +254 -254
  330. tapps_agents/core/trajectory_tracker.py +50 -50
  331. tapps_agents/core/unicode_safe.py +143 -143
  332. tapps_agents/core/unified_cache_config.py +170 -170
  333. tapps_agents/core/unified_state.py +324 -324
  334. tapps_agents/core/validate_cursor_setup.py +237 -237
  335. tapps_agents/core/validation_registry.py +136 -136
  336. tapps_agents/core/validators/__init__.py +4 -4
  337. tapps_agents/core/validators/python_validator.py +87 -87
  338. tapps_agents/core/verification_agent.py +90 -90
  339. tapps_agents/core/visual_feedback.py +644 -644
  340. tapps_agents/core/workflow_validator.py +197 -197
  341. tapps_agents/core/worktree.py +367 -367
  342. tapps_agents/docker/__init__.py +10 -10
  343. tapps_agents/docker/analyzer.py +186 -186
  344. tapps_agents/docker/debugger.py +229 -229
  345. tapps_agents/docker/error_patterns.py +216 -216
  346. tapps_agents/epic/__init__.py +22 -22
  347. tapps_agents/epic/beads_sync.py +115 -115
  348. tapps_agents/epic/markdown_sync.py +105 -105
  349. tapps_agents/epic/models.py +96 -96
  350. tapps_agents/experts/__init__.py +163 -163
  351. tapps_agents/experts/agent_integration.py +243 -243
  352. tapps_agents/experts/auto_generator.py +331 -331
  353. tapps_agents/experts/base_expert.py +536 -536
  354. tapps_agents/experts/builtin_registry.py +261 -261
  355. tapps_agents/experts/business_metrics.py +565 -565
  356. tapps_agents/experts/cache.py +266 -266
  357. tapps_agents/experts/confidence_breakdown.py +306 -306
  358. tapps_agents/experts/confidence_calculator.py +336 -336
  359. tapps_agents/experts/confidence_metrics.py +236 -236
  360. tapps_agents/experts/domain_config.py +311 -311
  361. tapps_agents/experts/domain_detector.py +550 -550
  362. tapps_agents/experts/domain_utils.py +84 -84
  363. tapps_agents/experts/expert_config.py +113 -113
  364. tapps_agents/experts/expert_engine.py +465 -465
  365. tapps_agents/experts/expert_registry.py +744 -744
  366. tapps_agents/experts/expert_synthesizer.py +70 -70
  367. tapps_agents/experts/governance.py +197 -197
  368. tapps_agents/experts/history_logger.py +312 -312
  369. tapps_agents/experts/knowledge/README.md +180 -180
  370. tapps_agents/experts/knowledge/accessibility/accessible-forms.md +331 -331
  371. tapps_agents/experts/knowledge/accessibility/aria-patterns.md +344 -344
  372. tapps_agents/experts/knowledge/accessibility/color-contrast.md +285 -285
  373. tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md +332 -332
  374. tapps_agents/experts/knowledge/accessibility/screen-readers.md +282 -282
  375. tapps_agents/experts/knowledge/accessibility/semantic-html.md +355 -355
  376. tapps_agents/experts/knowledge/accessibility/testing-accessibility.md +369 -369
  377. tapps_agents/experts/knowledge/accessibility/wcag-2.1.md +296 -296
  378. tapps_agents/experts/knowledge/accessibility/wcag-2.2.md +211 -211
  379. tapps_agents/experts/knowledge/agent-learning/best-practices.md +715 -715
  380. tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md +282 -282
  381. tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md +320 -320
  382. tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md +90 -90
  383. tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md +260 -260
  384. tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md +309 -309
  385. tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +521 -521
  386. tapps_agents/experts/knowledge/api-design-integration/api-versioning.md +421 -421
  387. tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md +61 -61
  388. tapps_agents/experts/knowledge/api-design-integration/contract-testing.md +221 -221
  389. tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +489 -489
  390. tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md +360 -360
  391. tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md +262 -262
  392. tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md +582 -582
  393. tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md +499 -499
  394. tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md +455 -455
  395. tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md +507 -507
  396. tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md +618 -618
  397. tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md +480 -480
  398. tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md +175 -175
  399. tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md +261 -261
  400. tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md +222 -222
  401. tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md +122 -122
  402. tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md +153 -153
  403. tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md +285 -285
  404. tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md +187 -187
  405. tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md +253 -253
  406. tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md +155 -155
  407. tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md +200 -200
  408. tapps_agents/experts/knowledge/code-quality-analysis/README.md +16 -16
  409. tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md +137 -137
  410. tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md +181 -181
  411. tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md +191 -191
  412. tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md +313 -313
  413. tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md +255 -255
  414. tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md +282 -282
  415. tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md +275 -275
  416. tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md +297 -297
  417. tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md +383 -383
  418. tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md +285 -285
  419. tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md +344 -344
  420. tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md +385 -385
  421. tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md +280 -280
  422. tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md +164 -164
  423. tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md +182 -182
  424. tapps_agents/experts/knowledge/database-data-management/data-modeling.md +172 -172
  425. tapps_agents/experts/knowledge/database-data-management/database-design.md +187 -187
  426. tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md +342 -342
  427. tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md +432 -432
  428. tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md +442 -442
  429. tapps_agents/experts/knowledge/database-data-management/migration-strategies.md +216 -216
  430. tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md +259 -259
  431. tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md +184 -184
  432. tapps_agents/experts/knowledge/database-data-management/sql-optimization.md +175 -175
  433. tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md +444 -444
  434. tapps_agents/experts/knowledge/development-workflow/README.md +16 -16
  435. tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md +216 -216
  436. tapps_agents/experts/knowledge/development-workflow/build-strategies.md +198 -198
  437. tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md +205 -205
  438. tapps_agents/experts/knowledge/development-workflow/git-workflows.md +205 -205
  439. tapps_agents/experts/knowledge/documentation-knowledge-management/README.md +16 -16
  440. tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md +231 -231
  441. tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md +191 -191
  442. tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md +171 -171
  443. tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md +192 -192
  444. tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md +461 -461
  445. tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md +459 -459
  446. tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md +367 -367
  447. tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md +478 -478
  448. tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md +510 -510
  449. tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md +492 -492
  450. tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md +573 -573
  451. tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md +419 -419
  452. tapps_agents/experts/knowledge/performance/anti-patterns.md +284 -284
  453. tapps_agents/experts/knowledge/performance/api-performance.md +256 -256
  454. tapps_agents/experts/knowledge/performance/caching.md +327 -327
  455. tapps_agents/experts/knowledge/performance/database-performance.md +252 -252
  456. tapps_agents/experts/knowledge/performance/optimization-patterns.md +327 -327
  457. tapps_agents/experts/knowledge/performance/profiling.md +297 -297
  458. tapps_agents/experts/knowledge/performance/resource-management.md +293 -293
  459. tapps_agents/experts/knowledge/performance/scalability.md +306 -306
  460. tapps_agents/experts/knowledge/security/owasp-top10.md +209 -209
  461. tapps_agents/experts/knowledge/security/secure-coding-practices.md +207 -207
  462. tapps_agents/experts/knowledge/security/threat-modeling.md +220 -220
  463. tapps_agents/experts/knowledge/security/vulnerability-patterns.md +342 -342
  464. tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md +314 -314
  465. tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md +379 -379
  466. tapps_agents/experts/knowledge/software-architecture/service-communication.md +316 -316
  467. tapps_agents/experts/knowledge/testing/best-practices.md +310 -310
  468. tapps_agents/experts/knowledge/testing/coverage-analysis.md +293 -293
  469. tapps_agents/experts/knowledge/testing/mocking.md +256 -256
  470. tapps_agents/experts/knowledge/testing/test-automation.md +276 -276
  471. tapps_agents/experts/knowledge/testing/test-data.md +271 -271
  472. tapps_agents/experts/knowledge/testing/test-design-patterns.md +280 -280
  473. tapps_agents/experts/knowledge/testing/test-maintenance.md +236 -236
  474. tapps_agents/experts/knowledge/testing/test-strategies.md +311 -311
  475. tapps_agents/experts/knowledge/user-experience/information-architecture.md +325 -325
  476. tapps_agents/experts/knowledge/user-experience/interaction-design.md +363 -363
  477. tapps_agents/experts/knowledge/user-experience/prototyping.md +293 -293
  478. tapps_agents/experts/knowledge/user-experience/usability-heuristics.md +337 -337
  479. tapps_agents/experts/knowledge/user-experience/usability-testing.md +311 -311
  480. tapps_agents/experts/knowledge/user-experience/user-journeys.md +296 -296
  481. tapps_agents/experts/knowledge/user-experience/user-research.md +373 -373
  482. tapps_agents/experts/knowledge/user-experience/ux-principles.md +340 -340
  483. tapps_agents/experts/knowledge_freshness.py +321 -321
  484. tapps_agents/experts/knowledge_ingestion.py +438 -438
  485. tapps_agents/experts/knowledge_need_detector.py +93 -93
  486. tapps_agents/experts/knowledge_validator.py +382 -382
  487. tapps_agents/experts/observability.py +440 -440
  488. tapps_agents/experts/passive_notifier.py +238 -238
  489. tapps_agents/experts/proactive_orchestrator.py +32 -32
  490. tapps_agents/experts/rag_chunker.py +205 -205
  491. tapps_agents/experts/rag_embedder.py +152 -152
  492. tapps_agents/experts/rag_evaluation.py +299 -299
  493. tapps_agents/experts/rag_index.py +303 -303
  494. tapps_agents/experts/rag_metrics.py +293 -293
  495. tapps_agents/experts/rag_safety.py +263 -263
  496. tapps_agents/experts/report_generator.py +296 -296
  497. tapps_agents/experts/setup_wizard.py +441 -441
  498. tapps_agents/experts/simple_rag.py +431 -431
  499. tapps_agents/experts/vector_rag.py +354 -354
  500. tapps_agents/experts/weight_distributor.py +304 -304
  501. tapps_agents/health/__init__.py +24 -24
  502. tapps_agents/health/base.py +75 -75
  503. tapps_agents/health/checks/__init__.py +22 -22
  504. tapps_agents/health/checks/automation.py +127 -127
  505. tapps_agents/health/checks/context7_cache.py +210 -210
  506. tapps_agents/health/checks/environment.py +116 -116
  507. tapps_agents/health/checks/execution.py +170 -170
  508. tapps_agents/health/checks/knowledge_base.py +187 -187
  509. tapps_agents/health/checks/outcomes.py +324 -324
  510. tapps_agents/health/collector.py +280 -280
  511. tapps_agents/health/dashboard.py +137 -137
  512. tapps_agents/health/metrics.py +151 -151
  513. tapps_agents/health/orchestrator.py +271 -271
  514. tapps_agents/health/registry.py +166 -166
  515. tapps_agents/hooks/__init__.py +33 -33
  516. tapps_agents/hooks/config.py +140 -140
  517. tapps_agents/hooks/events.py +135 -135
  518. tapps_agents/hooks/executor.py +128 -128
  519. tapps_agents/hooks/manager.py +143 -143
  520. tapps_agents/integration/__init__.py +8 -8
  521. tapps_agents/integration/service_integrator.py +121 -121
  522. tapps_agents/integrations/__init__.py +10 -10
  523. tapps_agents/integrations/clawdbot.py +525 -525
  524. tapps_agents/integrations/memory_bridge.py +356 -356
  525. tapps_agents/mcp/__init__.py +18 -18
  526. tapps_agents/mcp/gateway.py +112 -112
  527. tapps_agents/mcp/servers/__init__.py +13 -13
  528. tapps_agents/mcp/servers/analysis.py +204 -204
  529. tapps_agents/mcp/servers/context7.py +198 -198
  530. tapps_agents/mcp/servers/filesystem.py +218 -218
  531. tapps_agents/mcp/servers/git.py +201 -201
  532. tapps_agents/mcp/tool_registry.py +115 -115
  533. tapps_agents/quality/__init__.py +54 -54
  534. tapps_agents/quality/coverage_analyzer.py +379 -379
  535. tapps_agents/quality/enforcement.py +82 -82
  536. tapps_agents/quality/gates/__init__.py +37 -37
  537. tapps_agents/quality/gates/approval_gate.py +255 -255
  538. tapps_agents/quality/gates/base.py +84 -84
  539. tapps_agents/quality/gates/exceptions.py +43 -43
  540. tapps_agents/quality/gates/policy_gate.py +195 -195
  541. tapps_agents/quality/gates/registry.py +239 -239
  542. tapps_agents/quality/gates/security_gate.py +156 -156
  543. tapps_agents/quality/quality_gates.py +369 -369
  544. tapps_agents/quality/secret_scanner.py +335 -335
  545. tapps_agents/session/__init__.py +19 -19
  546. tapps_agents/session/manager.py +256 -256
  547. tapps_agents/simple_mode/__init__.py +66 -66
  548. tapps_agents/simple_mode/agent_contracts.py +357 -357
  549. tapps_agents/simple_mode/beads_hooks.py +151 -151
  550. tapps_agents/simple_mode/code_snippet_handler.py +382 -382
  551. tapps_agents/simple_mode/documentation_manager.py +395 -395
  552. tapps_agents/simple_mode/documentation_reader.py +187 -187
  553. tapps_agents/simple_mode/file_inference.py +292 -292
  554. tapps_agents/simple_mode/framework_change_detector.py +268 -268
  555. tapps_agents/simple_mode/intent_parser.py +510 -510
  556. tapps_agents/simple_mode/learning_progression.py +358 -358
  557. tapps_agents/simple_mode/nl_handler.py +700 -700
  558. tapps_agents/simple_mode/onboarding.py +253 -253
  559. tapps_agents/simple_mode/orchestrators/__init__.py +38 -38
  560. tapps_agents/simple_mode/orchestrators/base.py +185 -185
  561. tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py +49 -49
  562. tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py +135 -135
  563. tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2700 -2667
  564. tapps_agents/simple_mode/orchestrators/deliverable_checklist.py +349 -349
  565. tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py +53 -53
  566. tapps_agents/simple_mode/orchestrators/epic_orchestrator.py +122 -122
  567. tapps_agents/simple_mode/orchestrators/explore_orchestrator.py +184 -184
  568. tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -723
  569. tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py +206 -206
  570. tapps_agents/simple_mode/orchestrators/pr_orchestrator.py +237 -237
  571. tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py +222 -222
  572. tapps_agents/simple_mode/orchestrators/requirements_tracer.py +262 -262
  573. tapps_agents/simple_mode/orchestrators/resume_orchestrator.py +210 -210
  574. tapps_agents/simple_mode/orchestrators/review_orchestrator.py +161 -161
  575. tapps_agents/simple_mode/orchestrators/test_orchestrator.py +82 -82
  576. tapps_agents/simple_mode/output_aggregator.py +340 -340
  577. tapps_agents/simple_mode/result_formatters.py +598 -598
  578. tapps_agents/simple_mode/step_dependencies.py +382 -382
  579. tapps_agents/simple_mode/step_results.py +276 -276
  580. tapps_agents/simple_mode/streaming.py +388 -388
  581. tapps_agents/simple_mode/variations.py +129 -129
  582. tapps_agents/simple_mode/visual_feedback.py +238 -238
  583. tapps_agents/simple_mode/zero_config.py +274 -274
  584. tapps_agents/suggestions/__init__.py +8 -8
  585. tapps_agents/suggestions/inline_suggester.py +52 -52
  586. tapps_agents/templates/__init__.py +8 -8
  587. tapps_agents/templates/microservice_generator.py +274 -274
  588. tapps_agents/utils/env_validator.py +291 -291
  589. tapps_agents/workflow/__init__.py +171 -171
  590. tapps_agents/workflow/acceptance_verifier.py +132 -132
  591. tapps_agents/workflow/agent_handlers/__init__.py +41 -41
  592. tapps_agents/workflow/agent_handlers/analyst_handler.py +75 -75
  593. tapps_agents/workflow/agent_handlers/architect_handler.py +107 -107
  594. tapps_agents/workflow/agent_handlers/base.py +84 -84
  595. tapps_agents/workflow/agent_handlers/debugger_handler.py +100 -100
  596. tapps_agents/workflow/agent_handlers/designer_handler.py +110 -110
  597. tapps_agents/workflow/agent_handlers/documenter_handler.py +94 -94
  598. tapps_agents/workflow/agent_handlers/implementer_handler.py +235 -235
  599. tapps_agents/workflow/agent_handlers/ops_handler.py +62 -62
  600. tapps_agents/workflow/agent_handlers/orchestrator_handler.py +43 -43
  601. tapps_agents/workflow/agent_handlers/planner_handler.py +98 -98
  602. tapps_agents/workflow/agent_handlers/registry.py +119 -119
  603. tapps_agents/workflow/agent_handlers/reviewer_handler.py +119 -119
  604. tapps_agents/workflow/agent_handlers/tester_handler.py +69 -69
  605. tapps_agents/workflow/analytics_accessor.py +337 -337
  606. tapps_agents/workflow/analytics_alerts.py +416 -416
  607. tapps_agents/workflow/analytics_dashboard_cursor.py +281 -281
  608. tapps_agents/workflow/analytics_dual_write.py +103 -103
  609. tapps_agents/workflow/analytics_integration.py +119 -119
  610. tapps_agents/workflow/analytics_query_parser.py +278 -278
  611. tapps_agents/workflow/analytics_visualizer.py +259 -259
  612. tapps_agents/workflow/artifact_helper.py +204 -204
  613. tapps_agents/workflow/audit_logger.py +263 -263
  614. tapps_agents/workflow/auto_execution_config.py +340 -340
  615. tapps_agents/workflow/auto_progression.py +586 -586
  616. tapps_agents/workflow/branch_cleanup.py +349 -349
  617. tapps_agents/workflow/checkpoint.py +256 -256
  618. tapps_agents/workflow/checkpoint_manager.py +178 -178
  619. tapps_agents/workflow/code_artifact.py +179 -179
  620. tapps_agents/workflow/common_enums.py +96 -96
  621. tapps_agents/workflow/confirmation_handler.py +130 -130
  622. tapps_agents/workflow/context_analyzer.py +222 -222
  623. tapps_agents/workflow/context_artifact.py +230 -230
  624. tapps_agents/workflow/cursor_chat.py +94 -94
  625. tapps_agents/workflow/cursor_executor.py +2337 -2196
  626. tapps_agents/workflow/cursor_skill_helper.py +516 -516
  627. tapps_agents/workflow/dependency_resolver.py +244 -244
  628. tapps_agents/workflow/design_artifact.py +156 -156
  629. tapps_agents/workflow/detector.py +751 -751
  630. tapps_agents/workflow/direct_execution_fallback.py +301 -301
  631. tapps_agents/workflow/docs_artifact.py +168 -168
  632. tapps_agents/workflow/enforcer.py +389 -389
  633. tapps_agents/workflow/enhancement_artifact.py +142 -142
  634. tapps_agents/workflow/error_recovery.py +806 -806
  635. tapps_agents/workflow/event_bus.py +183 -183
  636. tapps_agents/workflow/event_log.py +612 -612
  637. tapps_agents/workflow/events.py +63 -63
  638. tapps_agents/workflow/exceptions.py +43 -43
  639. tapps_agents/workflow/execution_graph.py +498 -498
  640. tapps_agents/workflow/execution_plan.py +126 -126
  641. tapps_agents/workflow/file_utils.py +186 -186
  642. tapps_agents/workflow/gate_evaluator.py +182 -182
  643. tapps_agents/workflow/gate_integration.py +200 -200
  644. tapps_agents/workflow/graph_visualizer.py +130 -130
  645. tapps_agents/workflow/health_checker.py +206 -206
  646. tapps_agents/workflow/logging_helper.py +243 -243
  647. tapps_agents/workflow/manifest.py +582 -582
  648. tapps_agents/workflow/marker_writer.py +250 -250
  649. tapps_agents/workflow/message_formatter.py +188 -188
  650. tapps_agents/workflow/messaging.py +325 -325
  651. tapps_agents/workflow/metadata_models.py +91 -91
  652. tapps_agents/workflow/metrics_integration.py +226 -226
  653. tapps_agents/workflow/migration_utils.py +116 -116
  654. tapps_agents/workflow/models.py +148 -111
  655. tapps_agents/workflow/nlp_config.py +198 -198
  656. tapps_agents/workflow/nlp_error_handler.py +207 -207
  657. tapps_agents/workflow/nlp_executor.py +163 -163
  658. tapps_agents/workflow/nlp_parser.py +528 -528
  659. tapps_agents/workflow/observability_dashboard.py +451 -451
  660. tapps_agents/workflow/observer.py +170 -170
  661. tapps_agents/workflow/ops_artifact.py +257 -257
  662. tapps_agents/workflow/output_passing.py +214 -214
  663. tapps_agents/workflow/parallel_executor.py +463 -463
  664. tapps_agents/workflow/planning_artifact.py +179 -179
  665. tapps_agents/workflow/preset_loader.py +285 -285
  666. tapps_agents/workflow/preset_recommender.py +270 -270
  667. tapps_agents/workflow/progress_logger.py +145 -145
  668. tapps_agents/workflow/progress_manager.py +303 -303
  669. tapps_agents/workflow/progress_monitor.py +186 -186
  670. tapps_agents/workflow/progress_updates.py +423 -423
  671. tapps_agents/workflow/quality_artifact.py +158 -158
  672. tapps_agents/workflow/quality_loopback.py +101 -101
  673. tapps_agents/workflow/recommender.py +387 -387
  674. tapps_agents/workflow/remediation_loop.py +166 -166
  675. tapps_agents/workflow/result_aggregator.py +300 -300
  676. tapps_agents/workflow/review_artifact.py +185 -185
  677. tapps_agents/workflow/schema_validator.py +522 -522
  678. tapps_agents/workflow/session_handoff.py +178 -178
  679. tapps_agents/workflow/skill_invoker.py +648 -648
  680. tapps_agents/workflow/state_manager.py +756 -756
  681. tapps_agents/workflow/state_persistence_config.py +331 -331
  682. tapps_agents/workflow/status_monitor.py +449 -449
  683. tapps_agents/workflow/step_checkpoint.py +314 -314
  684. tapps_agents/workflow/step_details.py +201 -201
  685. tapps_agents/workflow/story_models.py +147 -147
  686. tapps_agents/workflow/streaming.py +416 -416
  687. tapps_agents/workflow/suggestion_engine.py +552 -552
  688. tapps_agents/workflow/testing_artifact.py +186 -186
  689. tapps_agents/workflow/timeline.py +158 -158
  690. tapps_agents/workflow/token_integration.py +209 -209
  691. tapps_agents/workflow/validation.py +217 -217
  692. tapps_agents/workflow/visual_feedback.py +391 -391
  693. tapps_agents/workflow/workflow_chain.py +95 -95
  694. tapps_agents/workflow/workflow_summary.py +219 -219
  695. tapps_agents/workflow/worktree_manager.py +724 -724
  696. {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/METADATA +672 -672
  697. tapps_agents-3.6.0.dist-info/RECORD +758 -0
  698. {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/licenses/LICENSE +22 -22
  699. tapps_agents/health/checks/outcomes.backup_20260204_064058.py +0 -324
  700. tapps_agents/health/checks/outcomes.backup_20260204_064256.py +0 -324
  701. tapps_agents/health/checks/outcomes.backup_20260204_064600.py +0 -324
  702. tapps_agents-3.5.40.dist-info/RECORD +0 -760
  703. {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/WHEEL +0 -0
  704. {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/entry_points.txt +0 -0
  705. {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/top_level.txt +0 -0
@@ -1,760 +0,0 @@
1
- tapps_agents/__init__.py,sha256=PRiG3PBenRzWH5o_UapUUWxh2l2A7N_mHD-ute_PzjY,1180
2
- tapps_agents/agents/__init__.py,sha256=w0Aj0bEdmIoPY1OcVTK0KFRSkYeAk-66CM2zmGTLjW0,698
3
- tapps_agents/agents/analyst/__init__.py,sha256=zLFkB6j1PkcpeaOk8Vnx76oYzVYyUqdULWj-pOyfLZY,135
4
- tapps_agents/agents/analyst/agent.py,sha256=YgPvWOqdZfIA24jIrbmHSdj3EVGIrGpwVIv5ep9uc8U,32033
5
- tapps_agents/agents/architect/__init__.py,sha256=IXPiHqbjYScQTOnXAY8xPJ7ErPhgeeXQy8G_B5Gcf9E,135
6
- tapps_agents/agents/architect/agent.py,sha256=Y3H1PEnxYSLRtSayUA-_ZNnGA5HFiCL1wym_Sfg84e4,42507
7
- tapps_agents/agents/architect/pattern_detector.py,sha256=TmgSmGsY6rGip8YV5et0HcXcjmzWawOZBZZwWeDb9_g,2972
8
- tapps_agents/agents/cleanup/__init__.py,sha256=1YoZ2SpX6fOun5F0RAEMMyCUeUXxgcdDXpm_L1qx1O4,131
9
- tapps_agents/agents/cleanup/agent.py,sha256=OzrRyjaKDiuiC_ryJQpUnc9gcPcDg6qY8scSZbnWnno,17178
10
- tapps_agents/agents/debugger/__init__.py,sha256=SY-6_cbvKpFSN3E3FJ0de_Tfj8VA2b95T_s39LMDkZU,130
11
- tapps_agents/agents/debugger/agent.py,sha256=hTxNoAjcHVv7sIQhDJHm3uDkJzk6oy1aYfxxbToiXJM,11900
12
- tapps_agents/agents/debugger/error_analyzer.py,sha256=_2RRD5Kb7y_ak1SWoLnnqZExzYcbYUB9NmyfsDfpioM,18099
13
- tapps_agents/agents/designer/__init__.py,sha256=oJ2CKxUabNNviUmRmnV0m8_JkFyjZNpvQRetx9TJRTA,141
14
- tapps_agents/agents/designer/agent.py,sha256=LTfsUD73H84xWx528lQtAr_JAAnupJc4hWXSZ7MZAu0,32112
15
- tapps_agents/agents/designer/visual_designer.py,sha256=I9H2ZZrfptwpegDRFbP6QaszT2xydlbTaJMARhjmMEg,23209
16
- tapps_agents/agents/documenter/__init__.py,sha256=28ooCfh8Xaey2w8wGPiTKQzOQkiVj_ZYsSQzY5RAEMc,125
17
- tapps_agents/agents/documenter/agent.py,sha256=LHmTweCIMdDWTej6EOkFM1FM6RVkbjNBxgCcBue0HHk,22340
18
- tapps_agents/agents/documenter/doc_generator.py,sha256=A9HyMFAhX0J_9frkAH0AiPBrL2LA2XF1uVNIlvDrOKA,17841
19
- tapps_agents/agents/documenter/doc_validator.py,sha256=3nTEujC5-JQQaeK-e8qWpHOM6ijTjGYIo5GV0Mo4o2U,14389
20
- tapps_agents/agents/documenter/framework_doc_updater.py,sha256=LhxhY5aDP_6yGsWUWkuK43jPDCOPdQ446k7x-C3YA_k,18438
21
- tapps_agents/agents/enhancer/__init__.py,sha256=BT1vH1rkV2tsry9eBtI3U0EXEMWZB3ptGSTECKlcOcY,122
22
- tapps_agents/agents/enhancer/agent.py,sha256=GQrz0AiVaiwsLFfzr4CC8A0sn1hkOrYpkcIZS7pWYDw,119076
23
- tapps_agents/agents/evaluator/__init__.py,sha256=gGBp4fg8o33yQppF-G8139mOH3VrhFumVslMaecyOOs,151
24
- tapps_agents/agents/evaluator/agent.py,sha256=djcsFQ5XM8FKgDU0OZdXj4VOxt2d9Uj90HSR0PgdFiQ,16092
25
- tapps_agents/agents/evaluator/priority_evaluator.py,sha256=Wa9FobcOqPzbMVgVEPgkFrWDq6LItAF8Fe-j9WHgYw8,22948
26
- tapps_agents/agents/evaluator/quality_analyzer.py,sha256=3shvSZqLf_fJf9ErzJveMgGNrvr6zAEHHh-Z92dtIe8,4814
27
- tapps_agents/agents/evaluator/report_generator.py,sha256=51DDOXHFvWSzIiA4e9QfPG6jHu6qQ07aunz21cfCGSo,13594
28
- tapps_agents/agents/evaluator/usage_analyzer.py,sha256=8bEYE_-iUl8M9msl77C1DtW-1VCDQMcPRx92Qs3efi0,6842
29
- tapps_agents/agents/evaluator/workflow_analyzer.py,sha256=1hHTwIbjc_308bVUtGYEFDb3XD0J4Rqq-TX-LTqvGD0,7099
30
- tapps_agents/agents/implementer/__init__.py,sha256=CFUeZQZC__nV-V8MvF6nDg11sXhNFUbj5Q9OuMqLrc8,141
31
- tapps_agents/agents/implementer/agent.py,sha256=1srh5qt8zXERgjTyubwU9X---SGUUMmuQk2br3ZPE98,32178
32
- tapps_agents/agents/implementer/auto_fix.py,sha256=M_OgtttKHmCy3Oy65NoPXRFyor-he9S_DZulqwnTvR4,37607
33
- tapps_agents/agents/implementer/code_generator.py,sha256=xdzoD0jP815bTzI4lrjv55RNEKE1yZCopUorz0sy4wQ,2532
34
- tapps_agents/agents/improver/__init__.py,sha256=jQkAcemMDJtLZ2bPfTHBfnU8kBPpINAakKQalXHk9BY,51
35
- tapps_agents/agents/improver/agent.py,sha256=vGsNiXDEPRyyiRaiupM2laGjaYvThd6Zd5Ipv4aEBSo,30153
36
- tapps_agents/agents/ops/__init__.py,sha256=tuo9GY4-_oOkFE_JKNJPBttMWE2ihTkqnaaFnNJvjyg,41
37
- tapps_agents/agents/ops/agent.py,sha256=Z_WrkXvj3rVjNXN0C4K8q2OsoF8biFqI4apa98HFguA,23719
38
- tapps_agents/agents/ops/dependency_analyzer.py,sha256=KndVDs7Y9PgRePTL1zr0mmkos7wxhfx_tI8u48jZgj0,24275
39
- tapps_agents/agents/orchestrator/__init__.py,sha256=FZCI_1V1wojH0FneXk-kKPPf1ZS1XOWYdoFCb8H0XPE,145
40
- tapps_agents/agents/orchestrator/agent.py,sha256=G7Byg1D7GyRRnXprLt6PdHOrKUvyAzPlAkpRFZngI_k,21070
41
- tapps_agents/agents/planner/__init__.py,sha256=_LzUY-GHe7Lg7PZtiZ8p-9UhH7xUoOizmZb7SAvx1nc,133
42
- tapps_agents/agents/planner/agent.py,sha256=5ogYzmo7e1onlSknJsPVgTI2Ou5P0nGr9-4yrqmjTBU,42787
43
- tapps_agents/agents/reviewer/__init__.py,sha256=SX3AS69TRG_gn-8TwZ9B45kFs3jTTLhwwG7bwO5zmjI,559
44
- tapps_agents/agents/reviewer/adaptive_scorer.py,sha256=IGqPTGkmxg6ed9ORa9bxYYmhcbkWzTgWCEwjgHyNM7o,4788
45
- tapps_agents/agents/reviewer/agent.py,sha256=VBnPTUVReH2L7G4Lw3bhwMe6kFnR6uwu-CIkwQiAw8Q,159163
46
- tapps_agents/agents/reviewer/aggregator.py,sha256=_vXTvbmJPk6noWcIVvhOSUKu8qxeSy8OnwY9wTsaSxE,7475
47
- tapps_agents/agents/reviewer/batch_review.py,sha256=OHLkGqkU68X0eZzW3kscKKG0EY4k1G_bEwEL2kh2ucE,16717
48
- tapps_agents/agents/reviewer/cache.py,sha256=LSmUfrTZgtwEKVFYd9tfEMF-r8eLtDcIn9VZjqe6ieI,15310
49
- tapps_agents/agents/reviewer/context7_enhancer.py,sha256=9MPtPFeUHA6opGAFQf0-29-8XYJF8plkZe9koFkmsVA,23155
50
- tapps_agents/agents/reviewer/context_detector.py,sha256=xY2s8IWaH5ryosx9MbSoSzyeeA5MeVO_hbaUIH0OIi8,6990
51
- tapps_agents/agents/reviewer/docker_compose_validator.py,sha256=ccmM0Evf5YYF7QdWcpdX2tl31H9gp4yQzu4K6cdfShE,5493
52
- tapps_agents/agents/reviewer/dockerfile_validator.py,sha256=1cn-jPZun8z3VaUbcsX41QXnZdE1vvr68p-KEOONUWw,6470
53
- tapps_agents/agents/reviewer/error_handling.py,sha256=-ilOdSbdRlkT6e5aUbMuNoTfnaSI1Ghr4AiN507rpVQ,4149
54
- tapps_agents/agents/reviewer/feedback_generator.py,sha256=_h2G2xxjOjDlH0yjDhcw2zBzg3rfBRfY4aU00ruy-VY,19686
55
- tapps_agents/agents/reviewer/influxdb_validator.py,sha256=laJpqdZkn26uZxMhvBijpGzQBsAq-e9xf5vRRS6jjwk,11852
56
- tapps_agents/agents/reviewer/issue_tracking.py,sha256=X_C5H94ds4UynECSz-HAiL38AcQ1dN0Zb1gBjDPZJRg,6070
57
- tapps_agents/agents/reviewer/library_detector.py,sha256=PaQdouwwPbA--3vHVfTa42Pa5ccgg2Ld94Gkg1wQzZM,11525
58
- tapps_agents/agents/reviewer/library_patterns.py,sha256=O2gO4ifgTI7RKrYfBXCZt3MvSq8V--hHdYIvGGYkFio,9652
59
- tapps_agents/agents/reviewer/maintainability_scorer.py,sha256=5ull-CPdBTX2bBSxE4TZeJfAYOrT2xtDWuT6kd6xO9E,24508
60
- tapps_agents/agents/reviewer/metric_strategies.py,sha256=YzRjXmcUrXk-Mc524yU5pWcNTx8N4U5Bh5WXtlTb1rU,8949
61
- tapps_agents/agents/reviewer/mqtt_validator.py,sha256=YXkf0nOkMxWR76OH_q1yWZJW555w_Vdx7WxDOdVq7vI,5260
62
- tapps_agents/agents/reviewer/output_enhancer.py,sha256=E5KcQ6zoHqPbuJHMLAeUs0n12Df1jLr7HNo9Z5ZIowQ,3511
63
- tapps_agents/agents/reviewer/pattern_detector.py,sha256=Dhw7Ip7j42GquSypqyxR2ENu4hsBVRFFeWw-fVJaNDg,8344
64
- tapps_agents/agents/reviewer/performance_scorer.py,sha256=y0EqDilXP4rTaXwRHYW8MH485g1e8CfOpby1YKEMEBM,13423
65
- tapps_agents/agents/reviewer/phased_review.py,sha256=eChXFQbEynw7u4AqSJgxYoQnNPyuklF63UY8TcbfH_Y,18331
66
- tapps_agents/agents/reviewer/progressive_review.py,sha256=B6HJ-0lB73-MYT7TE2bEI9rqFod6Brwk2iVZbOdbaww,14103
67
- tapps_agents/agents/reviewer/react_scorer.py,sha256=ha1l9hnWzlGjeRkP6Ps_ntjKcvGMb325BbUNxsazlOA,12519
68
- tapps_agents/agents/reviewer/report_generator.py,sha256=gVx8sLZj7UGzHnXTDqMI5sKGXFvz5zhuJcTsc4PbwWQ,23893
69
- tapps_agents/agents/reviewer/score_constants.py,sha256=A1DSz-IEQpIqCWX3C9Zao0jVhgY08PbVoaPXdjMTAbY,7828
70
- tapps_agents/agents/reviewer/score_validator.py,sha256=Pl3Qr6XZZ0eOmtpTvjUCgWUroGrb2cCMHcIXRHrWCwg,22038
71
- tapps_agents/agents/reviewer/scorer_registry.py,sha256=16JrhqfFjphoiOiBVmKMmWqPB2DpraUt5sKwLToJlVE,14095
72
- tapps_agents/agents/reviewer/scoring.py,sha256=4Ccos31UuLbWlJSb8fr9k0FnTEa4y4R2p1qxe4KUm-U,62650
73
- tapps_agents/agents/reviewer/service_discovery.py,sha256=S5k83CzN8Q-F3bIgfAXRjLy0LegRLn_3et8hs9qrxfY,18983
74
- tapps_agents/agents/reviewer/typescript_scorer.py,sha256=IHk_cSGrCCnM0oZ2Dx5GaATyjDLOZUhUn5_EHmNha6Y,45648
75
- tapps_agents/agents/reviewer/validation.py,sha256=xwXRt8wFd43OyHTFej2n944MK4rdqlnVyqZcMbpo6AI,6154
76
- tapps_agents/agents/reviewer/websocket_validator.py,sha256=9AWyBRU-y55ns4SJs2TkpLxvXt_PM--5AV2OnustTQY,4539
77
- tapps_agents/agents/reviewer/tools/__init__.py,sha256=NiKnW3MI7RJAvUXuBb-9qcyE9B66ik5xhgcezi99ZXM,839
78
- tapps_agents/agents/reviewer/tools/parallel_executor.py,sha256=uDxuJZv5wzE7kUoKLwYKwS_jwen1gFTAeQrfnVEbtVg,19345
79
- tapps_agents/agents/reviewer/tools/ruff_grouping.py,sha256=nvQGKBb6DmIwa6SpwKxDIja8Q92nrVJyS83eyCM-F4g,8993
80
- tapps_agents/agents/reviewer/tools/scoped_mypy.py,sha256=EI6Hd6-PAbiIv5KhS3rRhDpHtQ3bgIOx2e_yLhCddTU,9973
81
- tapps_agents/agents/tester/__init__.py,sha256=w4C2m6HnMbAadVZJZhqUzJih09NWqZvdeQ2F67hsCTQ,114
82
- tapps_agents/agents/tester/accessibility_auditor.py,sha256=y8Snsd-pX4PpxbtCSNcpIlpUbZHS5qgHn4t9wM32h0A,12127
83
- tapps_agents/agents/tester/agent.py,sha256=SE_fm_QTrrbYt38oCef_f0zhCTU62x05kjFBPVBoae8,46613
84
- tapps_agents/agents/tester/batch_generator.py,sha256=5g8EQaJDQALK9LwTsZsbJLg-Rmd_JSV6omktQeEyJ_4,1603
85
- tapps_agents/agents/tester/context_learner.py,sha256=2kxCFNB2L7nEcGd-K1Wpdl08Wb0t9MLBHcDkJSrIYOE,1454
86
- tapps_agents/agents/tester/coverage_analyzer.py,sha256=3QBkXNsaLcSD9EQuXl1rrEb5k8w2_RAnQI9SPFQxOKc,13488
87
- tapps_agents/agents/tester/coverage_test_generator.py,sha256=JSm6Kna4lnLr9nyez_k8l1W-yv6YtavhRwDZkaxOZAQ,9873
88
- tapps_agents/agents/tester/debug_enhancer.py,sha256=RoOFv68eGyUX_7g9hYSc2t1uTBakdYT4hFr2pZ1psdM,8371
89
- tapps_agents/agents/tester/device_emulator.py,sha256=7iZyLxzueNBgaO2FAU_-Ma38yzBIRBh6LUzRw48T1Ok,7708
90
- tapps_agents/agents/tester/integration_generator.py,sha256=DvHmr6ss9qG5BzbQ_P442UDO1wXD3rwD4Ufi2USLr9Y,1598
91
- tapps_agents/agents/tester/network_recorder.py,sha256=GSoiAWBcQlGV7u4ilSL93NZ0WaQTSxgB_Ht0TRjWBp0,9539
92
- tapps_agents/agents/tester/performance_monitor.py,sha256=dMhMcKZ9AC-pTnVNIIw-fh9HSujvDAVjlfOxdm010sY,12266
93
- tapps_agents/agents/tester/test_fixer.py,sha256=9GlcFe_Mb34URsDakqPDzKyZqPB85RRvSXRvY-u3NCc,11134
94
- tapps_agents/agents/tester/test_generator.py,sha256=5AxKPKBhcO9yGGh23gscCERUxp_0X6Bgkn48g-FTj0o,26533
95
- tapps_agents/agents/tester/trace_manager.py,sha256=lAqwU_dPaWqTmXD8esPr-NanTyrOegiam-LM8RpyCrw,7372
96
- tapps_agents/agents/tester/visual_regression.py,sha256=8TXfYIZD8OL3cF6hm20N123-Cuo_HCoHCdGxKsHREug,9548
97
- tapps_agents/analysis/pattern_detector.py,sha256=ph3jb6pQwUYGMpgJpRm3x66ywmfv89l4LJhhQ4UByF8,813
98
- tapps_agents/beads/__init__.py,sha256=XaWHzRJFVy_r1XVxZNTFlVCD-TuOLAsIdYt-H96_Zko,867
99
- tapps_agents/beads/client.py,sha256=ApltiDkxWjtMT14t0KU3c3GdqFm2qYXXQ3shebe74Cg,4255
100
- tapps_agents/beads/hydration.py,sha256=s5l_LCw4zNxa17gPdQlhnZZfIZei6OMCE-mwFSKaaII,7485
101
- tapps_agents/beads/parse.py,sha256=_KGVvYdH8cQhF7fLA52PkC-A8cGksXmx02r6AQlXfHI,1003
102
- tapps_agents/beads/specs.py,sha256=dPg9-WUA5r2iX3Zkx_4vNdREsNkLJPJvhbhyafbdo0E,6635
103
- tapps_agents/cli/__init__.py,sha256=T9HjgIk2JDrXmQBLD_1JYc9RJAETw85qwmUTMdDg9Ig,139
104
- tapps_agents/cli/__main__.py,sha256=-jPOZPcfNrnAEEdP0igvZ9_-yH_SXpbdPMDP6IZ6lqQ,133
105
- tapps_agents/cli/base.py,sha256=1XoAc2v6zh0kZoDuf-2vPEQlUVGzWoFZZT8cxgblklw,17385
106
- tapps_agents/cli/command_classifier.py,sha256=PesY18-Trn53OBktVPWmq6ddxAkz1EJ4mkYyEy9rpf8,2430
107
- tapps_agents/cli/feedback.py,sha256=bhq37Iqocu9DLa-XOoZIH2K8nHCOzKdzeoFnQKC2D0M,36652
108
- tapps_agents/cli/formatters.py,sha256=6O7CmMj3CA9KAVoNvUrX2nbswIqBnfmEexi4pCHUTDI,23207
109
- tapps_agents/cli/main.py,sha256=gpfi3M676iy5sk_6mToH6bo_5qziBd5c-ROs6zs5_jY,23572
110
- tapps_agents/cli/network_detection.py,sha256=ZoSEqO2ro_HGQqGC6utBDKJypQlsihzXv9C_gZte-6A,3811
111
- tapps_agents/cli/output_compactor.py,sha256=x5tkcIIFVnrKmtdo7PE0R-C84LWr4Agd2ulO1xclhRI,8979
112
- tapps_agents/cli/progress_heartbeat.py,sha256=3CvT5El-9KbaImPdTp-IKPrUsRGw-2j1zi1PNWaGwIk,8549
113
- tapps_agents/cli/streaming_progress.py,sha256=bp9rQShwjGdGtyfcL4mzQY-n14qZyhYONYc5D8vQkpA,11480
114
- tapps_agents/cli/commands/__init__.py,sha256=uQOwkQLQqkjWydOGg5ggNLCnnwnIU9wvnAvXt1PSeog,35
115
- tapps_agents/cli/commands/analyst.py,sha256=Vot2o3E1DrcoFD5BjeqvFHVMP9WbWu6JJ3Ld82lW2m0,8668
116
- tapps_agents/cli/commands/architect.py,sha256=CYUC4FrB236EnQe0ZIqeq7VlrIDUfO91NQrcfOZfVnI,4464
117
- tapps_agents/cli/commands/cleanup_agent.py,sha256=3EEPq4dg-HwiLrah0Fq7I0RXniIAUACXbbu10R2j5YA,3358
118
- tapps_agents/cli/commands/common.py,sha256=ZNujv1n1uJKIVVbKNx_Lrvhevf0E6KRK-hfO59BCBh8,3363
119
- tapps_agents/cli/commands/debugger.py,sha256=PXuQkVPgNO55VAif2JjclT6mfqkuylS98KlWBHj6Ds8,3394
120
- tapps_agents/cli/commands/designer.py,sha256=OlfS1LDlLMdesXhWckTilJPALRJySB402ss3uy1_2r4,4969
121
- tapps_agents/cli/commands/documenter.py,sha256=o1JwCwkuH4NqL75pEqxEdsOqUOodkZYyxo64Bw0mRto,5389
122
- tapps_agents/cli/commands/enhancer.py,sha256=EwrGZrAyx9muNSfj0lae-UTRo41NSauLf_kKOgJFvR8,4224
123
- tapps_agents/cli/commands/evaluator.py,sha256=eLtgr0mxDvR05XvIgMmnUmW7oYx5kImaWsQXxPPFVbY,11943
124
- tapps_agents/cli/commands/health.py,sha256=jrMKIMfg7q_5clw9dYGBz9SaRtlU9Kq1h3EOfcxdQkc,27599
125
- tapps_agents/cli/commands/implementer.py,sha256=S90u3XFyA0MdpDZje0at_4RUtDQv0WgfqtDZBvxRlks,12991
126
- tapps_agents/cli/commands/improver.py,sha256=y9UF17WapZiuGJ_JWZu8c4u9FYSku3EZq24dnvTIsmU,3399
127
- tapps_agents/cli/commands/knowledge.py,sha256=LyycqdUL585guE5nVMcXDTxIkcFkSn7maLyvJj-Q6ho,3590
128
- tapps_agents/cli/commands/learning.py,sha256=5SauxblrBKvNUk-X1e9Pm7xJ7VNnDBCPIPf-EcHnK-o,6520
129
- tapps_agents/cli/commands/observability.py,sha256=RWznPG2ZSl3Fs5OQDBl_lQdXhdqu7Kaclle19Q5Nh2I,11080
130
- tapps_agents/cli/commands/ops.py,sha256=4tlDVKI8rflchkU1F95bQnPCp3Kd9ykrjuDOSWRZ0T8,5212
131
- tapps_agents/cli/commands/orchestrator.py,sha256=TvZGltqYBaLMevo3hp13QiIUTTeByFQ-SsRxu8JrMNI,4791
132
- tapps_agents/cli/commands/planner.py,sha256=dB43ux1hF5Z_bJImP06CpKocCRWcSGd2LG90-b0irzY,10074
133
- tapps_agents/cli/commands/reviewer.py,sha256=TjuTgaQaCfaFfZfW-7Hm4X6JjUKz9vVzDodO1uA6Om4,78081
134
- tapps_agents/cli/commands/simple_mode.py,sha256=JjuaaPKo0DZXOqMNyvFNNqz98sNE78EZFeMIcu77lOU,31820
135
- tapps_agents/cli/commands/status.py,sha256=XrkCnxdiaieZrXExAW0_YrCDlkVGa9iRIiJ74DwP_5o,10661
136
- tapps_agents/cli/commands/task.py,sha256=YQTEopFPw7QUeSHG5xe98aJUG8YNy-tEOE794Kl0Vq4,7956
137
- tapps_agents/cli/commands/tester.py,sha256=ZGwSw8O6wMOx1UO5kCgmawZUccC0MBL3kvRH-7dEic4,8481
138
- tapps_agents/cli/commands/top_level.py,sha256=dTh_rdoSiXrLgnDN04YIvlNITPnEnxoek7E8NusARho,149034
139
- tapps_agents/cli/help/__init__.py,sha256=2hO-whwGhNM4efFc7fc7ihTmE5PmxFl7jaQ2H7ywUbA,147
140
- tapps_agents/cli/help/static_help.py,sha256=0hFiOgLqBT-vM0yHoeY_Ea5JOg_anc_5_rPR1GX1nqs,19560
141
- tapps_agents/cli/parsers/__init__.py,sha256=mtP0vrFd1P7i4V3N1B1wXKxM7ajCVLqNBul4998I5SI,35
142
- tapps_agents/cli/parsers/analyst.py,sha256=6Cp2BMFAqgR9p_I8gOJ-IorgFETiE9uqJ3xvuyhZzhM,10319
143
- tapps_agents/cli/parsers/architect.py,sha256=Catv0P3esfD7oN3E9bisfZ4w9ddqSwzd-faunX5r-Gs,9071
144
- tapps_agents/cli/parsers/cleanup_agent.py,sha256=AVTzWEw23E_t2xm-74k4EgDDmr8ycLQeP703NdD90tw,7617
145
- tapps_agents/cli/parsers/debugger.py,sha256=6GXsHh2iohUQTNvrMkQZRodI4LO5NZihJm7ICrRaG0E,6320
146
- tapps_agents/cli/parsers/designer.py,sha256=UptPvtGVRRcr1-5hJJAO7yE1ren0rXJ0Mfa2pKTAyUY,9780
147
- tapps_agents/cli/parsers/documenter.py,sha256=AYLdo1zYyA20xLlRU397i00oGa7p3nhjlQ2-bcNA6UI,6329
148
- tapps_agents/cli/parsers/enhancer.py,sha256=rl-7i4h1JGnvWnlc2TG2Hz_UojUIWiUODQidU9CsSGE,5659
149
- tapps_agents/cli/parsers/evaluator.py,sha256=sq0vFu7DItydigr2amDqOX5UtOA8ib6UYKAqzhUfcpQ,7501
150
- tapps_agents/cli/parsers/implementer.py,sha256=vNPYFsAXWpKe3xtIXvXB2a-oAOHj34U283PXMTu1Dcs,8653
151
- tapps_agents/cli/parsers/improver.py,sha256=VlCTIkjIt4pA5-4BK0uInr_m8fH6WeCogH0N0Qj_mVk,6719
152
- tapps_agents/cli/parsers/ops.py,sha256=dEurIhfZMKXfchrph1Yf9CeZQ2b8tmSolbfLUoEWe9Q,7423
153
- tapps_agents/cli/parsers/orchestrator.py,sha256=CNOISO4v6dAoM3xbKrx2nhyssltCrxkflQPE3fbBb-Q,4579
154
- tapps_agents/cli/parsers/planner.py,sha256=1ksw1W_CVwqXWi-z4w-XuWZPgJWjVlBQ1JlANuhlPeo,7027
155
- tapps_agents/cli/parsers/reviewer.py,sha256=fx7kHgGCrk7vYc4Jqxjru1JNy8buUlryUcD5qaS5ojU,19748
156
- tapps_agents/cli/parsers/tester.py,sha256=FomqAGk3RCAWwtLrlXium2UH38Oxffzt6dj-vYP_I3c,6555
157
- tapps_agents/cli/parsers/top_level.py,sha256=lkcmUi9yoWMMMXQ5G_ttvgGLJQPE6vkSFE-f7dwvGVo,84014
158
- tapps_agents/cli/utils/__init__.py,sha256=4eLPpMJhesYkbo00Eo_e3h4Lww_ZnepSKfHe25MptfI,231
159
- tapps_agents/cli/utils/agent_lifecycle.py,sha256=8fHS3kT-mA5TPht5NGuWX5N4uM9104biX_ZDJNrydxc,1351
160
- tapps_agents/cli/utils/error_formatter.py,sha256=8JAQMQzDZaiU0Dk_kfLTbQfeoNB1_RBz4-P-EMGi92E,2638
161
- tapps_agents/cli/utils/error_recovery.py,sha256=yPIClhWpgOWR5gfr_V2aWrYl0H-mpH02B2EdUcUJCKo,7167
162
- tapps_agents/cli/utils/output_handler.py,sha256=7eQGxjTCGtjLsELCctysmksS--sKS3-h00I7pUjpdDQ,1832
163
- tapps_agents/cli/utils/prompt_enhancer.py,sha256=lry4K_6DAK6umEA-PL9i-o5_4Qi72qMo4MlxeJyUwmw,10677
164
- tapps_agents/cli/utils/status_reporter.py,sha256=87OR24EDs2GFJ-cSQ2v7MlslHHPNZp1NfcC0s5RHIg4,5263
165
- tapps_agents/cli/validators/__init__.py,sha256=ZvrCSwSVgZabyOZc86k-cLkCtsmCr3nOwb7RL2ClWks,256
166
- tapps_agents/cli/validators/command_validator.py,sha256=PfzHnCooShSLv7455MmqsO2d6Qk9VT7kFfkgk3tbn14,3283
167
- tapps_agents/context7/__init__.py,sha256=w9I_-jfKLGfB0ANk0wnR7R0HlUg-zb5ZRxEd4_UO8Wo,3200
168
- tapps_agents/context7/agent_integration.py,sha256=WBAbpZqifO_IbYlhzOsmKEh-E2mYz9ZW1CFHdpQX8jg,36220
169
- tapps_agents/context7/analytics.py,sha256=tbkGk_6lOepNsbI44EDQx8ir83FIfQ-gYtx0fhb-sB0,13589
170
- tapps_agents/context7/analytics_dashboard.py,sha256=DtJjJLdgt5rGJD-iPWebTo2T34SuBnopCqTTfl5asZ8,10411
171
- tapps_agents/context7/async_cache.py,sha256=gByZdC4_-RmvKx7kQcC-cgJ4AjZAOP1FAq7YBJQlYIk,23981
172
- tapps_agents/context7/backup_client.py,sha256=Y6C6G8qLS2QkK6adS1h5lZBt8ufpRm_HomsqAHWGsPc,41478
173
- tapps_agents/context7/cache_locking.py,sha256=1uHhvFeZxCmDrN7C13rlw7HRex_untCUevKFFCTskvY,6940
174
- tapps_agents/context7/cache_metadata.py,sha256=5wBgnnHKLjZNYHxPp3Jt3Z5-F_3-Qr66wpxwnCatux0,6430
175
- tapps_agents/context7/cache_prewarm.py,sha256=fShlkcm90fYu8OOtADTLRnhaVP__hhBNAtfb7356J2Y,18775
176
- tapps_agents/context7/cache_structure.py,sha256=WXo_P0wBNfoPXE2kL0Zif4HIg2RXAeiCHtGOFGlqLWc,5588
177
- tapps_agents/context7/cache_warming.py,sha256=asozUE71mkWBZIC6zqasDHBzrNRd6x-pqnnMfDour8c,21263
178
- tapps_agents/context7/circuit_breaker.py,sha256=mcnauauLkGCgbNsxSdl4IpC4KiHxwEiAKGHgMKv9vz4,13572
179
- tapps_agents/context7/cleanup.py,sha256=muoSlGP-pZhhCUDqUHE82l9I3EYletTEorqh2Qogx1k,17797
180
- tapps_agents/context7/commands.py,sha256=i9mWSnOJXYbuJDNuoADgOD2GJwadkLZvxtktwrQoEtc,31669
181
- tapps_agents/context7/credential_validation.py,sha256=Zb-WjKKmgE_l66s627FNK469vtR-eaK4LSmWPDKCIcs,10215
182
- tapps_agents/context7/cross_reference_resolver.py,sha256=lBDCjJ5Cbl_LpMw7Hc0RT8t24MG7b6f358V0JP4ITEw,5688
183
- tapps_agents/context7/cross_references.py,sha256=ufyWb2dFNugLDyhIFwi-K4CnM5lxmcc4fayJFZCS2QI,14397
184
- tapps_agents/context7/doc_manager.py,sha256=ivIFEEP9o1PiWDzqX_z9LGOSuVBon7p8J7yFqTKBHbQ,7435
185
- tapps_agents/context7/fuzzy_matcher.py,sha256=-njco6R5wBhdqylF7HgcwUAbdOqcuF9y2knqTog8hlo,12378
186
- tapps_agents/context7/kb_cache.py,sha256=3CjOBoWIRuxZMRzzyj8xTef1iK4e4HKwa8nTol9mkhk,15648
187
- tapps_agents/context7/language_detector.py,sha256=pwKOvw1SWlSt0SOI-Gth4HXXAg7M2Pq4jV6ipmqBAlg,7207
188
- tapps_agents/context7/library_detector.py,sha256=uGn_GReUCWNftYtGNSnZyQ5a5lZ0MrJBnw5zdzIYBiQ,26859
189
- tapps_agents/context7/lookup.py,sha256=KE_qpWB6_LTZEyj--Djau7VtKk6EvyG_M9U0eM6WfXg,34260
190
- tapps_agents/context7/metadata.py,sha256=y4WaogbD-Xlh1xo2MY_xdT0bZ0G4M60meSueBgT6Ucs,8391
191
- tapps_agents/context7/refresh_queue.py,sha256=5bq3LyRyQLfOUqkDxjbpcGjI4SntHfpc5T_FGJNO5W4,9815
192
- tapps_agents/context7/security.py,sha256=47QuhFLOqIXxWi4cbxnpghHHuJjmmwQKu4CJDaWLbtk,11834
193
- tapps_agents/context7/staleness_policies.py,sha256=j2y7Vx-d0omikONM6JRh5NuzUsqDE08iSSWVSW9jd0w,9663
194
- tapps_agents/context7/tiles_integration.py,sha256=zojua65ILvn8YfiS0fqMD0bIW2haX9PbYKng9eY-0-U,1195
195
- tapps_agents/continuous_bug_fix/__init__.py,sha256=8fN65UIGo4Kpzs4WM3e6FSW8CPTPlyNdTCsIAP2lnLY,507
196
- tapps_agents/continuous_bug_fix/bug_finder.py,sha256=KC4Mf9KryUnT-Uj8YtEAsvctSzJOolnLgSyjlTMLhtI,10151
197
- tapps_agents/continuous_bug_fix/bug_fix_coordinator.py,sha256=QMrEKWGoysV1doKhtH9mRu4XR5gOpNX1zcjO7gZ_kso,6480
198
- tapps_agents/continuous_bug_fix/commit_manager.py,sha256=Jm0pienHyCf95bGjtNCJImh59TLf9MqECZ7imjjfMJs,5609
199
- tapps_agents/continuous_bug_fix/continuous_bug_fixer.py,sha256=KsH_5VJidRyVbxtPtcdyMX6I7gtbmkMc2nEPc962lGc,11797
200
- tapps_agents/continuous_bug_fix/proactive_bug_finder.py,sha256=pynzjZuL1_hCFo-QdRoNa7b_DiBv9xvbV3Y58OnIfF8,9852
201
- tapps_agents/core/__init__.py,sha256=IwhvPyGkawFsZ89BN0XdXfnK9ZgBuAU94bv_50VxaRU,8012
202
- tapps_agents/core/adaptive_cache_config.py,sha256=yTCj3IgS3HAUnA696MyYLi_fK13mkijJxCFjiss2hcY,17812
203
- tapps_agents/core/adaptive_scoring.py,sha256=gJnjyqwtZ7634paaOJmCVMBLMHrPQw5088MalqOFP5M,9882
204
- tapps_agents/core/agent_base.py,sha256=SwpXjdteIsntFvybkleMhShv6dJrQ5tPb1CEXCFx2w8,24446
205
- tapps_agents/core/agent_cache.py,sha256=zoW-8nOmsYksu3JHXlT9b7aYRM2i4syKvzMRUyRL7lQ,15827
206
- tapps_agents/core/agent_learning.py,sha256=_6uYcZXtoh7HwQxsV35TmyXVqykwCy1KQI1y5kLnL8E,70210
207
- tapps_agents/core/analytics_dashboard.py,sha256=OVaa6ky0bPdMxe61rE9YT8VjWN5882JgWbw40ZHBMQI,20031
208
- tapps_agents/core/analytics_enhancements.py,sha256=sTjGs9JAk28pVzKMYPjonrqb0cxpQOF1MdBLuH48z5I,22766
209
- tapps_agents/core/anonymization.py,sha256=ke_VjsQ767kK7vOxYGbb-6RCbA55D84Spk0sBYzW0kM,8709
210
- tapps_agents/core/ast_parser.py,sha256=DoPEhJvQ-DjZs5BJtvoPdB6-tOgIM6YJRIUfPdi84Zo,7138
211
- tapps_agents/core/async_file_ops.py,sha256=rLrebxurZhsovZKVGAhHWQBRPk8w7BHaEnYaVxOsAHs,12641
212
- tapps_agents/core/best_practice_consultant.py,sha256=0Gy0Sr3rB2tlXztW8b1ZTzR6Z7M-dauBJflT5_gVVmA,10158
213
- tapps_agents/core/brownfield_analyzer.py,sha256=ym04ynbTX6WixrZ_kfLRPUyQQXwPKkSWxAzMWnArSjY,10536
214
- tapps_agents/core/brownfield_review.py,sha256=HF51qRRanwtAaRGWAXIXroS0dlTynzlh2aspGUuf1fk,22266
215
- tapps_agents/core/browser_controller.py,sha256=idA9kqmYfebBNHlqMOCndg1n6N4xllBSapv-RPPWdCI,16539
216
- tapps_agents/core/cache_router.py,sha256=jnUt7W-ElxhhfSUhHS4oSrh_AljOX_S_vmMacWn77B0,11936
217
- tapps_agents/core/capability_registry.py,sha256=CvQ9FBYERVsuUFm3yionW0vurGZktlIWL9Z19huX37I,14157
218
- tapps_agents/core/change_impact_analyzer.py,sha256=ii4q-CSJikSYFQRBGk67tbttqaTyRjVatSKD-fAJKNg,7796
219
- tapps_agents/core/checkpoint_manager.py,sha256=_VmMniI8eBVN7a8FUkZ5qobla6d2aozLvzmM_wjXKJs,12302
220
- tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm76yQ,19356
221
- tapps_agents/core/code_generator.py,sha256=Ma-5NWZnr4PcfFvZEFFUtn6hDzv7zAOVaZrTwmRiOrU,9881
222
- tapps_agents/core/code_validator.py,sha256=SoP_zUBTzWEhfSuFNjawk_R6ytcgjJ8VClfCSILLKFE,8953
223
- tapps_agents/core/command_registry.py,sha256=Re07pBBjwtilp9kaXn5Qxdjp01liT5pj1S7KUsXwQIg,10192
224
- tapps_agents/core/config.py,sha256=2kCKCXb06MIr1avlkAEQPwD07dJWFd0z45WGjjQ0HOU,56291
225
- tapps_agents/core/context_manager.py,sha256=UCftn4UnGt6xf_LErC8Ty5fWP2u6mcyv5tqvoLvfK5s,8184
226
- tapps_agents/core/cursor_feedback_monitor.py,sha256=p0Ow-wktUyK745MKQwt9E7rWoelV9WacQ5HWk3iRQGM,5073
227
- tapps_agents/core/cursor_verification.py,sha256=kLMshs5E0-W-13rwT3TnNQ-YIjmW6v7AHI6kkiaBc7M,9905
228
- tapps_agents/core/customization_loader.py,sha256=u3G4pCmOtrRPrFYMCoDBvbgP5VC-juTQhVih_IZ_o_A,8723
229
- tapps_agents/core/customization_schema.py,sha256=PzpNzxpSLL5IHbbQT2J52FbbeqF8rLjAKGW8YoC0aHk,10073
230
- tapps_agents/core/customization_template.py,sha256=J2T0gn2bM55u3ma6ijLwvAGGWx_lYHUj9UuXWWKq2D8,7241
231
- tapps_agents/core/debug_logger.py,sha256=10rvDXyBkC7P8aE7IOEmHH13BTnpS-4y9jQ1O2UhoNk,4087
232
- tapps_agents/core/design_validator.py,sha256=-Ix_ZxCZSkm9vdhJxTCpHuovDh2KwgMml9UmN5calLI,12760
233
- tapps_agents/core/diagram_generator.py,sha256=xLfMo4x6fw_moK63XOSfNQ7VR8VVDANcAqeXBR3URNE,8080
234
- tapps_agents/core/docker_utils.py,sha256=x-nmZLAWGE5za2Z8NdQM90osS2Pz8lAz5JlQCB6Xxl8,7424
235
- tapps_agents/core/doctor.py,sha256=B1-tOycr0g6C3oqCsaselgPRd-1-S1lYyK_SNjXdKg0,46619
236
- tapps_agents/core/document_generator.py,sha256=ifhfCihpIAwz_tEtT-Yqt_dQutBEZHKguKi24BGPxBc,15472
237
- tapps_agents/core/domain_detector.py,sha256=O8i0-m1lNch8spH2Xap0CQBPCAzdB8hHR6hrlCGlVuw,1108
238
- tapps_agents/core/error_envelope.py,sha256=Qf6Jdyz4Sg2McnDU2ZZLDKGVeAB-G3Qp1eZmKYiqo2w,16678
239
- tapps_agents/core/error_handler.py,sha256=UlG2NxymjnLTdKl7O5NN_iwuLMJj7NnDO-sla2DvBYg,8662
240
- tapps_agents/core/estimation_tracker.py,sha256=Y02uTf7L-L5BfKTP4-XcSO1asd-2G7I_06RNJtbZ1Kg,6964
241
- tapps_agents/core/eval_prompt_engine.py,sha256=6w4HJCWQZ2RQ0L68DO8ApSoxLkl_Ph0i8UIRnzVWnNw,3892
242
- tapps_agents/core/evaluation_base.py,sha256=qUWO_Bc-YbC_M8OmvRQa16UramZdmamizMbMQLCKFmI,3107
243
- tapps_agents/core/evaluation_models.py,sha256=r2OMtyimZqo-tSzep9Y5eUprD6-upkiw37U04BmlHts,10885
244
- tapps_agents/core/evaluation_orchestrator.py,sha256=y0RjHvFbrxR_Z6Ddyio95yuCR5z7IFzy_9oVQ0yXx74,7858
245
- tapps_agents/core/exceptions.py,sha256=AkR363DiR4-2q4rbbydijnbSKoeWkDyoMWZYn1DEC5A,2005
246
- tapps_agents/core/expert_config_generator.py,sha256=poNhvgyzkE7-hUAbdOg2Y1Wv6kckDqR--JwBWN9fbjc,10073
247
- tapps_agents/core/export_schema.py,sha256=WeMxoQVqDxYp2HjbPH3kw9mO6OUM7qev4VTKkKB90n4,6391
248
- tapps_agents/core/external_feedback_models.py,sha256=F7Fdy6S5F7R4h093EI34X1YFYo8CVMO0qwPpYE6Zaag,4232
249
- tapps_agents/core/external_feedback_storage.py,sha256=RaTzOKfuYHZdEbZi7CqwCNuam49XT6dIY09yGKomm4Q,7193
250
- tapps_agents/core/fallback_strategy.py,sha256=m6DgEH1wmMGYe31iwDTdVUs5EOBURNd3j5ciZC2H-HE,10614
251
- tapps_agents/core/feedback_analyzer.py,sha256=BZbqS53fVbaPdeRjw1Yw286mJrsY88yDYqppjUJaJqc,5676
252
- tapps_agents/core/feedback_collector.py,sha256=ynpkMWeOFyhuFC6goOdT29QRwd4kiVWgfd5ny9Mmczc,6218
253
- tapps_agents/core/git_operations.py,sha256=rzqNTAj_XhnTtegxjXXZNpGeocL5LNM5DUWFNUp1les,14272
254
- tapps_agents/core/hardware_profiler.py,sha256=OMram3JZkvdqRNSHvIAweHNuX_1Oy86jDCUldsVm8yw,4312
255
- tapps_agents/core/init_project.py,sha256=1VlaJlFcrxLPWm6DKYnJMXfYOUdPaSxQM6O5Ja-8Rmc,118099
256
- tapps_agents/core/instructions.py,sha256=eMleDK9k5NFTQT3Aj_DgsiWt5Gj4GQjSq83bJUgiVhU,13044
257
- tapps_agents/core/io_guardrails.py,sha256=X178WGZP1Ut8UU1Ox08pXBhfTHtN_etum5WgRjvLUrk,2206
258
- tapps_agents/core/issue_manifest.py,sha256=NqwReBKfNp1ChiYvFkbVvD7_w47-RrssPIZo6NenFrc,10020
259
- tapps_agents/core/issue_schema.py,sha256=4C-HFdi36SSuHJOV1lJOlNDJGaNBcWJjZF20TOJe7jY,4097
260
- tapps_agents/core/iteration_reducer.py,sha256=XvTGwJGNPtnCd4Th--TGEh2m7dhvJ5ulVhkvQNBHzUQ,6945
261
- tapps_agents/core/json_utils.py,sha256=6LKXvmwjuDvSEiV0aJbNNykYjf3PCPl5pEwl7EGMIoI,4697
262
- tapps_agents/core/knowledge_graph.py,sha256=SvF55-XbrnHSenzmwO5edeMLkpKrGatJA68CT7u3-ZA,13613
263
- tapps_agents/core/language_detector.py,sha256=-Y3byEfrq_t7cwF3q42xBBLvEz8fW5AcyVxaJO2wq_g,10876
264
- tapps_agents/core/learning_confidence.py,sha256=WzmsMtOW1w1cKOrqhAbxZIdLJJLg7WxdlquU1mEZxK4,9041
265
- tapps_agents/core/learning_dashboard.py,sha256=ZXmZGygPW3c5aK-mfhKkrspDKplDkD910ehKAiuKRe0,8765
266
- tapps_agents/core/learning_decision.py,sha256=r3Huco-EUYV00_s4nPnEE_MbVHpah26eXOSo-Catl8M,14089
267
- tapps_agents/core/learning_explainability.py,sha256=6ZdJ7BEynFAXkBpj4LlOuGbkyF1y56K4ivWcbxvuPk0,18826
268
- tapps_agents/core/learning_export.py,sha256=8z-lb5YFbHfeK3L5RdvVMSwTzqJ0XZ71oJh0RTE-fm4,10026
269
- tapps_agents/core/learning_integration.py,sha256=A9uO8xJK0ZgQMmPFfwHJ-4Ak4AhPurLzKSqU4CZVU60,7303
270
- tapps_agents/core/llm_behavior.py,sha256=TMyusYut0OvQqkliuSg8ZNDDnLXa_TyUsmq3UWUtUxc,8142
271
- tapps_agents/core/llm_communicator.py,sha256=WuIuM5bDButBV208-DZlxzSHC5fkO8b1ITiWFbftPus,6066
272
- tapps_agents/core/long_duration_support.py,sha256=N_n6bvflpQDNKYHGi7K8dn3QUh6vaGUpn_Xgn5qRzZw,26666
273
- tapps_agents/core/mcp_setup.py,sha256=X-eL0AeS3_7q9M41OVKeUTFYtgLIyCR0olajT9LFrVY,4220
274
- tapps_agents/core/memory_integration.py,sha256=3rr8cXgfHU8yz6esBJI2-w-hFTKKp-hBCLp8QMeRYXw,12134
275
- tapps_agents/core/meta_learning.py,sha256=x8StMwpXY2E3yiy8kIxYyk2S6EtXLsKlG4_Pr1ukzfc,21865
276
- tapps_agents/core/module_path_sanitizer.py,sha256=s3dv1XrUFQ7kWmj1pKRqNuCOFfXMc2x1vHoBdflXXA4,7205
277
- tapps_agents/core/multi_agent_orchestrator.py,sha256=uPk9XxIDRC4ZZXI8Zy09oLDwVg6KOzWBzicBwzpE4To,13601
278
- tapps_agents/core/network_errors.py,sha256=sfSsciuDFQjz6dGNs_7hMT8cski02clHT07dBW6tqM8,4199
279
- tapps_agents/core/nfr_validator.py,sha256=3EgP5oiVxW1evqQBuwieI0sMryKt9x-uzuHKDXFSV4o,13354
280
- tapps_agents/core/offline_mode.py,sha256=b7_JiVC8faJT04n3WXc26lBMKJGV5tJYb24NSiu51oM,5433
281
- tapps_agents/core/outcome_tracker.py,sha256=9FvGCgmkHt00HKDTGgFnh4UdEUx_JeJYtlVTMwvXKwA,9037
282
- tapps_agents/core/output_contracts.py,sha256=ZNnWpD_jnQPV3Egsqgk-QsHBd6KSlqGwxGvZuLsNPwk,10096
283
- tapps_agents/core/output_formatter.py,sha256=_yG3h0vPc9jNLSe2kyvZrOi1dHbsioT_SczZccHKK6g,9746
284
- tapps_agents/core/path_normalizer.py,sha256=nEXLXwLH1vIC9pUfIWEQ0W-Y4-ZU1mlP4erGP1GVGZs,6073
285
- tapps_agents/core/path_validator.py,sha256=E_iKkIW_n3pWRDuOdA4FfhzouWac0kD3xgThaa2Dvko,10729
286
- tapps_agents/core/pattern_library.py,sha256=InQwOtL5SiooMq1dgPn5trXffVAwRXBr-ZD663sISAk,10932
287
- tapps_agents/core/performance_benchmark.py,sha256=LBEJC12FjyHuALBUmJuGRSFZBeUwKXS5AQQes2tlVBs,9567
288
- tapps_agents/core/performance_monitor.py,sha256=6070Mxl6aobHD11yfZKYE1dl30-dU7S_tPV9-Lc7Je4,6184
289
- tapps_agents/core/playwright_mcp_controller.py,sha256=fxOUzV5MRXOP8B1cQkW_NGkuiPTXBgOEeVEA3Tz83Bo,27879
290
- tapps_agents/core/policy_loader.py,sha256=OG1-1iW352KM1nbnuP6q9khE5S2Fgrg5R4B6FDtDWBg,4341
291
- tapps_agents/core/predictive_gates.py,sha256=7XNx4-l8EwxmqhxxyFyDjPCgl6e7WWoOmNxky3acbT8,5154
292
- tapps_agents/core/progress.py,sha256=tIanV3olcIyqxZxJS8kKhhEjg7qzCkxPibFsR-5DZoE,4958
293
- tapps_agents/core/project_profile.py,sha256=shRZpKSexaI77bzKvqxB3u3Zn0Z0VfYpkfvE4ms70ig,12709
294
- tapps_agents/core/project_type_detector.py,sha256=eoK_ZlkREhP2cQrZbchW1bEIQwuX2mATEr5pg5tcphk,15296
295
- tapps_agents/core/prompt_base.py,sha256=_CI0LvuNm863MgssydKyzZPe8dF_2hE2UKDjf8zIcng,7028
296
- tapps_agents/core/prompt_quality.py,sha256=DCbrh4ro2msRBd9AksDLy5yCLyW5q4RFanijSpx9BYU,8357
297
- tapps_agents/core/requirements_evaluator.py,sha256=EpDYR2fqrIVwKg2Q5_vZfsxrxeS_KCTiBINGpIzCCHU,15395
298
- tapps_agents/core/resource_aware_executor.py,sha256=lCv80vRzQgeS0Xl4tOXVPEanYk7ujAUZqrhvvApOWgg,16049
299
- tapps_agents/core/resource_monitor.py,sha256=U-CQlcqMqxZyBRRgnyTZveHBGBYqCxjDaXGYtoIjEuk,11227
300
- tapps_agents/core/resume_handler.py,sha256=qW2TeoD-ke7PWT4snQcSsAxGpUrFMGa3FMLrC17ijR4,9853
301
- tapps_agents/core/retry_handler.py,sha256=7NZecFlQGmSB6POY1q-Kfm0Ffewkv76VcuyP2BaiThg,7335
302
- tapps_agents/core/review_checklists.py,sha256=9iDsStz5-vwgsTsZH6tbwDV5m8GJSeE_d2mBl_7NdGM,25115
303
- tapps_agents/core/role_loader.py,sha256=zxVZafzANrp2q7zL0UZ4tcoc9EbaVn-Zjv9BzlgC8yA,5907
304
- tapps_agents/core/role_template_loader.py,sha256=X-LgZnq7scW3NyYnTAUIjSravBmpneMF4266ejnWzZA,6786
305
- tapps_agents/core/runtime_mode.py,sha256=8bTFq2tM8l_g5y56B89Z4ZH7JvDbAZjUUPRPlqSylrM,1633
306
- tapps_agents/core/security_scanner.py,sha256=EbQrMfzM9qV8zTJZdTOWPHaFI9BPGw8PVGakQ6sbEZ8,11863
307
- tapps_agents/core/session_manager.py,sha256=hWJd4t-iguHdfyyxUdeDUtMyOTmblkJo6z-BPm2TMC8,18830
308
- tapps_agents/core/skill_agent_registry.py,sha256=4i8OGVHqOOfJZzk3IohTnqWY4t13l5SwzwSPa3AMKAU,7367
309
- tapps_agents/core/skill_integration.py,sha256=uyj6AWmDaR6TY7mMhfmHbb5rDr0sR8fCk97UeH5FyhM,7092
310
- tapps_agents/core/skill_loader.py,sha256=qgWylM_NcH8ywveVEAVv7VygIrV-S3L3I0Pol1B23oo,16293
311
- tapps_agents/core/skill_template.py,sha256=GH0LA6Ha3kY9fjE6h6g20IsB21mLRhnzR_hwhoqiTuo,11825
312
- tapps_agents/core/skill_validator.py,sha256=-51LX3_3ytO7RvEqGgqv3Qv61gv7d05nUi8I6EZL-lU,17195
313
- tapps_agents/core/stack_analyzer.py,sha256=toALSgjGEtpc_PTBK774D9XbCOqCeIrN1nz3Qbd2RtI,1013
314
- tapps_agents/core/startup.py,sha256=wXmYro9UtzF6Kp07Igb5fVbvkMim3TYwTr5tZ_qxxoE,5820
315
- tapps_agents/core/storage_manager.py,sha256=pk4H3rntMRkyR22bblQJit6q4nhBmYiCK9zg90HT1Ns,13808
316
- tapps_agents/core/storage_models.py,sha256=118skdyJzME5VG72IboIDFUNni5170rWVmR_L-brD1s,5226
317
- tapps_agents/core/story_evaluator.py,sha256=KWieKkc3DDh4XedfIZVQHfKdKS2jZ0PQFHFm72o3OD8,14717
318
- tapps_agents/core/subprocess_utils.py,sha256=S8Xz3RSrz8qG_0fzWFk_v1axscT0RxfzfBRKI2Q7W2s,5404
319
- tapps_agents/core/task_duration.py,sha256=bXeDyk24TuI_UVJI_QVsxrI5aZIc545j9iUSLJkk9o4,9904
320
- tapps_agents/core/task_memory.py,sha256=BVtBg_F5U6ACA8sCcPwPxjpqKCpzg6LTdIQQDchSP0k,18154
321
- tapps_agents/core/task_state.py,sha256=-Psg8aw_PQ8x_FT9T1u_-Ze8n3pEn4pcPPXxYThuP1c,6783
322
- tapps_agents/core/tech_stack_priorities.py,sha256=1-z-iP4wE2BGKaKsIjwJUAzLjHujriWyUC6SO2PqCdM,7062
323
- tapps_agents/core/temp_directory.py,sha256=NTgeTXvh0vIlpzVJDiODaAbXX8790RSD-vkeCr5-qp8,5705
324
- tapps_agents/core/template_merger.py,sha256=eRkFC8S2h4sxVxCVYDMgOjYH2VG0LQwQcUdCek3Y7wA,20712
325
- tapps_agents/core/template_selector.py,sha256=T_WHOsCAq-U8DJCTwPk4xDK-_xRUJXsPJgsTwrWhnKw,10017
326
- tapps_agents/core/test_generator.py,sha256=L2nJqBw0Opj7v48nWz_GfqGfg0xSW7aPE3vjvBttEb4,9832
327
- tapps_agents/core/tiered_context.py,sha256=Q0Ynic3s2bAFPek7hVDbGpwFUREFe8G90S7sqHa77cA,8686
328
- tapps_agents/core/token_monitor.py,sha256=PA9JWNzm600PLztRH9ORKhRuhIwoo6MPCdBchma76dc,11081
329
- tapps_agents/core/traceability.py,sha256=T5ODruVnYwA2a0DUwn8iyZYNvEW4QaXThxHlilglgjo,10395
330
- tapps_agents/core/trajectory_tracker.py,sha256=2P5Oa8zhdOGZ1M2CPASTQcaZJDMCq5LICDyYDNA52xs,1479
331
- tapps_agents/core/unicode_safe.py,sha256=Dm4X2hJlcA8zJmNS1jIRfpETL3JG6ljVYbeqQMsiemk,4267
332
- tapps_agents/core/unified_cache.py,sha256=sQJXig3nM0cQiyBrOS0xEN-tix846HwZ84zXX4kjwi8,13677
333
- tapps_agents/core/unified_cache_config.py,sha256=gzzCoG0_aEuTX57sTd0-61NF49LGLFVTC4mzlk1xmDA,5964
334
- tapps_agents/core/unified_state.py,sha256=6QK97_ceje-ebYZUywbNWycUa6prwG5dh9WBDTDciGs,10482
335
- tapps_agents/core/validate_cursor_setup.py,sha256=t9kS8SW-nnmvgZeDzRvgMJ7PMuYqDAl8OWYM5cXt8vo,8469
336
- tapps_agents/core/validation_registry.py,sha256=OhPPfIeM38aC_nqpEkLWdFfhrzDsXyMpaKIjHdoV3Dg,4465
337
- tapps_agents/core/verification_agent.py,sha256=0MU50L7a5h6hUycxX4G6NY1zt0BSZIU1ecDT-AMUWSI,3437
338
- tapps_agents/core/visual_feedback.py,sha256=ziBd0fyXfauzqc2F0N-KKLZGCB-HakKRCbzJ553UPWI,23221
339
- tapps_agents/core/workflow_validator.py,sha256=XOM6Y387_372YRgkTXbkAUGfaf67VnIBY9v09I_9jjk,7516
340
- tapps_agents/core/worktree.py,sha256=RMlWBNnPu2AgXEfSkhqI4NtZNAO4qjN_r0MmXqN2tnc,13687
341
- tapps_agents/core/context_gathering/__init__.py,sha256=rm2Rx3u9Yq6tq-IxMlz0sK3ZTU-Ncb5YTCQaMcgykeA,63
342
- tapps_agents/core/context_gathering/repository_explorer.py,sha256=qg8132_LlI5xWTVx0kDnW-Oag7Juxa_nJI5lxXmpkLE,772
343
- tapps_agents/core/context_intelligence/__init__.py,sha256=Iz9S-kaNIBkDXh-amp0ycfIDtjZYYBti8U8E21oYP9s,62
344
- tapps_agents/core/context_intelligence/relevance_scorer.py,sha256=VDOfo4jwi104gu7ifnDzXQt6xNWiZaAYR2G-Def0kho,692
345
- tapps_agents/core/context_intelligence/token_budget_manager.py,sha256=oSx-d73DJVd4_VT28uddV1ya4Auy05SZop6mgc72PoQ,682
346
- tapps_agents/core/evaluators/__init__.py,sha256=ydacKQG4c6l4m3OswT-xIHHMZpUO5AiYYe0LCG6MR9A,222
347
- tapps_agents/core/evaluators/architectural_evaluator.py,sha256=4LhK8yiu83FTfvo7u4QrljXVPuHu9Ujmu5aFFI9Wmmw,8378
348
- tapps_agents/core/evaluators/behavioral_evaluator.py,sha256=TbW4A5XNGyXTqbAGQev1xWefNTo8Yj8XCIrvfGLjS-E,6292
349
- tapps_agents/core/evaluators/performance_profile_evaluator.py,sha256=DSZ0exjC2x2kVWExwuw46L_7A5PA3SzchxX5UAIsf1k,6740
350
- tapps_agents/core/evaluators/security_posture_evaluator.py,sha256=xoEUX1GtgncMmnSzucXqCWD7Fb7fFoumsd3TKeQf-R4,6097
351
- tapps_agents/core/evaluators/spec_compliance_evaluator.py,sha256=OeUVuoyVWp3MdIrxlcr7nnSv8hxjgbU5xdGZCvWxPg0,7690
352
- tapps_agents/core/prompt_learning/__init__.py,sha256=7T5z2cMuYSYbrgDuyc66z6iuzby9JpIOdnz8oh_NWRQ,63
353
- tapps_agents/core/prompt_learning/learning_loop.py,sha256=1auwqVi7EXn-8Hvqr9roldw51SmweswkG-_bv6VIo4U,762
354
- tapps_agents/core/prompt_learning/project_prompt_store.py,sha256=5kwNeikvv1GukAZjUmIY05hB-MvYxi-j5H3cb7axEGc,830
355
- tapps_agents/core/prompt_learning/skills_prompt_analyzer.py,sha256=sAML-Hn4Op_v1MjknBcasC7dBHy0OTFc7spX6YEbtyk,1133
356
- tapps_agents/core/prompt_optimization/__init__.py,sha256=nNQegNEVrSJ4FrIbtk6MNnrkGX4_CrNRNTSZ-7ThrGw,149
357
- tapps_agents/core/prompt_optimization/ab_tester.py,sha256=4VxAVuhJDwH9ALFGTRdk85bdYsG0hzFy9w6vuy6BGJc,3625
358
- tapps_agents/core/prompt_optimization/correlation_analyzer.py,sha256=9JnAcktCa6x0rNP9ryi_qrgTyvVzqb_qEdQ28yWr_cs,5596
359
- tapps_agents/core/prompt_optimization/progressive_refiner.py,sha256=PJZl92slkbd8CNBr3zzuWDwNPAuUoLUhgENC9mR1NUE,4757
360
- tapps_agents/core/prompt_optimization/prompt_library.py,sha256=sHjoYDqf7ySZ_dp7g-2n60r0H385bTajO5QxblYPnXU,785
361
- tapps_agents/core/validators/__init__.py,sha256=w8TBQxzYDqTxQfvqWlS3ezsLcN5NATQrjPktoKpZdwc,67
362
- tapps_agents/core/validators/python_validator.py,sha256=nToz2BUExnFxcg3L3kPg3_ceUQwkEgBJw0tCyjqfVLw,3247
363
- tapps_agents/docker/__init__.py,sha256=yvqK2fa_RRY7ljGIRb6TaZThR09opuCDvHSwxvi_ekY,277
364
- tapps_agents/docker/analyzer.py,sha256=6LKbYpIbf5JOSPRtjU3AtRKGAmzhnUNk7j6scfUc8xU,6619
365
- tapps_agents/docker/debugger.py,sha256=rzXTH_isr27EyglUZveKeM34iqxgiNiof7QGB6UDKSU,8277
366
- tapps_agents/docker/error_patterns.py,sha256=7MmW0kj3VLZFQlLNwt-7d1Xn4w7a6XKjItc61dUDe5Q,7089
367
- tapps_agents/epic/__init__.py,sha256=QLHpM8mjraUnrip_KNLBU1_tYeyq_ewmXM70rJ7951Y,521
368
- tapps_agents/epic/beads_sync.py,sha256=gfTUjqfI4lsukS9mFfCmeO-LO8VUezCq77FweJvVlKY,4303
369
- tapps_agents/epic/markdown_sync.py,sha256=0bWf0N_zrhYQJSvqnpj9rQna1M-zGIXaCSky5NxEzn8,4030
370
- tapps_agents/epic/models.py,sha256=JDQz0g9LrvS3qUURazIp2oaXq3fHVKOEmGHxJdJKhoA,3015
371
- tapps_agents/epic/orchestrator.py,sha256=Z1vplL7bb9y6kDTURpIFZr68SqQuacV3Dnmq4Lzxbuw,18795
372
- tapps_agents/epic/parser.py,sha256=ymGUElnzzwU4__JJ2_wSE5_PWqJFVq2QXPr6jrdIWro,15244
373
- tapps_agents/experts/__init__.py,sha256=yJtNPYJVWoGBfcXsPOLNZ66UdBP0fFzc_TwbdlPxmPM,4850
374
- tapps_agents/experts/adaptive_domain_detector.py,sha256=hfIGsgM0lwfmlogyNboXiLQY9zvXg-4vC_8_F6OvZR4,12959
375
- tapps_agents/experts/adaptive_voting.py,sha256=xHhUq62sjXquFn3_9Qd3I-kPpFbKbirjntMc4SLv4wg,9545
376
- tapps_agents/experts/agent_integration.py,sha256=ajBMZ4yUiZfXYI6rjevDURcSfjTdCEMlXldefOy6cXE,8873
377
- tapps_agents/experts/auto_generator.py,sha256=J_gQXG4jWgqB_7rYgaPYHNRIB2I6QyJkqr2YJAKkZjY,11699
378
- tapps_agents/experts/base_expert.py,sha256=ALXa_lVde9gFz_7on83FKmueNWgzXCUYYqMc6jyew_A,20232
379
- tapps_agents/experts/builtin_registry.py,sha256=GOr57GMrYF-HK077TJqiDxD-_ubkB8IxC_J3URvZZKk,9202
380
- tapps_agents/experts/business_metrics.py,sha256=L-XX-4rl3cmRgEaElyrJoBrpGEkGotzvQrsZ0eZZWQI,20874
381
- tapps_agents/experts/cache.py,sha256=2sKdhJt_5PHhQvj2uEsFtEsZogD8PBcZQduTjnKiwQE,8482
382
- tapps_agents/experts/confidence_breakdown.py,sha256=FO6iRcgMnJWhxeyemefbVvo2P34DLXfy8SzbLtpDSNU,11352
383
- tapps_agents/experts/confidence_calculator.py,sha256=P8mLcCPL9w9A73K_vQDKNJbuXYuofdyvHUnpkabMVG4,12019
384
- tapps_agents/experts/confidence_metrics.py,sha256=-yE3F8qq5FrKphKYmT7eQqVua2oWBF_PAUJP1toOZTg,7453
385
- tapps_agents/experts/domain_config.py,sha256=FRDPahjzP_Vw9Tcx4AJENcQ4mOaxXniJoTtrF0P-y04,9860
386
- tapps_agents/experts/domain_detector.py,sha256=D_iTGdnSsdOdsfMWeOcMUnhHJJErSd2Bcwdp4Oy_0Qw,21045
387
- tapps_agents/experts/domain_utils.py,sha256=-U2oH5kFWx6wo5QEp64nIuzp_dSJUQ58WGVZ0w2sTyc,2987
388
- tapps_agents/experts/expert_config.py,sha256=2z3Wp0_J8m89K2Pl0dDIEXTZrGG9RCBFp7Ds-zAq1v0,3603
389
- tapps_agents/experts/expert_engine.py,sha256=4dLdwC1tmgdmQDo2DedShBWwAc_HDZQ8OYlwUxvvZLY,16710
390
- tapps_agents/experts/expert_registry.py,sha256=lKeJnvV0tgO1Cn2Wbol0E4XATdSYZ4SQEECjQ6Ut_mU,29499
391
- tapps_agents/experts/expert_suggester.py,sha256=xZ8J2XxyGEqFuLODwzEssTcC-Ph-7_4GrKP7jvlB3i8,9409
392
- tapps_agents/experts/expert_synthesizer.py,sha256=VvNW_IpC55dBZAXB3eZTu9SGofaxM4kXC8M6SW9pZR8,2702
393
- tapps_agents/experts/governance.py,sha256=6IGDcSfTA6u7bH_GNRR38w_dM1-1N5AgtTgqOPAbRrA,6696
394
- tapps_agents/experts/history_logger.py,sha256=kgAm0pwjY_tO-lQoMFcgmpbHUGA0v1ehNs3ZgYxTVG4,9715
395
- tapps_agents/experts/knowledge_enhancer.py,sha256=Douq6F4ioMW3wZL7hnXOMyJYamdpl8X4lFWEjZy80w0,8984
396
- tapps_agents/experts/knowledge_freshness.py,sha256=I_gTLPiH-4nuC0hq0VxAjveNNyYRQsm7TVZSL5F8YJs,10466
397
- tapps_agents/experts/knowledge_ingestion.py,sha256=SfJF25hp6JuIdZyZncRk-JOcsZE_OLT3TCDlrGpZIY4,17365
398
- tapps_agents/experts/knowledge_need_detector.py,sha256=G-IBbdPyISSlccGbO_-LMdI3H6l06ik4GwegCQTqEC8,3455
399
- tapps_agents/experts/knowledge_validator.py,sha256=iWDYJ9Tbq4EfWafDvsy0_ranXydKzS4qFBx9twOj1W0,13303
400
- tapps_agents/experts/observability.py,sha256=UHm4jopqeAiknw3Q1DihzdSLye4RSlb4sGzQlfdKSxc,14130
401
- tapps_agents/experts/passive_notifier.py,sha256=5uH7L3KqYFsUWg89M5CnJoMKdrhjyY2Ujhe4GLKjbBY,7316
402
- tapps_agents/experts/performance_tracker.py,sha256=vMzK_zC02JQqltLMftgL17L_lJOQk9G2D80dIGinuDM,9027
403
- tapps_agents/experts/proactive_orchestrator.py,sha256=-LSU-c8U6Vk9KSGlJxXufMGcchkbJuTWK1CisukUg2U,1026
404
- tapps_agents/experts/rag_chunker.py,sha256=3RpTEzNBQbd8JWVAvE35Q2S4uYXyGlCBjRDFN2OcVks,6692
405
- tapps_agents/experts/rag_embedder.py,sha256=l_T2zmJJhV6ks0AdeZNd8yD9o4uuVFkakD4jAJc4uic,4620
406
- tapps_agents/experts/rag_evaluation.py,sha256=Cqja7NiFS1gMzIx-R_ziUxOeiLsxb3g0WO0oE832C5o,10815
407
- tapps_agents/experts/rag_index.py,sha256=2Sso1K1eDXHI26eNlxOC032M-Lcly9vJBVHl1cL9H4w,10202
408
- tapps_agents/experts/rag_metrics.py,sha256=oBHZ5f97fLfCyyIeB9zB6E2x3VCiirEXYxYUlRNvo_g,9609
409
- tapps_agents/experts/rag_safety.py,sha256=esUKH_IZ5-VYw5Vw0lMzik73R5Eyoemu4UHBXSLhn7Q,8458
410
- tapps_agents/experts/report_generator.py,sha256=pyQzVNIQ5P827fwjde1-kccTiiwR0lbhk4MaG6k3_RI,11605
411
- tapps_agents/experts/setup_wizard.py,sha256=IwLWxsORND56Q5G8yCSZabng8qt3FJ4teWAu6crO6zU,16009
412
- tapps_agents/experts/simple_rag.py,sha256=0FaEHG7FPgfNE9CtdON2NMvW9c0w89fW1aHvne1de74,16027
413
- tapps_agents/experts/vector_rag.py,sha256=vXtlYsRBRz4ufAfoEknZAVr7UkJ3QqklKVVHVMqWzDo,13170
414
- tapps_agents/experts/weight_distributor.py,sha256=-DpOxSGiK17JfLm_xynmKBcBpeWky3lcpKmxhJ4K8dc,11025
415
- tapps_agents/experts/knowledge/README.md,sha256=R1M-Obcxx5rr_0bPaucbSU-7tEg6mDWH7IPFlVX6fkw,7108
416
- tapps_agents/experts/knowledge/accessibility/accessible-forms.md,sha256=C2vgtEqAm8oa7SX55ZvJfWP2B3cW_tfvoaCXdyaK5_A,7670
417
- tapps_agents/experts/knowledge/accessibility/aria-patterns.md,sha256=co6He8imERdv-44ikt-suTuEX7HOMGq0IajVzV6xJn0,8698
418
- tapps_agents/experts/knowledge/accessibility/color-contrast.md,sha256=bsZK2jXStrJsYWLKQ5EQQC_DrBb_tpOIjYEKZmSR72A,6458
419
- tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md,sha256=bjj_4GghunV5h-oE1h8wXYR7yUf4FGYBFVhX9VnIvag,7427
420
- tapps_agents/experts/knowledge/accessibility/screen-readers.md,sha256=iox7-adgVCGqgviWzw-pR0Izllz9JnsEpjwUZvBvOc4,6955
421
- tapps_agents/experts/knowledge/accessibility/semantic-html.md,sha256=38vYZnOOjzjMwvyYzL9xVURp8feaLjVptK_9RsDUMqI,7333
422
- tapps_agents/experts/knowledge/accessibility/testing-accessibility.md,sha256=GfDJOX8GqY5J61FfM3mAR4DW_5UXPgiph8o8M0zwBUY,7431
423
- tapps_agents/experts/knowledge/accessibility/wcag-2.1.md,sha256=LVYyBEQTab4Q5Xn5lq3wz7Kny9KG29JDBLEzVdVPrA4,10695
424
- tapps_agents/experts/knowledge/accessibility/wcag-2.2.md,sha256=hgdF8_WwT2PPBVQ9V61J2xPTSs2E1Sy7lOxSFqZnWj8,8327
425
- tapps_agents/experts/knowledge/agent-learning/adaptive-learning-patterns.md,sha256=wUC-CG14iBtfUH1eAoM2DYPN3vHRjiBnuc7c262EXv4,7095
426
- tapps_agents/experts/knowledge/agent-learning/best-practices.md,sha256=99eku_imsDAh_d4UTqf4zd3V2xEmd_rDx9IRz5Zc1XA,19705
427
- tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md,sha256=n1qCv8LV7NxjPlB7jTUTX3s2yDn573kt5455_Jc4ICw,6634
428
- tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md,sha256=kRbwQD0Bkrw3D2_09P4xcs9qco2QWEJl7CND6XNk0U8,7472
429
- tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md,sha256=cAKDgwmlaVg8PjvrWV4z-8IQQWxj-P_CRI_-FQ4ny8E,5023
430
- tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md,sha256=gujaIUo794yDOzSgwy45QHRr1g-PMzWoSfpeWePRipM,2162
431
- tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md,sha256=QibfG2-r0t_euib-2fBcvVH3z50nWp-3_HKbuVAS6s8,6756
432
- tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md,sha256=X1dHOu6dXsM399SJ6Gk3_IZ-aRceL2wGwtGun70GsFs,7148
433
- tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md,sha256=SNEVPvuungnzQcaHqFT-gzdThFQJ7WZHIruCrm7cazo,14852
434
- tapps_agents/experts/knowledge/api-design-integration/api-versioning.md,sha256=AvgPN04ERT8Zpv5manm36ecxFe64nhFqJyT2s3CVQXY,8805
435
- tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md,sha256=HCLhXetoqUWVB079E0QTd23sduNhlPfkvJ03cV5QJnA,1567
436
- tapps_agents/experts/knowledge/api-design-integration/contract-testing.md,sha256=ahpdBJGafHzl0PFh6aczaM5mzo7zgb1Dlizbr0_aIAE,5416
437
- tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md,sha256=Qk2IuHaxUTmj2w9DzJQitOgCWiHciEAp-KhuPKzS5iM,15252
438
- tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md,sha256=ZqTE8kwQMtKsTircpCBkq4V0ZSfmT_Mw-ANuRZ8AWyE,8596
439
- tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md,sha256=Uz-qQR7qVsNduO_flGX1X4ih09VNRJaO0805H9hHvfA,5917
440
- tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md,sha256=UrvONnl3LJmazOUXm2rgcMXAzxm9Wj1n0EI0neosBx4,10123
441
- tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md,sha256=bz0Dm42YaSoYSXZ5tHXsijbLCCCLCUIjFo_bqCGsd4o,11925
442
- tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md,sha256=FckNUCY39nmK_wjmq8GRaG0LxMR9oqTYFqMHbrS5kKU,12883
443
- tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md,sha256=krrlriuVHZ3RAizT1eZG-Tjc_tIfM1OJbQckqRxoJg8,13172
444
- tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md,sha256=Wx3x_SgVVn03a-rY8GBv2I79bS0VZLoZPbTFX_K_aZI,12241
445
- tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md,sha256=6WHdPFdyZBL7EME42d0gknt7J2p789HPVFtnAqL4QWo,14871
446
- tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md,sha256=ANDqcDAyL7iK9HoFKsF1HUOIf045G-mqwJekQ45WmIg,4151
447
- tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md,sha256=FJswxj7kJRKB-qfx-EBHrNSEi618TNcBmo92g0DOkRo,6350
448
- tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md,sha256=8Oe8TM0XmWuzYnzljo4cTx2BceEuVo9fSMBdpih24m4,4527
449
- tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md,sha256=NQBnZ0BuE4ABNhJp2MsADTSOYJYGa44frJD5XoMf2oc,2689
450
- tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md,sha256=5_doqQEb3xvKXcLElo3Onew-QM0DcutLqYbOCv1k0nM,3019
451
- tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md,sha256=ILOiA-_7bMAk0UA1nJC-_kUQLoSjMumkTrM8uzCAS_c,5588
452
- tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md,sha256=8cLey4PI0sTnGisurnBmDBwkGau2xMqkpBaWkNHfSKg,3540
453
- tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md,sha256=e5zqYDU_GwXKR_XvgbTymEVfwn9AJzGS_bjpwT9SYAE,4597
454
- tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md,sha256=dLf4Y2gK36ShI5o_-kMPB7E_d6UWbGtAV4blcYRSCTE,3268
455
- tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md,sha256=VancHxYrMQgfmfxddPNW58REUhyq4jEWgMGpYsCW30c,4311
456
- tapps_agents/experts/knowledge/code-quality-analysis/README.md,sha256=QcvdRrxf-jMsFefPJOkoHpxipGHcmraRpXAwFf3dFUM,451
457
- tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md,sha256=z6qGQJmblJq3H9yrEeIZ2frJGhNOs3PbvVM1A2yw-3w,3708
458
- tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md,sha256=SRZ37cyEWH7A9boS3UIQVQKionRqMXazAEgSoWiUK3c,4660
459
- tapps_agents/experts/knowledge/code-quality-analysis/quality-gates.md,sha256=bClraAtPON6u1sdcT2FNmOZDmIymC5kD8KMYbtRHykM,3597
460
- tapps_agents/experts/knowledge/code-quality-analysis/static-analysis-patterns.md,sha256=4e9Lf2bmsoAu7UK0pEKFhqPE6Q6BtcBzdLG9o7paj-A,2920
461
- tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md,sha256=n7Efi64segHEpJNw-eyDCSAU9aYZgBaF_1Tui2mKO7E,4668
462
- tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md,sha256=vSA_97FNDw09AW-p6ZcJNyCf8milvM92wnQEGPIkwi4,7841
463
- tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md,sha256=g8YpO0FyOjO8t6SQGcKgCdQtFob8Roq9Qs8yNgMP3Qk,8431
464
- tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md,sha256=ONtapNK8D73BEAvxu6r_tcq3GztKtv_6ukTpQXvFV2g,6953
465
- tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md,sha256=LB2R5T7RL5wOkerFJ6R3kESE-OerZ5xMt-5Z3yo_aY0,7150
466
- tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md,sha256=Tp04-rIVGlO24Y2X4NBrThCkxw40e79oFZlRAhNW9X4,7207
467
- tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md,sha256=jiCzGyzCCWHeiVNuGVXyQHapasSRzuOEszJJB6MqqQw,9598
468
- tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md,sha256=HffFowu3urwA6aEzsSGqvTkGAv3LVYHD2ZwNmAw3rjw,7472
469
- tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md,sha256=X6HvjAljq44ng4BAgMWnJnCn-h6E8-ctJ01AkEx5dH4,10654
470
- tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md,sha256=zfyqDmjU4ay7hgACDpDcDdYAVrI2CyENOm7eCAgaTMc,11466
471
- tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md,sha256=AdimgKLsykzYdBg9zHoEfiJHD8HE487ADnrWpG586jk,7569
472
- tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md,sha256=213Q6sOtfO2CEWl-Xj1XuhK2_AcOBuI6JaQ0nHl5K6g,4060
473
- tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md,sha256=Z9QEJ1YBef4msPwjC8LrBcmfx22WP7sK3NDx4rFp-QQ,3617
474
- tapps_agents/experts/knowledge/database-data-management/data-modeling.md,sha256=PKaRmFizAB9pm3VCqdcuY71YAPZINizh8IlEygQe3lw,3197
475
- tapps_agents/experts/knowledge/database-data-management/database-design.md,sha256=XC8riqg4YyqrQA6LK92Qg6VsL5kootVuk9ltYtcv_YM,3782
476
- tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md,sha256=QbHqGxWcscaHQuLi1D5KAuGZhzQHXTmhJUGpMMieoYI,9819
477
- tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md,sha256=AVKLdUOGBNn-ilKh3eO2nH_oX4nC4_k-aEx691DPUMk,11070
478
- tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md,sha256=nMlMMb1mpqmG_nLgas0K-r-Dhj7sY7f4nCj8h7TygaE,11022
479
- tapps_agents/experts/knowledge/database-data-management/migration-strategies.md,sha256=NPZV1Po63XWcgutMotntTYTW-gb7OJhLpXzYf8FIEKg,4622
480
- tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md,sha256=z8A9dl4g6bxZu3omSjl13_Kkwcc7lpM7BI65R0EQKYk,5586
481
- tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md,sha256=TeWuyW55H72pkj-tPIer-5PqlvIQJyFhV31iudPwYuE,3552
482
- tapps_agents/experts/knowledge/database-data-management/sql-optimization.md,sha256=nKQY84b00MnUkhbRYErNEivHM4Gu4W4xbn6fOAtEe-8,3779
483
- tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md,sha256=ptXjYq17ZCUQtJaWgDwWJeGNhhDggk5B8GOUqiDi2mM,10693
484
- tapps_agents/experts/knowledge/development-workflow/README.md,sha256=nkGUNVz6LSrd11vAkLTg8uFYKaBZg35gpbR0zaPGbas,472
485
- tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md,sha256=QPmfjCk24pJUS0r_VcQJHL1NVPdW0a_7sy4Jy79W2VA,4058
486
- tapps_agents/experts/knowledge/development-workflow/build-strategies.md,sha256=MPKpVBNCnEGA428Lp4vvBgu9mcq0EtN03xwopJEkjrA,4413
487
- tapps_agents/experts/knowledge/development-workflow/ci-cd-patterns.md,sha256=ayRLrOeOg5R_ayWudPRA2t0X5oyThy3v1Bd--8qmkKE,4429
488
- tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md,sha256=1qKlnOPZ6ZLIYLGE2byU05ISHR7CC9UGOMTGpunE9aE,4849
489
- tapps_agents/experts/knowledge/development-workflow/git-workflows.md,sha256=SlULGnkIngJUPPMJG_PrV0mVvylN804zaaJKHV2O2n8,4521
490
- tapps_agents/experts/knowledge/documentation-knowledge-management/README.md,sha256=EXPuk-ltoTpy8WYtocAuYiSHKLH7AZUh5QkuosVYtrI,497
491
- tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md,sha256=t3eKpna28SZsLDxseObOWsYy6zCvtr-QJEnUFw-rql4,4993
492
- tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md,sha256=VJzb_JPlNtYK07dqOdedLWhT4Z7SjIwYYu8htED9uIs,4820
493
- tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md,sha256=Q9NO--xH0W5WI2VTWl_9b8uq5H4NvopoEeTnDCjn2lo,4640
494
- tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md,sha256=6hhAGXFqKfTFViQqyUkItB02NLrM1WG1JfFUCTJm9Ew,4445
495
- tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md,sha256=foK0sAuJfgrwtiKLsuulq9DMoHySHnLS-uXJhzJNG7Q,9760
496
- tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md,sha256=bauo8YM40RnSO2EBUmneeQ27Vb2YVrfn38ZT5G8UZko,9086
497
- tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md,sha256=BLvkeHed29Jg5i5uI8ae0nK80A5ealTKTDatE1GgKHU,9989
498
- tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md,sha256=z726aoOjtxeMN0VbLT5WikYC1yTdUafgGl0fX8UFwU0,11029
499
- tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md,sha256=ogu4VoSjpqSoRL_rbaaHqrawFvkTM0Iyhug_MT6DJYE,11650
500
- tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md,sha256=K-EWBfk7SRSp2ozO_88Lj7vJVMllmTe_9gXnlWUh7G4,10828
501
- tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md,sha256=EUEjPccw1UCl4nWFumgtMtyZxFfGM5aV4pQ9KvoBWHU,12709
502
- tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md,sha256=OjBFkq2vQKeckSq4IMslzGgb6efw6yBB0UrtoCYj4BE,10599
503
- tapps_agents/experts/knowledge/performance/anti-patterns.md,sha256=x7zxfglAFbwk3T-KSGg5ap__2Vd39iP61oqyje4Fl8Q,5026
504
- tapps_agents/experts/knowledge/performance/api-performance.md,sha256=MhQmBdZ5eabTanApAesqeifPP7o82Zogsl9ZUnWd5eY,5211
505
- tapps_agents/experts/knowledge/performance/caching.md,sha256=x8CwPvNfk3wmTKK_acadcIUaq1d2nQV93zugbYZQJHs,5925
506
- tapps_agents/experts/knowledge/performance/database-performance.md,sha256=1FwiIPRsNcTw5CZaT_najq27lWbx4FYqnMrDt7mcWBw,5076
507
- tapps_agents/experts/knowledge/performance/optimization-patterns.md,sha256=tni_iR1Hwae8FPOXbBz7hPXkl__PsYsYWAbZacHFK_4,7428
508
- tapps_agents/experts/knowledge/performance/profiling.md,sha256=rmyrx1RKtHyaGJJcHibxU4s0C31NbVrAENU5brP-0s4,5652
509
- tapps_agents/experts/knowledge/performance/resource-management.md,sha256=__GG9QXIHYAsiT5ziJ8GhX8dQt3hEJtCSuPEeeJH1z0,6486
510
- tapps_agents/experts/knowledge/performance/scalability.md,sha256=J2IyAekCco-eJEuvGcsCYh0VX3ZrIGHa2PXUrdjfr6E,6574
511
- tapps_agents/experts/knowledge/security/owasp-top10.md,sha256=v-_GM9plD0QdU8awggnnrpl8nDVkmafRbat8g7_gpKM,8723
512
- tapps_agents/experts/knowledge/security/secure-coding-practices.md,sha256=lCbZY9rqkkxbnSw2GK6sr3C-GWztAPooydrnMC6cHA8,6745
513
- tapps_agents/experts/knowledge/security/threat-modeling.md,sha256=DVDe3Lmlowh9KruBnS5HbWk5m-LEk8zYxOkUWoFAOUI,5785
514
- tapps_agents/experts/knowledge/security/vulnerability-patterns.md,sha256=F6WzcbKfR7rj7HI1NKvzMqxOb6vCM6qNfkeixrZWxOE,7830
515
- tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md,sha256=NPdglcRhBcmCP-HcjSHLf7YMdj8Y6geYKEh0x_S8ir8,5907
516
- tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md,sha256=At_bwNQ-Crg4o7xjbsQbWHR4GnbCaYi0rkcfnblb204,10525
517
- tapps_agents/experts/knowledge/software-architecture/service-communication.md,sha256=11rmZeBOdO3yhAPF-yec1I1_gRKBvjKGCOC1jJ9JUTk,8371
518
- tapps_agents/experts/knowledge/testing/best-practices.md,sha256=0sT_1ILHPYiGjJPOQ84vLmjoVN3XDLe0jyKhasKLmfw,6304
519
- tapps_agents/experts/knowledge/testing/coverage-analysis.md,sha256=5fRacWrCcQ9w9n8u3hhN82Ok55OiHSFuGR__9WeC-Cs,5720
520
- tapps_agents/experts/knowledge/testing/mocking.md,sha256=9CKAorAMoyp3D0f-v6vXVs2rKMj5EjjT0mBDJ7FJN00,5195
521
- tapps_agents/experts/knowledge/testing/test-automation.md,sha256=_7u-s8nnvQ-6cOoYRYvg-UUJT8ZFUm8e0qneVxhtAZk,5336
522
- tapps_agents/experts/knowledge/testing/test-data.md,sha256=N4RlJZXyqboqkJOyYmv4CC302asEP43Ee9hpYp4dC-g,5537
523
- tapps_agents/experts/knowledge/testing/test-design-patterns.md,sha256=FHQegEMGqqUddjCd64SrtmSC7WzlMi-TO0ILzciMkRU,6061
524
- tapps_agents/experts/knowledge/testing/test-maintenance.md,sha256=3BxthrZNzVyy-z4R0L1ltHPAiXFBiq1zQRX6uikh1E0,4828
525
- tapps_agents/experts/knowledge/testing/test-strategies.md,sha256=Kq4det4B3JZ6JjGAWl09wl_LwThte4oNSLEPtUJhEVc,6198
526
- tapps_agents/experts/knowledge/user-experience/information-architecture.md,sha256=WxP3XJfmLSrsNsegZy7HFAgLXU7xn70aCrMmvH3USG8,5886
527
- tapps_agents/experts/knowledge/user-experience/interaction-design.md,sha256=u-_G_DjhQxzrzPIvhYQC_qb1U77oKM4yCWW8vLvHiZA,6638
528
- tapps_agents/experts/knowledge/user-experience/prototyping.md,sha256=oOI4qE6ydeBAbzu8_e3KHN7Z9AmoobAhGGZnMr1nYZo,5535
529
- tapps_agents/experts/knowledge/user-experience/usability-heuristics.md,sha256=ubkTGA-9PLy3OWE_7R-uFsF9sn3CLGzBr1C7x0LTqg4,8087
530
- tapps_agents/experts/knowledge/user-experience/usability-testing.md,sha256=u_KNGtt30rkRSM-XQAgkifrf4gvN0_nAoA2MjoCM0_g,5704
531
- tapps_agents/experts/knowledge/user-experience/user-journeys.md,sha256=1jXPXznEZuTv7fvthjEmfMKENzID7E1ZJimUByF2tcc,5037
532
- tapps_agents/experts/knowledge/user-experience/user-research.md,sha256=rte_IA0sYS8m0qt_Oz6JYNTUsI1vhgo5dOnMdsxYOV4,6695
533
- tapps_agents/experts/knowledge/user-experience/ux-principles.md,sha256=LWeNens3qEnfJpAyILa-MVbYjSVz9LRG512p3cbsrDQ,6525
534
- tapps_agents/health/__init__.py,sha256=edaEKPyopbDM1hplMBEt5N1xcVtqkRzaOGXAs0mubzY,645
535
- tapps_agents/health/base.py,sha256=1R7V1a7hCKFkJ2DUuc4SAcHXgPZELaHhwCJhhdElcoo,1903
536
- tapps_agents/health/collector.py,sha256=yTLBaqgvP7BFGo98Btaxb6MKaMOBym9jOBWNY8SPzsA,9582
537
- tapps_agents/health/dashboard.py,sha256=mCaERCimQimKyPCcIbxsMyAk86XXjz5NDDJDk67LRDE,4433
538
- tapps_agents/health/metrics.py,sha256=i8oKjD44UP4q_CCgH3niuppDlwx9Xbs9_h05KOkQwXw,4670
539
- tapps_agents/health/orchestrator.py,sha256=C35YWZLRbdaHMFCtps7O7mlPibsDk1WNwXoKfZd_s-A,10107
540
- tapps_agents/health/registry.py,sha256=ZBY7iuZJz3BXC9-eOPyxUQUOUWSQpx8TksBVZ1ObDSw,4882
541
- tapps_agents/health/checks/__init__.py,sha256=7pPbZULDePvdnM9Vc2zARBGLhSlyMqtVRt9x9Lc4bJs,600
542
- tapps_agents/health/checks/automation.py,sha256=BFel3D9VcXKTP5twZwhBQexCtxMjyQuhlJYuUdCP-9A,4950
543
- tapps_agents/health/checks/context7_cache.py,sha256=5nlpB52nJraeLwzcPNhHLdTdjxQobQJYEecC1ie982Q,8761
544
- tapps_agents/health/checks/environment.py,sha256=DvTB_IxxNzJZ2YnHIURWVSBMo9MS1BiDmZExLpPAljk,4122
545
- tapps_agents/health/checks/execution.py,sha256=urqZtXENyZPTd5jOo-EufSW1irYlQMD8KI4PLpSLLr8,6881
546
- tapps_agents/health/checks/knowledge_base.py,sha256=e86NaPnRA_0LpfNvqcrBUt0jHs9Lzg5nxJeeP2efkHg,7318
547
- tapps_agents/health/checks/outcomes.backup_20260204_064058.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
548
- tapps_agents/health/checks/outcomes.backup_20260204_064256.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
549
- tapps_agents/health/checks/outcomes.backup_20260204_064600.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
550
- tapps_agents/health/checks/outcomes.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
551
- tapps_agents/hooks/__init__.py,sha256=EDL7yMB8-Cb2AMuBRHNAInrxhf63fFZgsvJv3nOlARc,822
552
- tapps_agents/hooks/config.py,sha256=uLl_GTPTSw2pC8336K7kWJQOgOwJXHNOrXGLvbLfNdY,4418
553
- tapps_agents/hooks/events.py,sha256=7hY9okOG97jW0-LP5DokEBkBx9jQL4ef6zClLGVVcqM,4056
554
- tapps_agents/hooks/executor.py,sha256=xc9BnHBoZcPCO_0tzyO9b27F0rhAa1UyJhDIAR3uEPs,4305
555
- tapps_agents/hooks/manager.py,sha256=hV5dPnttP2TdZ0ifXO-gLg2S8-WaZeR6KGfErvANKgo,5038
556
- tapps_agents/integration/__init__.py,sha256=yWNId0-cg6NKkrjw4pYlRiS6IWYcGLKUb36_PT4iIE0,132
557
- tapps_agents/integration/service_integrator.py,sha256=7tIiT8J62XQUB7DFXUx2mJiTzEu2xXPrzz0Q_TglkhE,4012
558
- tapps_agents/integrations/__init__.py,sha256=UbOmMwyHrjhHB4zhSX5g37FrIO_yz2TZ59UkyvqaQMc,246
559
- tapps_agents/integrations/clawdbot.py,sha256=CI6BlzkPHLRYBRs8i4mPpdUiwWMUX6F70zWYnWOYizk,18411
560
- tapps_agents/integrations/memory_bridge.py,sha256=8iUVcTKett3yZI3XjUwF70zt0L8DJke2iQurmTX3LGA,12536
561
- tapps_agents/mcp/__init__.py,sha256=wE15It2U6ie2tfvPhEnqTS4AIJXEK9esoP8tbGpijDA,511
562
- tapps_agents/mcp/gateway.py,sha256=hywGdL3HHMgQKTN7hwfAMOnvH2O-1K7PwgmlLV9tMlo,3369
563
- tapps_agents/mcp/tool_registry.py,sha256=D5SHJnSyzZWcg8CsYtMzgOV20fUwwe4bSa75YeCzHp4,3080
564
- tapps_agents/mcp/servers/__init__.py,sha256=MVJ9DRV65an-pTQZnlPHOLAKaWFUvYGqmf7uZPmVBx0,314
565
- tapps_agents/mcp/servers/analysis.py,sha256=xAtlm94jzCstWbpsWw68-WSPcycT7ZrZtRtUOPf-yE8,6918
566
- tapps_agents/mcp/servers/context7.py,sha256=GUU2FFBPPXRZvtOSLCAwlMRtp0WBYJm3TifUzzGn3uo,7321
567
- tapps_agents/mcp/servers/filesystem.py,sha256=8bXeQQOGwgcOpF6TqW6-5oW8Ho_eI8v5sz7npA5Cq7w,7417
568
- tapps_agents/mcp/servers/git.py,sha256=O-S1vUT05WP2oEo9eAJ3N4WKTzU1iqKz-jOhYSeSelY,6889
569
- tapps_agents/quality/__init__.py,sha256=GGOabn62_EZDKY4flqa7cM42bIeWUu1dBKgOqGup8xI,1012
570
- tapps_agents/quality/coverage_analyzer.py,sha256=4OoxbG0COQqzei7Osl9_ucXMfvp7mBR34t9XvseAW9Y,13122
571
- tapps_agents/quality/enforcement.py,sha256=FuSV8uWpmLnMhPJc7w3SvxPEdMCisl-0EFmJfvHdKnw,2358
572
- tapps_agents/quality/quality_gates.py,sha256=ba-B4X9YnfBtW7ZDCXC-GgzbRELRIu7tM8rFc2A_4pI,14410
573
- tapps_agents/quality/secret_scanner.py,sha256=nEyn1-h6aYUspSZvJX2YBv_3KxsLbDqZQu-5C5rzgSU,11621
574
- tapps_agents/quality/gates/__init__.py,sha256=hhG_yJC37rXJMlzKliNGU8VFfSrzU6mq_pMdFXlQm4w,910
575
- tapps_agents/quality/gates/approval_gate.py,sha256=UTZDBFu_tJkjaeFjIDpy-8Bz8Xpm0F96TASHqhfghFQ,9727
576
- tapps_agents/quality/gates/base.py,sha256=rpBHkC8_LOUb7nTNs2yLghOznXwqYxzXHvGxOb8NN4k,2031
577
- tapps_agents/quality/gates/exceptions.py,sha256=vBcYDtaswDskl91wdCXimDsOsYRDRo_RJcFauv8UiSg,956
578
- tapps_agents/quality/gates/policy_gate.py,sha256=d4Pjoo4jrd42_nLjWnl5hkpzXoW0FHpiRcPGzW68YJI,7187
579
- tapps_agents/quality/gates/registry.py,sha256=j2VykyYKqxUfSxUv1-JYsovrQZ7DFOOB2vx_vChRnZg,7653
580
- tapps_agents/quality/gates/security_gate.py,sha256=7TvVoiWbZxoFYlISkWpO7Jy1L6G8rso3KbODTb5F1lk,6096
581
- tapps_agents/session/__init__.py,sha256=B6HCY2scz0fT8Ss8-TMoUNcqH1Pqy-R4t0OUomAbT3Q,454
582
- tapps_agents/session/manager.py,sha256=4PuYAapCga5Hlevc3OTpY-ePNn6VkFtIssbGMYJse98,8762
583
- tapps_agents/simple_mode/__init__.py,sha256=B-UzNIImDVWBRCmnlZEz1V8SQu22gslNrNPb3p4PDBA,1821
584
- tapps_agents/simple_mode/agent_contracts.py,sha256=TnigBf8rKzUxeoHtz-S-58W-azyUJqHitZjGBDm3EVY,11881
585
- tapps_agents/simple_mode/beads_hooks.py,sha256=58PCMg3EZvl6QnEHmUpF7Qj5cRiF3XQ3pZ0iY24EPnc,5115
586
- tapps_agents/simple_mode/checkpoint_manager.py,sha256=_z2iJ2Qv6oK4lsINbcTqXWsq88BkXwYJhvhLCyKgMUo,42152
587
- tapps_agents/simple_mode/code_snippet_handler.py,sha256=wnuzx0OgbUQ6SL5kDlVdpupBr7FrPA60L-NeP5U07kA,11235
588
- tapps_agents/simple_mode/documentation_manager.py,sha256=udBQcQtF2eryigTz6nuQ62zLNrfrhfxLtG1Q-p9d4Ks,13336
589
- tapps_agents/simple_mode/documentation_reader.py,sha256=A4RyMyIdo1M0Xf0U6PyXpdE8VK2dc9NF2Tzmj3jF-Q8,5905
590
- tapps_agents/simple_mode/error_handling.py,sha256=4ncWUrFHw22TYRQRRxldxeGmcCFh_ebrHPDWeCPMRE8,10740
591
- tapps_agents/simple_mode/file_inference.py,sha256=rPwb3ASqh27RYbU750HQsLHVzqSMXzN5vhGlnmp_SVg,10759
592
- tapps_agents/simple_mode/framework_change_detector.py,sha256=gV4k3NSFCWtPApaYwWphxqm3GBjvcN8q7v2I04jaDJM,9796
593
- tapps_agents/simple_mode/intent_parser.py,sha256=0cBBdiq0ODUwwmQkkHKKeaUDmCj6qfEIWBwsKLOMLnQ,17597
594
- tapps_agents/simple_mode/learning_progression.py,sha256=5ZQm45fAen00RhxKep-q9Bo-TlxrRgebze2zSaySxDw,13538
595
- tapps_agents/simple_mode/nl_handler.py,sha256=tKmYE37as1ktp26sbl_z_vZnKRuj7rNJEMINwuJbYc4,27805
596
- tapps_agents/simple_mode/onboarding.py,sha256=xJ319mSnBdO5EGpWYDAEEYaE01UDrAFisM-o2Nouea0,9689
597
- tapps_agents/simple_mode/output_aggregator.py,sha256=0MUH_sgLNRk9HgHqw8JV5yBDjlDHodJn0AGmF4u2xKg,14357
598
- tapps_agents/simple_mode/prompt_analyzer.py,sha256=uS99XPlX6u6gI78cYabl1quuBCGZc5WIl_-Ptpd5lQE,14251
599
- tapps_agents/simple_mode/result_formatters.py,sha256=bYYrryDYd09qlc_bebRT26yQz6HVx6qCIqop3Q7fNIA,17743
600
- tapps_agents/simple_mode/step_dependencies.py,sha256=Wecic2cJP0IOkn6Q8o_PcouS5o7dFvN-MFUV1qHuwDE,11856
601
- tapps_agents/simple_mode/step_results.py,sha256=PzAB2GuNV94RIKP0u3XURWfRWk2Is6nr7hWFoDkljWA,9318
602
- tapps_agents/simple_mode/streaming.py,sha256=faAySybvrQc0c-0Wvt37uF1zLU9f3QmXDKDeLDcvipw,13607
603
- tapps_agents/simple_mode/variations.py,sha256=SfO9PTj8M88-ACLK3HkujWL3tBHYz3pccSg3ykeaEAs,2800
604
- tapps_agents/simple_mode/visual_feedback.py,sha256=CJei9NhnGYRO55GBC8S4DqGK5YK9gm1mdDAUrQ1jFzo,8347
605
- tapps_agents/simple_mode/workflow_selector.py,sha256=EBKpkMBeFS6WfIuRhMyTL8nnKRpj52MpnE7rpgHt0Zs,5288
606
- tapps_agents/simple_mode/workflow_suggester.py,sha256=2KJaNyvOIk4GtENRynpkTLDBqzcg6aAZ80co3x2u7iU,23030
607
- tapps_agents/simple_mode/zero_config.py,sha256=7edNF7AKiLjkzAKqOnVyUSTAu7baGBlM3QZMTNEEOug,10979
608
- tapps_agents/simple_mode/formatters/__init__.py,sha256=xgAR0OZcKZiDaGLTOCCfvOI7gdBArnKyTcxVMfAE4Pc,167
609
- tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthNEMZywWZMV4WYlEbk1SiqPhBsYsRVqrsQrAH3GIQ,5940
610
- tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
611
- tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
612
- tapps_agents/simple_mode/orchestrators/__init__.py,sha256=DM6TzDQ24mSJH7STMN1_47s-7nUsglfBYxj7MXZU21k,1315
613
- tapps_agents/simple_mode/orchestrators/base.py,sha256=xpd8mIxE0i1M9H83tDzwUKRf8JIso5klsHc1XdibW2I,5852
614
- tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=ZaS8vfGPJrsT9Qfz_fRfcjkActQOjotQWbWTuqLyjXc,1790
615
- tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=m5jR5aru6U68sbgQPCuJSvSzW_-DJ6Suf4IUU8jeWBw,5149
616
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=5Hl4rCegx_BkFBwCLzCG6CxEum0qHW2MUzODJKSRw8U,122623
617
- tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=IMtxpzv1UscwCHp047Kx_qIeLU7_b407-yEAvS774-k,12574
618
- tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=xmcicWcUPMwDHOfm-nS_6rV62-10dPZf8etj_eNGCYg,2112
619
- tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=6rJ-g5R0GtsFaM90fCAhP26Ag3EKe71Cd1P-yUT0NHQ,4340
620
- tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=MWkGaQ1kMj5H1B5ryHZUssMjXWI3Di11U_aUgrPJldA,6764
621
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=sgLxSFbaGHFMFNtcuz0vHIp_lZF6-3VSWnS7VpvtyUw,33535
622
- tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=aR0qMtJ6jlUx1T5dhVn-_sYg9YPN0Wl7044kD7jYF40,7266
623
- tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=1KPEBdAE2M163rwp367qRkrTGlRM1A53qIZmfM1kR5g,8603
624
- tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=bOEj9m67HqHqa2oLY4YEP5wKdN8Knk1rsds5XXGAcdk,8157
625
- tapps_agents/simple_mode/orchestrators/requirements_tracer.py,sha256=7k9j6zQ0bnTN5YF9CQalrx25GH6topalKtR3h34x93A,9157
626
- tapps_agents/simple_mode/orchestrators/resume_orchestrator.py,sha256=GxUMAJ2j-2dG4Q8i2Fw602kusKxckyvJNdLIRj9pHsQ,7321
627
- tapps_agents/simple_mode/orchestrators/review_orchestrator.py,sha256=-HZi5yc815tdXhvpT-7_FDz0lB_90h5V60MA2lMGHSs,6763
628
- tapps_agents/simple_mode/orchestrators/test_orchestrator.py,sha256=_4vKRgNwoCxI7l_T-MZE7UTMP3xAcM36yO5n8CTztFA,2514
629
- tapps_agents/simple_mode/orchestrators/todo_orchestrator.py,sha256=chLqedGDy8VO87lvObxMPqNtFxbbNnP3Ik6MXPGyQ3A,1820
630
- tapps_agents/simple_mode/orchestrators/validate_orchestrator.py,sha256=n7zdv5aP0aeZ9OHopTcgH6ebNW0Bp69SrjxIuqa4fDM,8168
631
- tapps_agents/simple_mode/workflows/__init__.py,sha256=G0m5BdxhKO3g0IEuNHRWrEBBKiVLVdHzlE1aw-9cITI,338
632
- tapps_agents/simple_mode/workflows/quick_wins_workflow.py,sha256=baoGvmXG07fAmk2f4wtR-B-t3wlz0kYNrXl2rpVwTwA,10834
633
- tapps_agents/simple_mode/workflows/validation_workflow.py,sha256=t54TeoDI60gGJsK7OUVB0wdnYl9bdm_BWHd3AEd56LI,14049
634
- tapps_agents/suggestions/__init__.py,sha256=s2Knl1pmCgVPRqmCSE5Rjo_4-PK1QkQI1O6DTyKetu0,121
635
- tapps_agents/suggestions/inline_suggester.py,sha256=KtvZuYqqRenme-vG2HQCVzyFDvAoJ2YzpujpNsCpSbM,1370
636
- tapps_agents/templates/__init__.py,sha256=zBD8RouLmKaRpYzkeNbcbx2nQT_tatDKLtaUX3owvZI,164
637
- tapps_agents/templates/microservice_generator.py,sha256=4I4fQZe2QuJuSMsQkJL1ozD2e2OEk_XRoJJ91GPiwBQ,8202
638
- tapps_agents/utils/env_validator.py,sha256=hUv5JnortuB-Hvfm23AgRRX2AyfCblbza4AEzCQj4rs,9010
639
- tapps_agents/utils/project_cleanup_agent.py,sha256=n6bXfBFeU67nrFBAhn79wcmEZ3RjhETyV1VODUUKMHk,47692
640
- tapps_agents/workflow/__init__.py,sha256=m_NKPv0cI1WB4c5W4NlYNinz4-t3tlxAbEH6s2JEy7E,4859
641
- tapps_agents/workflow/acceptance_verifier.py,sha256=kIFgy_WWVe4R9oOjzWEtVSEnBV5x56oVP60Jt71lzaE,4730
642
- tapps_agents/workflow/analytics_accessor.py,sha256=tp69obAE9HntXD-imiItqGhOCFFzlKQJlrR_X_KocAI,11489
643
- tapps_agents/workflow/analytics_alerts.py,sha256=iUeAmDl_SEDxBYxP3uQ7I4x4YEaJBA2FJ9OQRPfZTKs,13932
644
- tapps_agents/workflow/analytics_dashboard_cursor.py,sha256=Mz6RoAaLu0BgKYKBmP7DQWGzEJ34vQaO_--5KBQJFsM,11723
645
- tapps_agents/workflow/analytics_dual_write.py,sha256=GUgnhKmqvFBQ13ojZlac1R9t09e70_SxyDFlPSf-wEg,3380
646
- tapps_agents/workflow/analytics_integration.py,sha256=nwo_CdKhBJ9D7TARgbtLZxzk7QOulx5KU7tcvpHCu3Q,3824
647
- tapps_agents/workflow/analytics_query_parser.py,sha256=CCcC6y56Hx_nQ6HqJYvuake0gSyPQhBsS5npl0AMTmY,9597
648
- tapps_agents/workflow/analytics_visualizer.py,sha256=9ot-OkD98ZMDzWUHv8-_WKwAKBZUhZed25lMMhkHlwQ,8025
649
- tapps_agents/workflow/artifact_helper.py,sha256=B5MPPOHdhn6hPQAw0yDZnVJ2o_lrDQWXN-x2aPK_Ifg,7900
650
- tapps_agents/workflow/audit_logger.py,sha256=jqVbHcPpJ9PaZARl70gx1J1e07th18asWayDVmrEBbs,8236
651
- tapps_agents/workflow/auto_execution_config.py,sha256=iJGzSaitKNlqFk28oA4G5P431OPvfUmgPqVC2zOZOXg,12473
652
- tapps_agents/workflow/auto_progression.py,sha256=5E59tXYGv6vzG0nuHlqOpLNWxj2ywKgD4HrGpI_g_r4,21886
653
- tapps_agents/workflow/branch_cleanup.py,sha256=Ws3YAgasqrxRcbB8CJ0mXmFqyDhtTsIShes46awI9fU,11790
654
- tapps_agents/workflow/checkpoint.py,sha256=-0Jemggen567bJ6eMQB9VPcWpxwrr-Cz1D358jmWc74,8556
655
- tapps_agents/workflow/checkpoint_manager.py,sha256=hx_VZjoBIhdsn9XSdnBY5rzNShxgoPJ85JL8y8CJLpE,5633
656
- tapps_agents/workflow/code_artifact.py,sha256=d6R33dhoHmS2m0Rv2qAmnwLC-TJMyA8keHm-Qcx01Yw,6262
657
- tapps_agents/workflow/common_enums.py,sha256=P6-cjHhWEWXnJ3-6mtYhJsSZO5qK_1bRe_Y9V658jFw,2362
658
- tapps_agents/workflow/confirmation_handler.py,sha256=iH6WCI08pDin5FBztzMYgRMWaO3WIh-XVmgW055SR3Q,4285
659
- tapps_agents/workflow/context_analyzer.py,sha256=-Nxq8okaqQD1rTAsOtNy0BNN_AcMQweM6KCxV8S6j34,8455
660
- tapps_agents/workflow/context_artifact.py,sha256=ps8sZgMXIemKNK1nADxpHfi5NQdFIVtmDMp48jDb5rI,8125
661
- tapps_agents/workflow/cursor_chat.py,sha256=e_2eXbr3yFYRdnu9iYcWIsuRgubd5-R68DsJrFN9buU,3180
662
- tapps_agents/workflow/cursor_executor.py,sha256=9wbMDAX4k18OVdGQYvPmd8IYS6Sxt2La18Pqo8tBWjQ,93712
663
- tapps_agents/workflow/cursor_skill_helper.py,sha256=QZCNCIBpwdZiP5piH9qB2l3Fseh4bMulCg8QcHyAfVA,19481
664
- tapps_agents/workflow/dependency_resolver.py,sha256=f_2a0uUBADHPEgNvdOdA-tCs-qYXwKyMkbvep2mwlrI,8923
665
- tapps_agents/workflow/design_artifact.py,sha256=HgEyNndiItMBPTTalOtiUrB600LF3EwwIL557034w7k,5510
666
- tapps_agents/workflow/detector.py,sha256=bvOrTPT2TS08e6sA05szm22oyipLpJx5oKc6Ca_SO_4,27923
667
- tapps_agents/workflow/direct_execution_fallback.py,sha256=CT-wYMicXc5FEz38DtXUt8XD0tBIHPTXasyVkVFi4TU,11650
668
- tapps_agents/workflow/docs_artifact.py,sha256=7NNlLEfFkvjIvxLhZAIdpdieC5oPsZElTPflFzA-S_k,5702
669
- tapps_agents/workflow/durable_state.py,sha256=qGjVp5FXSQsKuLtBBWlwwyo9CbKKjU1OwS1jBmDMjJY,24882
670
- tapps_agents/workflow/enforcer.py,sha256=2FAUd1_utDbOM2F3YRoM4F2u7M-bzHLMCDDS-mdy-xo,15208
671
- tapps_agents/workflow/enhancement_artifact.py,sha256=wHdmIJT6i7KO39rTibO5ehVIMbMmya63AyyRqqLTCGM,4830
672
- tapps_agents/workflow/error_recovery.py,sha256=E4yW9W4rmCmXawnogi6IwjNyxsy6uAdohoqLZgsiNOM,29493
673
- tapps_agents/workflow/event_bus.py,sha256=gl0aiK35xMJOUhISV6n_1SJTDxarrZIyflfcRVX-fkM,5870
674
- tapps_agents/workflow/event_log.py,sha256=P_nVZDZ_rZynoQEYbmf_rUJ3p5VPs2DJy1nt8aiOaCY,23086
675
- tapps_agents/workflow/events.py,sha256=icT-Yq6XVtzuV6vHBnac4RQyIabo7d5dOmPi7BNZT1s,1851
676
- tapps_agents/workflow/exceptions.py,sha256=KDBxJO21ocmXkdB5Fooun2kKq9TQl7wSM_tWsf1srZA,995
677
- tapps_agents/workflow/execution_graph.py,sha256=R47yVto6Zv3cBMSi3X4goZu1s77U9yT69GUbIy3bwts,17569
678
- tapps_agents/workflow/execution_metrics.py,sha256=nvftWr2DIUOm76d7zJLJcMD8m9T9LJRNaAYkZ90lDf8,11714
679
- tapps_agents/workflow/execution_plan.py,sha256=Qq7NImcI288ksPsK_rvHvH7hh4DUEjmDQdzHunp_WHc,4389
680
- tapps_agents/workflow/executor.py,sha256=bXlsLL_0KzMK7t3uqNQFOSm_bf7vQcxBK3JG996LIUY,90845
681
- tapps_agents/workflow/file_utils.py,sha256=dRJDRxPRPLpW9_YKtaUUCAKEhfxHBbysK6kMXQPVXaw,5744
682
- tapps_agents/workflow/gate_evaluator.py,sha256=3LnJ1lnYtnC5tjt9c28kN8-KMr9VIPk54xA0Bd06yvY,6349
683
- tapps_agents/workflow/gate_integration.py,sha256=b3LqtDNBYem_gYHi9caFTzPqvCrdma04UfyWuXE09XU,6823
684
- tapps_agents/workflow/graph_visualizer.py,sha256=Iqm7DjB4phc83aFzhYw99gwdXVsU6RnJlTKTcMqH7Z8,3816
685
- tapps_agents/workflow/health_checker.py,sha256=_9LaUWQA5aWjlVUNCOGMmohJ2eNcE-K62GjWUSvGxJY,7367
686
- tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMrGSSTAwNmKkU,20538
687
- tapps_agents/workflow/logging_helper.py,sha256=x38gDL_ZdlQMnSoIb8aPSVc2hgCj8cgMSzua8o0Rplc,8982
688
- tapps_agents/workflow/manifest.py,sha256=D5v3E-fBoD0dEK5BNDj_VmVdJmUoT7rCQrJQSygeWRg,20341
689
- tapps_agents/workflow/marker_writer.py,sha256=2uaP86Fwm_QUPjqRCUdJcNlrHEAD6P7PRJBGpqUhxMo,8325
690
- tapps_agents/workflow/message_formatter.py,sha256=Pl5u_D7TGL1JVTgw6E6EPzCEt-IB9ayKgm-VHJJAUwU,6112
691
- tapps_agents/workflow/messaging.py,sha256=fzVDP7vvQXjJG3AGTS1mp1GiBPaK_NzkPNlxCWxfJ6A,11547
692
- tapps_agents/workflow/metadata_models.py,sha256=xsigrFQgIgFzLJn7qwCa242w49iEv-QwIrFGkGzL0Zg,2954
693
- tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
694
- tapps_agents/workflow/metrics_integration.py,sha256=NXhbw77zrS4X0xE61hCCNLt4lucfadKH1dSjANYowYI,7511
695
- tapps_agents/workflow/migration_utils.py,sha256=46kMrHV3yxujDpcDxtPytg9aL7N_BPRch1bEUIP_Ahc,3877
696
- tapps_agents/workflow/models.py,sha256=1lDPzWaKDEqfVNjRe20fSfe892nPvpLrItb85nFLfWk,2959
697
- tapps_agents/workflow/nlp_config.py,sha256=KesPjPzDfBa3WnnWT5IRkaNzzLbS4MLfr5UqdmTkYSI,6790
698
- tapps_agents/workflow/nlp_error_handler.py,sha256=Kgdu1XrPFiHTTJ3WctbaezsBP4v4DwfSO7Nc6BSEdKo,7352
699
- tapps_agents/workflow/nlp_executor.py,sha256=IiWv4ybBHWtccn0rN8Tp0ckpVVMdRA4V0DmiV_VbkFE,6806
700
- tapps_agents/workflow/nlp_parser.py,sha256=BVHnqD65Wocax0pO7HfD3uPKm0mVBInAJm5KnWzrCc8,19431
701
- tapps_agents/workflow/observability_dashboard.py,sha256=-0zCZzoa05aOfLutHfspSOZklyaE81trgKPUPNiItNM,16925
702
- tapps_agents/workflow/observer.py,sha256=aMIVdw4mVEWz7yKF4XDPQgehz4wo_W2SxNn58G16uwo,6049
703
- tapps_agents/workflow/ops_artifact.py,sha256=i5-Uiw-n5iAuXZCErHJ6d5_C-oD4PUsS_JBiWB6xc4w,9277
704
- tapps_agents/workflow/output_passing.py,sha256=Rc4gha7EWfLUfB70gE127Nhk3xlGwjZgp_5ZebiWNKI,7422
705
- tapps_agents/workflow/parallel_executor.py,sha256=DkudB_w-4GzE2Pr-fsFtUWFwIVP8rGYWXGLENUCniGY,18900
706
- tapps_agents/workflow/parser.py,sha256=r2T9XGhzY6iyzLBKxDAcmYHqthD_uZ0rKwza_1HExWs,15258
707
- tapps_agents/workflow/planning_artifact.py,sha256=yRXnm6KQ4iVVoy22jlo4G175ltHxzHcei2nzKn6da6Q,6438
708
- tapps_agents/workflow/preset_loader.py,sha256=QbTAciaqX_gqWsDoKWu8ILc0f7dTwopgHZIudPUdv88,11242
709
- tapps_agents/workflow/preset_recommender.py,sha256=XkFwfuFov2wYw5J_m70Mz38NP1OUAjLke7y6qDJR1X0,8708
710
- tapps_agents/workflow/progress_logger.py,sha256=JHZ7WLg57g4IOSa-OGQrzSfpU_lRAevS7aOqIZfinhQ,4755
711
- tapps_agents/workflow/progress_manager.py,sha256=jst8coRDsvrDo7ovF4u7lMihKPSg70DpCUJtJYBCK20,10501
712
- tapps_agents/workflow/progress_monitor.py,sha256=dSLkMdi9I9Ln6Hft-yElWQSs8IJJY6Ya1JsBElKZtKQ,6806
713
- tapps_agents/workflow/progress_updates.py,sha256=zdLHAx5Zjlo4ApMMiLmHYObwl9ZFb5GrEX7WPZ7C8jk,14115
714
- tapps_agents/workflow/quality_artifact.py,sha256=pmhMXtu7xaHxQPSisx3GTJlDhoUHVJWP4B-12K4yfus,5264
715
- tapps_agents/workflow/quality_loopback.py,sha256=q9OzzRHBzl5WsyY7RzLj_XMAtbMkBLoDj52BArHaV-I,3519
716
- tapps_agents/workflow/recommender.py,sha256=i4i_qKxYvADBVuXil53WmJp-bRNCwTjh2S_lwL2u4yM,15803
717
- tapps_agents/workflow/remediation_loop.py,sha256=DoLsfE5ncxuBXvieYaCFAYbFx1grdkNuxPxzWXY_wb0,5522
718
- tapps_agents/workflow/result_aggregator.py,sha256=R-ZDVT0XPfqJP4Qyt8Y12MpG3U9419YONxWADm6_IS4,11208
719
- tapps_agents/workflow/review_artifact.py,sha256=eU8udcTP4aFYXEYxFXsp-Z3YmPBwK981GSNe2Sd2LUY,6786
720
- tapps_agents/workflow/rules_generator.py,sha256=aYfG8PMf56CIlm5uPk47A05vuB59X-eLGPeg0J9_ptg,13366
721
- tapps_agents/workflow/schema_validator.py,sha256=RLQLg1JEYjjIaY5vZWMLwNXJm-dsPMadPYMqdzaN-lw,18870
722
- tapps_agents/workflow/session_handoff.py,sha256=mPQPxVAgyjdgok0RZvasR147jFRciV2vAHZ4DBwNFk8,5546
723
- tapps_agents/workflow/skill_invoker.py,sha256=cBOHHA8NfVLuTmYla5jLZFTvwJRFxH4u4ZwsnJAdlLM,24766
724
- tapps_agents/workflow/state_manager.py,sha256=ErIMcHABDmQTm6bSbLjotjV6FHx4kON6eudXWJfV_MI,30367
725
- tapps_agents/workflow/state_persistence_config.py,sha256=6flU4p61PIIOIkmEHqY1rCfqsXD1P8siUzItKhtPRRA,12701
726
- tapps_agents/workflow/status_monitor.py,sha256=xA_p3RblPQfhQbWWobrPRjjsd0ccwKYP-cH9XBws7XA,18256
727
- tapps_agents/workflow/step_checkpoint.py,sha256=LDNTEAwW96suyzFozeSrwkdghXhtwh-FRzhbVlKjHqw,10063
728
- tapps_agents/workflow/step_details.py,sha256=PjGHpbQ1lqJaK2lDtkUV_rRUYfgcPOBGMwSqjONS88M,5752
729
- tapps_agents/workflow/story_models.py,sha256=--BZKDhGw26QvJinvsUkWoIzzVzi3kFb8LLT5mzzIgs,4889
730
- tapps_agents/workflow/streaming.py,sha256=txpMV45FSwTRl947cOV9vOH0m-OS_EFCNq12LEN4Pfg,14952
731
- tapps_agents/workflow/suggestion_engine.py,sha256=bCjcUcjobyzRKCq_EjI3_BMKxlIgFcA9LWNyoq3x2Mo,21214
732
- tapps_agents/workflow/testing_artifact.py,sha256=MLOo3Qrs6Rs8rKGrolYA8PA4acm6OcNCEgOXnmRSJqM,6076
733
- tapps_agents/workflow/timeline.py,sha256=Lyr_Sujxx3fNGSe72cRmNl1rsKj_97dQpCccLgBChT8,5571
734
- tapps_agents/workflow/token_integration.py,sha256=XeBJbgU4Nog9GUgCnPcKjAdi-s9eNo4Dd28mTJs7hTk,7347
735
- tapps_agents/workflow/validation.py,sha256=E7yxTF46o9V1Yqyqngo6OpPN0YbH9FpViMaNMEfJ5kc,7951
736
- tapps_agents/workflow/visual_feedback.py,sha256=bgoRLHQhub5-_OX1Rzztyzzy2wknQUcMWl_q0rVwOPs,13876
737
- tapps_agents/workflow/workflow_chain.py,sha256=pa0Ke1R-wGl585UR5e0_v37MBSJn4A_zPFDATaOPNgg,3129
738
- tapps_agents/workflow/workflow_summary.py,sha256=vzXkUh8gfRSg9aeYALRBrkVQzQyIkm9w0NzkwTxwwAw,7336
739
- tapps_agents/workflow/worktree_manager.py,sha256=SbDC1shbqiskKpfM85lf5O8E3YDQS748hxNKKVa_Gg8,25778
740
- tapps_agents/workflow/agent_handlers/__init__.py,sha256=65FhD8HKxCnUVwm8rHYih2VKRw7RI1bMfR-uPq5DmCc,1245
741
- tapps_agents/workflow/agent_handlers/analyst_handler.py,sha256=Ie0QR5TWF3A931WNdi0Jw8jKjVChDLNYj8cGXqyxozw,2551
742
- tapps_agents/workflow/agent_handlers/architect_handler.py,sha256=jtBqXJbF8G9JROe_hKZPVs9bEv5bQxQTvCSafnPehMY,4109
743
- tapps_agents/workflow/agent_handlers/base.py,sha256=rVdSmxmFg0K7frE3RKfFYE0fCIjH903nEWOCuXhk3Vs,2288
744
- tapps_agents/workflow/agent_handlers/debugger_handler.py,sha256=CUPjYAO6Xb78LcI2FsqDOSW2KH1JNIBZ5hEncXabwRo,3240
745
- tapps_agents/workflow/agent_handlers/designer_handler.py,sha256=6dEwyn1GZty-kAGgSC0XSnjJZc0VEoKnTfTTh08zl8U,3954
746
- tapps_agents/workflow/agent_handlers/documenter_handler.py,sha256=AC4r6gdahCrLZOYtf59l9VsXVe_TLC_C6YtNifL0kqw,3293
747
- tapps_agents/workflow/agent_handlers/enhancer_handler.py,sha256=FYny7CpHZ4ERxFmomsTZg_Jj3k-mtjmQOXhlRiWiARU,4775
748
- tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=kiX7Jd-zZMfskw20ND9w6DMhtTDv8fjCfbOoBGmerP4,9686
749
- tapps_agents/workflow/agent_handlers/ops_handler.py,sha256=gQpN9qSN6HA-evAhFv87RYC6FD0UERkuvQA0A5EL1Aw,1821
750
- tapps_agents/workflow/agent_handlers/orchestrator_handler.py,sha256=AWV3Khqlp41teNo6HjJSLnn21zm1EkJSzM7sQ0ZgFgA,1280
751
- tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=9oVSsA6Lso5NncYPS4Yn-iEhc5QBGlo7uL89JrmAgls,3449
752
- tapps_agents/workflow/agent_handlers/registry.py,sha256=aYMU59da4SBgDgqMy4Basu1yL8CvDvdi929n6XM50ro,3613
753
- tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=D4spVUk4l9mJsSsDIKC88EL-2k43YObNz5v439EtDRc,4285
754
- tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=e44Eqn1CIpcqYqCrjaTK748yb4k7PlzGdK9zSne-SfY,2249
755
- tapps_agents-3.5.40.dist-info/licenses/LICENSE,sha256=xwT0RCg0KluJ63lZcgkSOiYkpEIEXYlIGqRtkGGsPe0,1085
756
- tapps_agents-3.5.40.dist-info/METADATA,sha256=jkhzTrjCsNOgFVIFPZwvARmAQ7EstqhNdZYHtMcUrWU,41413
757
- tapps_agents-3.5.40.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
758
- tapps_agents-3.5.40.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
759
- tapps_agents-3.5.40.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
760
- tapps_agents-3.5.40.dist-info/RECORD,,