tapps-agents 3.6.0__py3-none-any.whl → 3.6.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (815) 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/service_discovery.py +534 -534
  69. tapps_agents/agents/reviewer/tools/parallel_executor.py +581 -581
  70. tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -250
  71. tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -284
  72. tapps_agents/agents/reviewer/typescript_scorer.py +1142 -1142
  73. tapps_agents/agents/reviewer/validation.py +208 -208
  74. tapps_agents/agents/reviewer/websocket_validator.py +132 -132
  75. tapps_agents/agents/tester/__init__.py +7 -7
  76. tapps_agents/agents/tester/accessibility_auditor.py +309 -309
  77. tapps_agents/agents/tester/agent.py +1080 -1080
  78. tapps_agents/agents/tester/batch_generator.py +54 -54
  79. tapps_agents/agents/tester/context_learner.py +51 -51
  80. tapps_agents/agents/tester/coverage_analyzer.py +386 -386
  81. tapps_agents/agents/tester/coverage_test_generator.py +290 -290
  82. tapps_agents/agents/tester/debug_enhancer.py +238 -238
  83. tapps_agents/agents/tester/device_emulator.py +241 -241
  84. tapps_agents/agents/tester/integration_generator.py +62 -62
  85. tapps_agents/agents/tester/network_recorder.py +300 -300
  86. tapps_agents/agents/tester/performance_monitor.py +320 -320
  87. tapps_agents/agents/tester/test_fixer.py +316 -316
  88. tapps_agents/agents/tester/test_generator.py +632 -632
  89. tapps_agents/agents/tester/trace_manager.py +234 -234
  90. tapps_agents/agents/tester/visual_regression.py +291 -291
  91. tapps_agents/analysis/pattern_detector.py +36 -36
  92. tapps_agents/beads/hydration.py +213 -213
  93. tapps_agents/beads/parse.py +32 -32
  94. tapps_agents/beads/specs.py +206 -206
  95. tapps_agents/cli/__init__.py +9 -9
  96. tapps_agents/cli/__main__.py +8 -8
  97. tapps_agents/cli/base.py +478 -478
  98. tapps_agents/cli/command_classifier.py +72 -72
  99. tapps_agents/cli/commands/__init__.py +2 -2
  100. tapps_agents/cli/commands/analyst.py +173 -173
  101. tapps_agents/cli/commands/architect.py +109 -109
  102. tapps_agents/cli/commands/cleanup_agent.py +92 -92
  103. tapps_agents/cli/commands/common.py +126 -126
  104. tapps_agents/cli/commands/debugger.py +90 -90
  105. tapps_agents/cli/commands/designer.py +112 -112
  106. tapps_agents/cli/commands/documenter.py +136 -136
  107. tapps_agents/cli/commands/enhancer.py +110 -110
  108. tapps_agents/cli/commands/evaluator.py +255 -255
  109. tapps_agents/cli/commands/implementer.py +301 -301
  110. tapps_agents/cli/commands/improver.py +91 -91
  111. tapps_agents/cli/commands/knowledge.py +111 -111
  112. tapps_agents/cli/commands/learning.py +172 -172
  113. tapps_agents/cli/commands/observability.py +283 -283
  114. tapps_agents/cli/commands/ops.py +135 -135
  115. tapps_agents/cli/commands/orchestrator.py +116 -116
  116. tapps_agents/cli/commands/planner.py +237 -237
  117. tapps_agents/cli/commands/reviewer.py +1872 -1872
  118. tapps_agents/cli/commands/status.py +285 -285
  119. tapps_agents/cli/commands/task.py +227 -227
  120. tapps_agents/cli/commands/tester.py +191 -191
  121. tapps_agents/cli/feedback.py +936 -936
  122. tapps_agents/cli/formatters.py +608 -608
  123. tapps_agents/cli/help/__init__.py +7 -7
  124. tapps_agents/cli/help/static_help.py +425 -425
  125. tapps_agents/cli/network_detection.py +110 -110
  126. tapps_agents/cli/output_compactor.py +274 -274
  127. tapps_agents/cli/parsers/__init__.py +2 -2
  128. tapps_agents/cli/parsers/analyst.py +186 -186
  129. tapps_agents/cli/parsers/architect.py +167 -167
  130. tapps_agents/cli/parsers/cleanup_agent.py +228 -228
  131. tapps_agents/cli/parsers/debugger.py +116 -116
  132. tapps_agents/cli/parsers/designer.py +182 -182
  133. tapps_agents/cli/parsers/documenter.py +134 -134
  134. tapps_agents/cli/parsers/enhancer.py +113 -113
  135. tapps_agents/cli/parsers/evaluator.py +213 -213
  136. tapps_agents/cli/parsers/implementer.py +168 -168
  137. tapps_agents/cli/parsers/improver.py +132 -132
  138. tapps_agents/cli/parsers/ops.py +159 -159
  139. tapps_agents/cli/parsers/orchestrator.py +98 -98
  140. tapps_agents/cli/parsers/planner.py +145 -145
  141. tapps_agents/cli/parsers/reviewer.py +462 -462
  142. tapps_agents/cli/parsers/tester.py +124 -124
  143. tapps_agents/cli/progress_heartbeat.py +254 -254
  144. tapps_agents/cli/streaming_progress.py +336 -336
  145. tapps_agents/cli/utils/__init__.py +6 -6
  146. tapps_agents/cli/utils/agent_lifecycle.py +48 -48
  147. tapps_agents/cli/utils/error_formatter.py +82 -82
  148. tapps_agents/cli/utils/error_recovery.py +188 -188
  149. tapps_agents/cli/utils/output_handler.py +59 -59
  150. tapps_agents/cli/utils/prompt_enhancer.py +319 -319
  151. tapps_agents/cli/validators/__init__.py +9 -9
  152. tapps_agents/cli/validators/command_validator.py +81 -81
  153. tapps_agents/context7/__init__.py +112 -112
  154. tapps_agents/context7/agent_integration.py +869 -869
  155. tapps_agents/context7/analytics.py +382 -382
  156. tapps_agents/context7/analytics_dashboard.py +299 -299
  157. tapps_agents/context7/async_cache.py +681 -681
  158. tapps_agents/context7/backup_client.py +958 -958
  159. tapps_agents/context7/cache_locking.py +194 -194
  160. tapps_agents/context7/cache_metadata.py +214 -214
  161. tapps_agents/context7/cache_prewarm.py +488 -488
  162. tapps_agents/context7/cache_structure.py +168 -168
  163. tapps_agents/context7/cache_warming.py +604 -604
  164. tapps_agents/context7/circuit_breaker.py +376 -376
  165. tapps_agents/context7/cleanup.py +461 -461
  166. tapps_agents/context7/commands.py +858 -858
  167. tapps_agents/context7/credential_validation.py +276 -276
  168. tapps_agents/context7/cross_reference_resolver.py +168 -168
  169. tapps_agents/context7/cross_references.py +424 -424
  170. tapps_agents/context7/doc_manager.py +225 -225
  171. tapps_agents/context7/fuzzy_matcher.py +369 -369
  172. tapps_agents/context7/kb_cache.py +404 -404
  173. tapps_agents/context7/language_detector.py +219 -219
  174. tapps_agents/context7/library_detector.py +725 -725
  175. tapps_agents/context7/lookup.py +738 -738
  176. tapps_agents/context7/metadata.py +258 -258
  177. tapps_agents/context7/refresh_queue.py +300 -300
  178. tapps_agents/context7/security.py +373 -373
  179. tapps_agents/context7/staleness_policies.py +278 -278
  180. tapps_agents/context7/tiles_integration.py +47 -47
  181. tapps_agents/continuous_bug_fix/__init__.py +20 -20
  182. tapps_agents/continuous_bug_fix/bug_finder.py +306 -306
  183. tapps_agents/continuous_bug_fix/bug_fix_coordinator.py +177 -177
  184. tapps_agents/continuous_bug_fix/commit_manager.py +178 -178
  185. tapps_agents/continuous_bug_fix/continuous_bug_fixer.py +322 -322
  186. tapps_agents/continuous_bug_fix/proactive_bug_finder.py +285 -285
  187. tapps_agents/core/__init__.py +298 -298
  188. tapps_agents/core/adaptive_cache_config.py +432 -432
  189. tapps_agents/core/agent_base.py +647 -647
  190. tapps_agents/core/agent_cache.py +466 -466
  191. tapps_agents/core/agent_learning.py +1865 -1865
  192. tapps_agents/core/analytics_dashboard.py +563 -563
  193. tapps_agents/core/analytics_enhancements.py +597 -597
  194. tapps_agents/core/anonymization.py +274 -274
  195. tapps_agents/core/ast_parser.py +228 -228
  196. tapps_agents/core/async_file_ops.py +402 -402
  197. tapps_agents/core/best_practice_consultant.py +299 -299
  198. tapps_agents/core/brownfield_analyzer.py +299 -299
  199. tapps_agents/core/brownfield_review.py +541 -541
  200. tapps_agents/core/browser_controller.py +513 -513
  201. tapps_agents/core/capability_registry.py +418 -418
  202. tapps_agents/core/change_impact_analyzer.py +190 -190
  203. tapps_agents/core/checkpoint_manager.py +377 -377
  204. tapps_agents/core/code_generator.py +329 -329
  205. tapps_agents/core/code_validator.py +276 -276
  206. tapps_agents/core/command_registry.py +327 -327
  207. tapps_agents/core/context_gathering/__init__.py +2 -2
  208. tapps_agents/core/context_gathering/repository_explorer.py +28 -28
  209. tapps_agents/core/context_intelligence/__init__.py +2 -2
  210. tapps_agents/core/context_intelligence/relevance_scorer.py +24 -24
  211. tapps_agents/core/context_intelligence/token_budget_manager.py +27 -27
  212. tapps_agents/core/context_manager.py +240 -240
  213. tapps_agents/core/cursor_feedback_monitor.py +146 -146
  214. tapps_agents/core/cursor_verification.py +290 -290
  215. tapps_agents/core/customization_loader.py +280 -280
  216. tapps_agents/core/customization_schema.py +260 -260
  217. tapps_agents/core/customization_template.py +238 -238
  218. tapps_agents/core/debug_logger.py +124 -124
  219. tapps_agents/core/design_validator.py +298 -298
  220. tapps_agents/core/diagram_generator.py +226 -226
  221. tapps_agents/core/docker_utils.py +232 -232
  222. tapps_agents/core/document_generator.py +617 -617
  223. tapps_agents/core/domain_detector.py +30 -30
  224. tapps_agents/core/error_envelope.py +454 -454
  225. tapps_agents/core/error_handler.py +270 -270
  226. tapps_agents/core/estimation_tracker.py +189 -189
  227. tapps_agents/core/eval_prompt_engine.py +116 -116
  228. tapps_agents/core/evaluation_base.py +119 -119
  229. tapps_agents/core/evaluation_models.py +320 -320
  230. tapps_agents/core/evaluation_orchestrator.py +225 -225
  231. tapps_agents/core/evaluators/__init__.py +7 -7
  232. tapps_agents/core/evaluators/architectural_evaluator.py +205 -205
  233. tapps_agents/core/evaluators/behavioral_evaluator.py +160 -160
  234. tapps_agents/core/evaluators/performance_profile_evaluator.py +160 -160
  235. tapps_agents/core/evaluators/security_posture_evaluator.py +148 -148
  236. tapps_agents/core/evaluators/spec_compliance_evaluator.py +181 -181
  237. tapps_agents/core/exceptions.py +107 -107
  238. tapps_agents/core/expert_config_generator.py +293 -293
  239. tapps_agents/core/export_schema.py +202 -202
  240. tapps_agents/core/external_feedback_models.py +102 -102
  241. tapps_agents/core/external_feedback_storage.py +213 -213
  242. tapps_agents/core/fallback_strategy.py +314 -314
  243. tapps_agents/core/feedback_analyzer.py +162 -162
  244. tapps_agents/core/feedback_collector.py +178 -178
  245. tapps_agents/core/git_operations.py +445 -445
  246. tapps_agents/core/hardware_profiler.py +151 -151
  247. tapps_agents/core/instructions.py +324 -324
  248. tapps_agents/core/io_guardrails.py +69 -69
  249. tapps_agents/core/issue_manifest.py +249 -249
  250. tapps_agents/core/issue_schema.py +139 -139
  251. tapps_agents/core/json_utils.py +128 -128
  252. tapps_agents/core/knowledge_graph.py +446 -446
  253. tapps_agents/core/language_detector.py +296 -296
  254. tapps_agents/core/learning_confidence.py +242 -242
  255. tapps_agents/core/learning_dashboard.py +246 -246
  256. tapps_agents/core/learning_decision.py +384 -384
  257. tapps_agents/core/learning_explainability.py +578 -578
  258. tapps_agents/core/learning_export.py +287 -287
  259. tapps_agents/core/learning_integration.py +228 -228
  260. tapps_agents/core/llm_behavior.py +232 -232
  261. tapps_agents/core/long_duration_support.py +786 -786
  262. tapps_agents/core/mcp_setup.py +106 -106
  263. tapps_agents/core/memory_integration.py +396 -396
  264. tapps_agents/core/meta_learning.py +666 -666
  265. tapps_agents/core/module_path_sanitizer.py +199 -199
  266. tapps_agents/core/multi_agent_orchestrator.py +382 -382
  267. tapps_agents/core/network_errors.py +125 -125
  268. tapps_agents/core/nfr_validator.py +336 -336
  269. tapps_agents/core/offline_mode.py +158 -158
  270. tapps_agents/core/output_contracts.py +300 -300
  271. tapps_agents/core/output_formatter.py +300 -300
  272. tapps_agents/core/path_normalizer.py +174 -174
  273. tapps_agents/core/path_validator.py +322 -322
  274. tapps_agents/core/pattern_library.py +250 -250
  275. tapps_agents/core/performance_benchmark.py +301 -301
  276. tapps_agents/core/performance_monitor.py +184 -184
  277. tapps_agents/core/playwright_mcp_controller.py +771 -771
  278. tapps_agents/core/policy_loader.py +135 -135
  279. tapps_agents/core/progress.py +166 -166
  280. tapps_agents/core/project_profile.py +354 -354
  281. tapps_agents/core/project_type_detector.py +454 -454
  282. tapps_agents/core/prompt_base.py +223 -223
  283. tapps_agents/core/prompt_learning/__init__.py +2 -2
  284. tapps_agents/core/prompt_learning/learning_loop.py +24 -24
  285. tapps_agents/core/prompt_learning/project_prompt_store.py +25 -25
  286. tapps_agents/core/prompt_learning/skills_prompt_analyzer.py +35 -35
  287. tapps_agents/core/prompt_optimization/__init__.py +6 -6
  288. tapps_agents/core/prompt_optimization/ab_tester.py +114 -114
  289. tapps_agents/core/prompt_optimization/correlation_analyzer.py +160 -160
  290. tapps_agents/core/prompt_optimization/progressive_refiner.py +129 -129
  291. tapps_agents/core/prompt_optimization/prompt_library.py +37 -37
  292. tapps_agents/core/requirements_evaluator.py +431 -431
  293. tapps_agents/core/resource_aware_executor.py +449 -449
  294. tapps_agents/core/resource_monitor.py +343 -343
  295. tapps_agents/core/resume_handler.py +298 -298
  296. tapps_agents/core/retry_handler.py +197 -197
  297. tapps_agents/core/review_checklists.py +479 -479
  298. tapps_agents/core/role_loader.py +201 -201
  299. tapps_agents/core/role_template_loader.py +201 -201
  300. tapps_agents/core/runtime_mode.py +60 -60
  301. tapps_agents/core/security_scanner.py +342 -342
  302. tapps_agents/core/skill_agent_registry.py +194 -194
  303. tapps_agents/core/skill_integration.py +208 -208
  304. tapps_agents/core/skill_loader.py +492 -492
  305. tapps_agents/core/skill_template.py +341 -341
  306. tapps_agents/core/skill_validator.py +478 -478
  307. tapps_agents/core/stack_analyzer.py +35 -35
  308. tapps_agents/core/startup.py +174 -174
  309. tapps_agents/core/storage_manager.py +397 -397
  310. tapps_agents/core/storage_models.py +166 -166
  311. tapps_agents/core/story_evaluator.py +410 -410
  312. tapps_agents/core/subprocess_utils.py +170 -170
  313. tapps_agents/core/task_duration.py +296 -296
  314. tapps_agents/core/task_memory.py +582 -582
  315. tapps_agents/core/task_state.py +226 -226
  316. tapps_agents/core/tech_stack_priorities.py +208 -208
  317. tapps_agents/core/temp_directory.py +194 -194
  318. tapps_agents/core/template_merger.py +600 -600
  319. tapps_agents/core/template_selector.py +280 -280
  320. tapps_agents/core/test_generator.py +286 -286
  321. tapps_agents/core/tiered_context.py +253 -253
  322. tapps_agents/core/token_monitor.py +345 -345
  323. tapps_agents/core/traceability.py +254 -254
  324. tapps_agents/core/trajectory_tracker.py +50 -50
  325. tapps_agents/core/unicode_safe.py +143 -143
  326. tapps_agents/core/unified_cache_config.py +170 -170
  327. tapps_agents/core/unified_state.py +324 -324
  328. tapps_agents/core/validate_cursor_setup.py +237 -237
  329. tapps_agents/core/validation_registry.py +136 -136
  330. tapps_agents/core/validators/__init__.py +4 -4
  331. tapps_agents/core/validators/python_validator.py +87 -87
  332. tapps_agents/core/verification_agent.py +90 -90
  333. tapps_agents/core/visual_feedback.py +644 -644
  334. tapps_agents/core/workflow_validator.py +197 -197
  335. tapps_agents/core/worktree.py +367 -367
  336. tapps_agents/docker/__init__.py +10 -10
  337. tapps_agents/docker/analyzer.py +186 -186
  338. tapps_agents/docker/debugger.py +229 -229
  339. tapps_agents/docker/error_patterns.py +216 -216
  340. tapps_agents/epic/__init__.py +22 -22
  341. tapps_agents/epic/beads_sync.py +115 -115
  342. tapps_agents/epic/markdown_sync.py +105 -105
  343. tapps_agents/epic/models.py +96 -96
  344. tapps_agents/experts/__init__.py +163 -163
  345. tapps_agents/experts/agent_integration.py +243 -243
  346. tapps_agents/experts/auto_generator.py +331 -331
  347. tapps_agents/experts/base_expert.py +536 -536
  348. tapps_agents/experts/builtin_registry.py +261 -261
  349. tapps_agents/experts/business_metrics.py +565 -565
  350. tapps_agents/experts/cache.py +266 -266
  351. tapps_agents/experts/confidence_breakdown.py +306 -306
  352. tapps_agents/experts/confidence_calculator.py +336 -336
  353. tapps_agents/experts/confidence_metrics.py +236 -236
  354. tapps_agents/experts/domain_config.py +311 -311
  355. tapps_agents/experts/domain_detector.py +550 -550
  356. tapps_agents/experts/domain_utils.py +84 -84
  357. tapps_agents/experts/expert_config.py +113 -113
  358. tapps_agents/experts/expert_engine.py +465 -465
  359. tapps_agents/experts/expert_registry.py +744 -744
  360. tapps_agents/experts/expert_synthesizer.py +70 -70
  361. tapps_agents/experts/governance.py +197 -197
  362. tapps_agents/experts/history_logger.py +312 -312
  363. tapps_agents/experts/knowledge/README.md +180 -180
  364. tapps_agents/experts/knowledge/accessibility/accessible-forms.md +331 -331
  365. tapps_agents/experts/knowledge/accessibility/aria-patterns.md +344 -344
  366. tapps_agents/experts/knowledge/accessibility/color-contrast.md +285 -285
  367. tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md +332 -332
  368. tapps_agents/experts/knowledge/accessibility/screen-readers.md +282 -282
  369. tapps_agents/experts/knowledge/accessibility/semantic-html.md +355 -355
  370. tapps_agents/experts/knowledge/accessibility/testing-accessibility.md +369 -369
  371. tapps_agents/experts/knowledge/accessibility/wcag-2.1.md +296 -296
  372. tapps_agents/experts/knowledge/accessibility/wcag-2.2.md +211 -211
  373. tapps_agents/experts/knowledge/agent-learning/best-practices.md +715 -715
  374. tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md +282 -282
  375. tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md +320 -320
  376. tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md +90 -90
  377. tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md +260 -260
  378. tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md +309 -309
  379. tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +521 -521
  380. tapps_agents/experts/knowledge/api-design-integration/api-versioning.md +421 -421
  381. tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md +61 -61
  382. tapps_agents/experts/knowledge/api-design-integration/contract-testing.md +221 -221
  383. tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +489 -489
  384. tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md +360 -360
  385. tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md +262 -262
  386. tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md +582 -582
  387. tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md +499 -499
  388. tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md +455 -455
  389. tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md +507 -507
  390. tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md +618 -618
  391. tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md +480 -480
  392. tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md +175 -175
  393. tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md +261 -261
  394. tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md +222 -222
  395. tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md +122 -122
  396. tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md +153 -153
  397. tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md +285 -285
  398. tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md +187 -187
  399. tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md +253 -253
  400. tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md +155 -155
  401. tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md +200 -200
  402. tapps_agents/experts/knowledge/code-quality-analysis/README.md +16 -16
  403. tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md +137 -137
  404. tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md +181 -181
  405. tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md +191 -191
  406. tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md +313 -313
  407. tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md +255 -255
  408. tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md +282 -282
  409. tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md +275 -275
  410. tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md +297 -297
  411. tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md +383 -383
  412. tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md +285 -285
  413. tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md +344 -344
  414. tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md +385 -385
  415. tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md +280 -280
  416. tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md +164 -164
  417. tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md +182 -182
  418. tapps_agents/experts/knowledge/database-data-management/data-modeling.md +172 -172
  419. tapps_agents/experts/knowledge/database-data-management/database-design.md +187 -187
  420. tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md +342 -342
  421. tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md +432 -432
  422. tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md +442 -442
  423. tapps_agents/experts/knowledge/database-data-management/migration-strategies.md +216 -216
  424. tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md +259 -259
  425. tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md +184 -184
  426. tapps_agents/experts/knowledge/database-data-management/sql-optimization.md +175 -175
  427. tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md +444 -444
  428. tapps_agents/experts/knowledge/development-workflow/README.md +16 -16
  429. tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md +216 -216
  430. tapps_agents/experts/knowledge/development-workflow/build-strategies.md +198 -198
  431. tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md +205 -205
  432. tapps_agents/experts/knowledge/development-workflow/git-workflows.md +205 -205
  433. tapps_agents/experts/knowledge/documentation-knowledge-management/README.md +16 -16
  434. tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md +231 -231
  435. tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md +191 -191
  436. tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md +171 -171
  437. tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md +192 -192
  438. tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md +461 -461
  439. tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md +459 -459
  440. tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md +367 -367
  441. tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md +478 -478
  442. tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md +510 -510
  443. tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md +492 -492
  444. tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md +573 -573
  445. tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md +419 -419
  446. tapps_agents/experts/knowledge/performance/anti-patterns.md +284 -284
  447. tapps_agents/experts/knowledge/performance/api-performance.md +256 -256
  448. tapps_agents/experts/knowledge/performance/caching.md +327 -327
  449. tapps_agents/experts/knowledge/performance/database-performance.md +252 -252
  450. tapps_agents/experts/knowledge/performance/optimization-patterns.md +327 -327
  451. tapps_agents/experts/knowledge/performance/profiling.md +297 -297
  452. tapps_agents/experts/knowledge/performance/resource-management.md +293 -293
  453. tapps_agents/experts/knowledge/performance/scalability.md +306 -306
  454. tapps_agents/experts/knowledge/security/owasp-top10.md +209 -209
  455. tapps_agents/experts/knowledge/security/secure-coding-practices.md +207 -207
  456. tapps_agents/experts/knowledge/security/threat-modeling.md +220 -220
  457. tapps_agents/experts/knowledge/security/vulnerability-patterns.md +342 -342
  458. tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md +314 -314
  459. tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md +379 -379
  460. tapps_agents/experts/knowledge/software-architecture/service-communication.md +316 -316
  461. tapps_agents/experts/knowledge/testing/best-practices.md +310 -310
  462. tapps_agents/experts/knowledge/testing/coverage-analysis.md +293 -293
  463. tapps_agents/experts/knowledge/testing/mocking.md +256 -256
  464. tapps_agents/experts/knowledge/testing/test-automation.md +276 -276
  465. tapps_agents/experts/knowledge/testing/test-data.md +271 -271
  466. tapps_agents/experts/knowledge/testing/test-design-patterns.md +280 -280
  467. tapps_agents/experts/knowledge/testing/test-maintenance.md +236 -236
  468. tapps_agents/experts/knowledge/testing/test-strategies.md +311 -311
  469. tapps_agents/experts/knowledge/user-experience/information-architecture.md +325 -325
  470. tapps_agents/experts/knowledge/user-experience/interaction-design.md +363 -363
  471. tapps_agents/experts/knowledge/user-experience/prototyping.md +293 -293
  472. tapps_agents/experts/knowledge/user-experience/usability-heuristics.md +337 -337
  473. tapps_agents/experts/knowledge/user-experience/usability-testing.md +311 -311
  474. tapps_agents/experts/knowledge/user-experience/user-journeys.md +296 -296
  475. tapps_agents/experts/knowledge/user-experience/user-research.md +373 -373
  476. tapps_agents/experts/knowledge/user-experience/ux-principles.md +340 -340
  477. tapps_agents/experts/knowledge_freshness.py +321 -321
  478. tapps_agents/experts/knowledge_ingestion.py +438 -438
  479. tapps_agents/experts/knowledge_need_detector.py +93 -93
  480. tapps_agents/experts/knowledge_validator.py +382 -382
  481. tapps_agents/experts/observability.py +440 -440
  482. tapps_agents/experts/passive_notifier.py +238 -238
  483. tapps_agents/experts/proactive_orchestrator.py +32 -32
  484. tapps_agents/experts/rag_chunker.py +205 -205
  485. tapps_agents/experts/rag_embedder.py +152 -152
  486. tapps_agents/experts/rag_evaluation.py +299 -299
  487. tapps_agents/experts/rag_index.py +303 -303
  488. tapps_agents/experts/rag_metrics.py +293 -293
  489. tapps_agents/experts/rag_safety.py +263 -263
  490. tapps_agents/experts/report_generator.py +296 -296
  491. tapps_agents/experts/setup_wizard.py +441 -441
  492. tapps_agents/experts/simple_rag.py +431 -431
  493. tapps_agents/experts/vector_rag.py +354 -354
  494. tapps_agents/experts/weight_distributor.py +304 -304
  495. tapps_agents/health/__init__.py +24 -24
  496. tapps_agents/health/base.py +75 -75
  497. tapps_agents/health/checks/__init__.py +22 -22
  498. tapps_agents/health/checks/automation.py +127 -127
  499. tapps_agents/health/checks/context7_cache.py +210 -210
  500. tapps_agents/health/checks/environment.py +116 -116
  501. tapps_agents/health/checks/execution.py +170 -170
  502. tapps_agents/health/checks/knowledge_base.py +187 -187
  503. tapps_agents/health/checks/outcomes.backup_20260204_064058.py +324 -0
  504. tapps_agents/health/checks/outcomes.backup_20260204_064256.py +324 -0
  505. tapps_agents/health/checks/outcomes.backup_20260204_064600.py +324 -0
  506. tapps_agents/health/checks/outcomes.py +324 -324
  507. tapps_agents/health/collector.py +280 -280
  508. tapps_agents/health/dashboard.py +137 -137
  509. tapps_agents/health/metrics.py +151 -151
  510. tapps_agents/health/registry.py +166 -166
  511. tapps_agents/hooks/__init__.py +33 -33
  512. tapps_agents/hooks/config.py +140 -140
  513. tapps_agents/hooks/events.py +135 -135
  514. tapps_agents/hooks/executor.py +128 -128
  515. tapps_agents/hooks/manager.py +143 -143
  516. tapps_agents/integration/__init__.py +8 -8
  517. tapps_agents/integration/service_integrator.py +121 -121
  518. tapps_agents/integrations/__init__.py +10 -10
  519. tapps_agents/integrations/clawdbot.py +525 -525
  520. tapps_agents/integrations/memory_bridge.py +356 -356
  521. tapps_agents/mcp/__init__.py +18 -18
  522. tapps_agents/mcp/gateway.py +112 -112
  523. tapps_agents/mcp/servers/__init__.py +13 -13
  524. tapps_agents/mcp/servers/analysis.py +204 -204
  525. tapps_agents/mcp/servers/context7.py +198 -198
  526. tapps_agents/mcp/servers/filesystem.py +218 -218
  527. tapps_agents/mcp/servers/git.py +201 -201
  528. tapps_agents/mcp/tool_registry.py +115 -115
  529. tapps_agents/quality/__init__.py +54 -54
  530. tapps_agents/quality/coverage_analyzer.py +379 -379
  531. tapps_agents/quality/enforcement.py +82 -82
  532. tapps_agents/quality/gates/__init__.py +37 -37
  533. tapps_agents/quality/gates/approval_gate.py +255 -255
  534. tapps_agents/quality/gates/base.py +84 -84
  535. tapps_agents/quality/gates/exceptions.py +43 -43
  536. tapps_agents/quality/gates/policy_gate.py +195 -195
  537. tapps_agents/quality/gates/registry.py +239 -239
  538. tapps_agents/quality/gates/security_gate.py +156 -156
  539. tapps_agents/quality/quality_gates.py +369 -369
  540. tapps_agents/quality/secret_scanner.py +335 -335
  541. tapps_agents/resources/__init__.py +5 -0
  542. tapps_agents/resources/claude/__init__.py +1 -0
  543. tapps_agents/resources/claude/commands/README.md +156 -0
  544. tapps_agents/resources/claude/commands/__init__.py +1 -0
  545. tapps_agents/resources/claude/commands/build-fix.md +22 -0
  546. tapps_agents/resources/claude/commands/build.md +77 -0
  547. tapps_agents/resources/claude/commands/debug.md +53 -0
  548. tapps_agents/resources/claude/commands/design.md +68 -0
  549. tapps_agents/resources/claude/commands/docs.md +53 -0
  550. tapps_agents/resources/claude/commands/e2e.md +22 -0
  551. tapps_agents/resources/claude/commands/fix.md +54 -0
  552. tapps_agents/resources/claude/commands/implement.md +53 -0
  553. tapps_agents/resources/claude/commands/improve.md +53 -0
  554. tapps_agents/resources/claude/commands/library-docs.md +64 -0
  555. tapps_agents/resources/claude/commands/lint.md +52 -0
  556. tapps_agents/resources/claude/commands/plan.md +65 -0
  557. tapps_agents/resources/claude/commands/refactor-clean.md +21 -0
  558. tapps_agents/resources/claude/commands/refactor.md +55 -0
  559. tapps_agents/resources/claude/commands/review.md +67 -0
  560. tapps_agents/resources/claude/commands/score.md +60 -0
  561. tapps_agents/resources/claude/commands/security-review.md +22 -0
  562. tapps_agents/resources/claude/commands/security-scan.md +54 -0
  563. tapps_agents/resources/claude/commands/tdd.md +24 -0
  564. tapps_agents/resources/claude/commands/test-coverage.md +21 -0
  565. tapps_agents/resources/claude/commands/test.md +54 -0
  566. tapps_agents/resources/claude/commands/update-codemaps.md +20 -0
  567. tapps_agents/resources/claude/commands/update-docs.md +21 -0
  568. tapps_agents/resources/claude/skills/__init__.py +1 -0
  569. tapps_agents/resources/claude/skills/analyst/SKILL.md +272 -0
  570. tapps_agents/resources/claude/skills/analyst/__init__.py +1 -0
  571. tapps_agents/resources/claude/skills/architect/SKILL.md +282 -0
  572. tapps_agents/resources/claude/skills/architect/__init__.py +1 -0
  573. tapps_agents/resources/claude/skills/backend-patterns/SKILL.md +30 -0
  574. tapps_agents/resources/claude/skills/backend-patterns/__init__.py +1 -0
  575. tapps_agents/resources/claude/skills/coding-standards/SKILL.md +29 -0
  576. tapps_agents/resources/claude/skills/coding-standards/__init__.py +1 -0
  577. tapps_agents/resources/claude/skills/debugger/SKILL.md +203 -0
  578. tapps_agents/resources/claude/skills/debugger/__init__.py +1 -0
  579. tapps_agents/resources/claude/skills/designer/SKILL.md +243 -0
  580. tapps_agents/resources/claude/skills/designer/__init__.py +1 -0
  581. tapps_agents/resources/claude/skills/documenter/SKILL.md +252 -0
  582. tapps_agents/resources/claude/skills/documenter/__init__.py +1 -0
  583. tapps_agents/resources/claude/skills/enhancer/SKILL.md +307 -0
  584. tapps_agents/resources/claude/skills/enhancer/__init__.py +1 -0
  585. tapps_agents/resources/claude/skills/evaluator/SKILL.md +204 -0
  586. tapps_agents/resources/claude/skills/evaluator/__init__.py +1 -0
  587. tapps_agents/resources/claude/skills/frontend-patterns/SKILL.md +29 -0
  588. tapps_agents/resources/claude/skills/frontend-patterns/__init__.py +1 -0
  589. tapps_agents/resources/claude/skills/implementer/SKILL.md +188 -0
  590. tapps_agents/resources/claude/skills/implementer/__init__.py +1 -0
  591. tapps_agents/resources/claude/skills/improver/SKILL.md +218 -0
  592. tapps_agents/resources/claude/skills/improver/__init__.py +1 -0
  593. tapps_agents/resources/claude/skills/ops/SKILL.md +281 -0
  594. tapps_agents/resources/claude/skills/ops/__init__.py +1 -0
  595. tapps_agents/resources/claude/skills/orchestrator/SKILL.md +390 -0
  596. tapps_agents/resources/claude/skills/orchestrator/__init__.py +1 -0
  597. tapps_agents/resources/claude/skills/planner/SKILL.md +254 -0
  598. tapps_agents/resources/claude/skills/planner/__init__.py +1 -0
  599. tapps_agents/resources/claude/skills/reviewer/SKILL.md +434 -0
  600. tapps_agents/resources/claude/skills/reviewer/__init__.py +1 -0
  601. tapps_agents/resources/claude/skills/security-review/SKILL.md +31 -0
  602. tapps_agents/resources/claude/skills/security-review/__init__.py +1 -0
  603. tapps_agents/resources/claude/skills/simple-mode/SKILL.md +695 -0
  604. tapps_agents/resources/claude/skills/simple-mode/__init__.py +1 -0
  605. tapps_agents/resources/claude/skills/tester/SKILL.md +219 -0
  606. tapps_agents/resources/claude/skills/tester/__init__.py +1 -0
  607. tapps_agents/resources/cursor/.cursorignore +35 -0
  608. tapps_agents/resources/cursor/__init__.py +1 -0
  609. tapps_agents/resources/cursor/commands/__init__.py +1 -0
  610. tapps_agents/resources/cursor/commands/build-fix.md +11 -0
  611. tapps_agents/resources/cursor/commands/build.md +11 -0
  612. tapps_agents/resources/cursor/commands/e2e.md +11 -0
  613. tapps_agents/resources/cursor/commands/fix.md +11 -0
  614. tapps_agents/resources/cursor/commands/refactor-clean.md +11 -0
  615. tapps_agents/resources/cursor/commands/review.md +11 -0
  616. tapps_agents/resources/cursor/commands/security-review.md +11 -0
  617. tapps_agents/resources/cursor/commands/tdd.md +11 -0
  618. tapps_agents/resources/cursor/commands/test-coverage.md +11 -0
  619. tapps_agents/resources/cursor/commands/test.md +11 -0
  620. tapps_agents/resources/cursor/commands/update-codemaps.md +10 -0
  621. tapps_agents/resources/cursor/commands/update-docs.md +11 -0
  622. tapps_agents/resources/cursor/rules/__init__.py +1 -0
  623. tapps_agents/resources/cursor/rules/agent-capabilities.mdc +687 -0
  624. tapps_agents/resources/cursor/rules/coding-style.mdc +31 -0
  625. tapps_agents/resources/cursor/rules/command-reference.mdc +2081 -0
  626. tapps_agents/resources/cursor/rules/cursor-mode-usage.mdc +125 -0
  627. tapps_agents/resources/cursor/rules/git-workflow.mdc +29 -0
  628. tapps_agents/resources/cursor/rules/performance.mdc +29 -0
  629. tapps_agents/resources/cursor/rules/project-context.mdc +163 -0
  630. tapps_agents/resources/cursor/rules/project-profiling.mdc +197 -0
  631. tapps_agents/resources/cursor/rules/quick-reference.mdc +630 -0
  632. tapps_agents/resources/cursor/rules/security.mdc +32 -0
  633. tapps_agents/resources/cursor/rules/simple-mode.mdc +500 -0
  634. tapps_agents/resources/cursor/rules/testing.mdc +31 -0
  635. tapps_agents/resources/cursor/rules/when-to-use.mdc +156 -0
  636. tapps_agents/resources/cursor/rules/workflow-presets.mdc +179 -0
  637. tapps_agents/resources/customizations/__init__.py +1 -0
  638. tapps_agents/resources/customizations/example-custom.yaml +83 -0
  639. tapps_agents/resources/hooks/__init__.py +1 -0
  640. tapps_agents/resources/hooks/templates/README.md +5 -0
  641. tapps_agents/resources/hooks/templates/__init__.py +1 -0
  642. tapps_agents/resources/hooks/templates/add-project-context.yaml +8 -0
  643. tapps_agents/resources/hooks/templates/auto-format-js.yaml +10 -0
  644. tapps_agents/resources/hooks/templates/auto-format-python.yaml +10 -0
  645. tapps_agents/resources/hooks/templates/git-commit-check.yaml +7 -0
  646. tapps_agents/resources/hooks/templates/notify-on-complete.yaml +8 -0
  647. tapps_agents/resources/hooks/templates/quality-gate.yaml +8 -0
  648. tapps_agents/resources/hooks/templates/security-scan-on-edit.yaml +10 -0
  649. tapps_agents/resources/hooks/templates/session-end-log.yaml +7 -0
  650. tapps_agents/resources/hooks/templates/show-beads-ready.yaml +8 -0
  651. tapps_agents/resources/hooks/templates/test-on-edit.yaml +10 -0
  652. tapps_agents/resources/hooks/templates/update-docs-on-complete.yaml +8 -0
  653. tapps_agents/resources/hooks/templates/user-prompt-log.yaml +7 -0
  654. tapps_agents/resources/scripts/__init__.py +1 -0
  655. tapps_agents/resources/scripts/set_bd_path.ps1 +51 -0
  656. tapps_agents/resources/workflows/__init__.py +1 -0
  657. tapps_agents/resources/workflows/presets/__init__.py +1 -0
  658. tapps_agents/resources/workflows/presets/brownfield-analysis.yaml +235 -0
  659. tapps_agents/resources/workflows/presets/fix.yaml +78 -0
  660. tapps_agents/resources/workflows/presets/full-sdlc.yaml +122 -0
  661. tapps_agents/resources/workflows/presets/quality.yaml +82 -0
  662. tapps_agents/resources/workflows/presets/rapid-dev.yaml +84 -0
  663. tapps_agents/session/__init__.py +19 -19
  664. tapps_agents/session/manager.py +256 -256
  665. tapps_agents/simple_mode/__init__.py +66 -66
  666. tapps_agents/simple_mode/agent_contracts.py +357 -357
  667. tapps_agents/simple_mode/beads_hooks.py +151 -151
  668. tapps_agents/simple_mode/code_snippet_handler.py +382 -382
  669. tapps_agents/simple_mode/documentation_manager.py +395 -395
  670. tapps_agents/simple_mode/documentation_reader.py +187 -187
  671. tapps_agents/simple_mode/file_inference.py +292 -292
  672. tapps_agents/simple_mode/framework_change_detector.py +268 -268
  673. tapps_agents/simple_mode/intent_parser.py +510 -510
  674. tapps_agents/simple_mode/learning_progression.py +358 -358
  675. tapps_agents/simple_mode/nl_handler.py +700 -700
  676. tapps_agents/simple_mode/onboarding.py +253 -253
  677. tapps_agents/simple_mode/orchestrators/__init__.py +38 -38
  678. tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py +49 -49
  679. tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py +135 -135
  680. tapps_agents/simple_mode/orchestrators/deliverable_checklist.py +349 -349
  681. tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py +53 -53
  682. tapps_agents/simple_mode/orchestrators/epic_orchestrator.py +122 -122
  683. tapps_agents/simple_mode/orchestrators/explore_orchestrator.py +184 -184
  684. tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py +206 -206
  685. tapps_agents/simple_mode/orchestrators/pr_orchestrator.py +237 -237
  686. tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py +222 -222
  687. tapps_agents/simple_mode/orchestrators/requirements_tracer.py +262 -262
  688. tapps_agents/simple_mode/orchestrators/resume_orchestrator.py +210 -210
  689. tapps_agents/simple_mode/orchestrators/review_orchestrator.py +161 -161
  690. tapps_agents/simple_mode/orchestrators/test_orchestrator.py +82 -82
  691. tapps_agents/simple_mode/output_aggregator.py +340 -340
  692. tapps_agents/simple_mode/result_formatters.py +598 -598
  693. tapps_agents/simple_mode/step_dependencies.py +382 -382
  694. tapps_agents/simple_mode/step_results.py +276 -276
  695. tapps_agents/simple_mode/streaming.py +388 -388
  696. tapps_agents/simple_mode/variations.py +129 -129
  697. tapps_agents/simple_mode/visual_feedback.py +238 -238
  698. tapps_agents/simple_mode/zero_config.py +274 -274
  699. tapps_agents/suggestions/__init__.py +8 -8
  700. tapps_agents/suggestions/inline_suggester.py +52 -52
  701. tapps_agents/templates/__init__.py +8 -8
  702. tapps_agents/templates/microservice_generator.py +274 -274
  703. tapps_agents/utils/env_validator.py +291 -291
  704. tapps_agents/workflow/__init__.py +171 -171
  705. tapps_agents/workflow/acceptance_verifier.py +132 -132
  706. tapps_agents/workflow/agent_handlers/__init__.py +41 -41
  707. tapps_agents/workflow/agent_handlers/analyst_handler.py +75 -75
  708. tapps_agents/workflow/agent_handlers/architect_handler.py +107 -107
  709. tapps_agents/workflow/agent_handlers/base.py +84 -84
  710. tapps_agents/workflow/agent_handlers/debugger_handler.py +100 -100
  711. tapps_agents/workflow/agent_handlers/designer_handler.py +110 -110
  712. tapps_agents/workflow/agent_handlers/documenter_handler.py +94 -94
  713. tapps_agents/workflow/agent_handlers/implementer_handler.py +235 -235
  714. tapps_agents/workflow/agent_handlers/ops_handler.py +62 -62
  715. tapps_agents/workflow/agent_handlers/orchestrator_handler.py +43 -43
  716. tapps_agents/workflow/agent_handlers/planner_handler.py +98 -98
  717. tapps_agents/workflow/agent_handlers/registry.py +119 -119
  718. tapps_agents/workflow/agent_handlers/reviewer_handler.py +119 -119
  719. tapps_agents/workflow/agent_handlers/tester_handler.py +69 -69
  720. tapps_agents/workflow/analytics_accessor.py +337 -337
  721. tapps_agents/workflow/analytics_alerts.py +416 -416
  722. tapps_agents/workflow/analytics_dashboard_cursor.py +281 -281
  723. tapps_agents/workflow/analytics_dual_write.py +103 -103
  724. tapps_agents/workflow/analytics_integration.py +119 -119
  725. tapps_agents/workflow/analytics_query_parser.py +278 -278
  726. tapps_agents/workflow/analytics_visualizer.py +259 -259
  727. tapps_agents/workflow/artifact_helper.py +204 -204
  728. tapps_agents/workflow/audit_logger.py +263 -263
  729. tapps_agents/workflow/auto_execution_config.py +340 -340
  730. tapps_agents/workflow/auto_progression.py +586 -586
  731. tapps_agents/workflow/branch_cleanup.py +349 -349
  732. tapps_agents/workflow/checkpoint.py +256 -256
  733. tapps_agents/workflow/checkpoint_manager.py +178 -178
  734. tapps_agents/workflow/code_artifact.py +179 -179
  735. tapps_agents/workflow/common_enums.py +96 -96
  736. tapps_agents/workflow/confirmation_handler.py +130 -130
  737. tapps_agents/workflow/context_analyzer.py +222 -222
  738. tapps_agents/workflow/context_artifact.py +230 -230
  739. tapps_agents/workflow/cursor_chat.py +94 -94
  740. tapps_agents/workflow/cursor_skill_helper.py +516 -516
  741. tapps_agents/workflow/dependency_resolver.py +244 -244
  742. tapps_agents/workflow/design_artifact.py +156 -156
  743. tapps_agents/workflow/detector.py +751 -751
  744. tapps_agents/workflow/direct_execution_fallback.py +301 -301
  745. tapps_agents/workflow/docs_artifact.py +168 -168
  746. tapps_agents/workflow/enforcer.py +389 -389
  747. tapps_agents/workflow/enhancement_artifact.py +142 -142
  748. tapps_agents/workflow/error_recovery.py +806 -806
  749. tapps_agents/workflow/event_bus.py +183 -183
  750. tapps_agents/workflow/event_log.py +612 -612
  751. tapps_agents/workflow/events.py +63 -63
  752. tapps_agents/workflow/exceptions.py +43 -43
  753. tapps_agents/workflow/execution_graph.py +498 -498
  754. tapps_agents/workflow/execution_plan.py +126 -126
  755. tapps_agents/workflow/file_utils.py +186 -186
  756. tapps_agents/workflow/gate_evaluator.py +182 -182
  757. tapps_agents/workflow/gate_integration.py +200 -200
  758. tapps_agents/workflow/graph_visualizer.py +130 -130
  759. tapps_agents/workflow/health_checker.py +206 -206
  760. tapps_agents/workflow/logging_helper.py +243 -243
  761. tapps_agents/workflow/manifest.py +582 -582
  762. tapps_agents/workflow/marker_writer.py +250 -250
  763. tapps_agents/workflow/messaging.py +325 -325
  764. tapps_agents/workflow/metadata_models.py +91 -91
  765. tapps_agents/workflow/metrics_integration.py +226 -226
  766. tapps_agents/workflow/migration_utils.py +116 -116
  767. tapps_agents/workflow/models.py +148 -148
  768. tapps_agents/workflow/nlp_config.py +198 -198
  769. tapps_agents/workflow/nlp_error_handler.py +207 -207
  770. tapps_agents/workflow/nlp_executor.py +163 -163
  771. tapps_agents/workflow/nlp_parser.py +528 -528
  772. tapps_agents/workflow/observability_dashboard.py +451 -451
  773. tapps_agents/workflow/observer.py +170 -170
  774. tapps_agents/workflow/ops_artifact.py +257 -257
  775. tapps_agents/workflow/output_passing.py +214 -214
  776. tapps_agents/workflow/parallel_executor.py +463 -463
  777. tapps_agents/workflow/planning_artifact.py +179 -179
  778. tapps_agents/workflow/preset_loader.py +285 -285
  779. tapps_agents/workflow/preset_recommender.py +270 -270
  780. tapps_agents/workflow/progress_logger.py +145 -145
  781. tapps_agents/workflow/progress_manager.py +303 -303
  782. tapps_agents/workflow/progress_monitor.py +186 -186
  783. tapps_agents/workflow/progress_updates.py +423 -423
  784. tapps_agents/workflow/quality_artifact.py +158 -158
  785. tapps_agents/workflow/quality_loopback.py +101 -101
  786. tapps_agents/workflow/recommender.py +387 -387
  787. tapps_agents/workflow/remediation_loop.py +166 -166
  788. tapps_agents/workflow/result_aggregator.py +300 -300
  789. tapps_agents/workflow/review_artifact.py +185 -185
  790. tapps_agents/workflow/schema_validator.py +522 -522
  791. tapps_agents/workflow/session_handoff.py +178 -178
  792. tapps_agents/workflow/skill_invoker.py +648 -648
  793. tapps_agents/workflow/state_manager.py +756 -756
  794. tapps_agents/workflow/state_persistence_config.py +331 -331
  795. tapps_agents/workflow/status_monitor.py +449 -449
  796. tapps_agents/workflow/step_checkpoint.py +314 -314
  797. tapps_agents/workflow/step_details.py +201 -201
  798. tapps_agents/workflow/story_models.py +147 -147
  799. tapps_agents/workflow/streaming.py +416 -416
  800. tapps_agents/workflow/suggestion_engine.py +552 -552
  801. tapps_agents/workflow/testing_artifact.py +186 -186
  802. tapps_agents/workflow/timeline.py +158 -158
  803. tapps_agents/workflow/token_integration.py +209 -209
  804. tapps_agents/workflow/validation.py +217 -217
  805. tapps_agents/workflow/visual_feedback.py +391 -391
  806. tapps_agents/workflow/workflow_chain.py +95 -95
  807. tapps_agents/workflow/workflow_summary.py +219 -219
  808. tapps_agents/workflow/worktree_manager.py +724 -724
  809. {tapps_agents-3.6.0.dist-info → tapps_agents-3.6.1.dist-info}/METADATA +672 -672
  810. tapps_agents-3.6.1.dist-info/RECORD +883 -0
  811. {tapps_agents-3.6.0.dist-info → tapps_agents-3.6.1.dist-info}/licenses/LICENSE +22 -22
  812. tapps_agents-3.6.0.dist-info/RECORD +0 -758
  813. {tapps_agents-3.6.0.dist-info → tapps_agents-3.6.1.dist-info}/WHEEL +0 -0
  814. {tapps_agents-3.6.0.dist-info → tapps_agents-3.6.1.dist-info}/entry_points.txt +0 -0
  815. {tapps_agents-3.6.0.dist-info → tapps_agents-3.6.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,883 @@
1
+ tapps_agents/__init__.py,sha256=FvUEfWlYU7Mmk5U55sc1M8gGofq2pg4lS2xgI6mMePk,1178
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=sJNOF9Pt8rXI0IxudOo3s9CkF3zuaRE-tp8gXAslx4c,61084
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=FiiPwhDLn82xxrZsID_eEPeTJ3b-5VnhhSf1RNt7jv0,798
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=h_z8OT6K3WfVlUPjB5Uywz-AICgmdZwpVs5ERYcIhwI,26934
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=11mWEyAL-Mo3PzH6P1cg84o7Mn4xKuoCzzBCOy1IB5o,8445
137
+ tapps_agents/cli/commands/tester.py,sha256=ZGwSw8O6wMOx1UO5kCgmawZUccC0MBL3kvRH-7dEic4,8481
138
+ tapps_agents/cli/commands/top_level.py,sha256=-jVW1xLm4V3D9tbih1_Rw8Gn3dK9mJR9mQVKFnfVfMY,145448
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/artifact_context_builder.py,sha256=aHyA0RX4ONroUOSJAGLwC8PHPJGm8OG_rLKHbAkUsPs,11050
211
+ tapps_agents/core/ast_parser.py,sha256=DoPEhJvQ-DjZs5BJtvoPdB6-tOgIM6YJRIUfPdi84Zo,7138
212
+ tapps_agents/core/async_file_ops.py,sha256=rLrebxurZhsovZKVGAhHWQBRPk8w7BHaEnYaVxOsAHs,12641
213
+ tapps_agents/core/best_practice_consultant.py,sha256=0Gy0Sr3rB2tlXztW8b1ZTzR6Z7M-dauBJflT5_gVVmA,10158
214
+ tapps_agents/core/brownfield_analyzer.py,sha256=ym04ynbTX6WixrZ_kfLRPUyQQXwPKkSWxAzMWnArSjY,10536
215
+ tapps_agents/core/brownfield_review.py,sha256=HF51qRRanwtAaRGWAXIXroS0dlTynzlh2aspGUuf1fk,22266
216
+ tapps_agents/core/browser_controller.py,sha256=idA9kqmYfebBNHlqMOCndg1n6N4xllBSapv-RPPWdCI,16539
217
+ tapps_agents/core/cache_router.py,sha256=jnUt7W-ElxhhfSUhHS4oSrh_AljOX_S_vmMacWn77B0,11936
218
+ tapps_agents/core/capability_registry.py,sha256=CvQ9FBYERVsuUFm3yionW0vurGZktlIWL9Z19huX37I,14157
219
+ tapps_agents/core/change_impact_analyzer.py,sha256=ii4q-CSJikSYFQRBGk67tbttqaTyRjVatSKD-fAJKNg,7796
220
+ tapps_agents/core/checkpoint_manager.py,sha256=_VmMniI8eBVN7a8FUkZ5qobla6d2aozLvzmM_wjXKJs,12302
221
+ tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm76yQ,19356
222
+ tapps_agents/core/code_generator.py,sha256=Ma-5NWZnr4PcfFvZEFFUtn6hDzv7zAOVaZrTwmRiOrU,9881
223
+ tapps_agents/core/code_validator.py,sha256=SoP_zUBTzWEhfSuFNjawk_R6ytcgjJ8VClfCSILLKFE,8953
224
+ tapps_agents/core/command_registry.py,sha256=Re07pBBjwtilp9kaXn5Qxdjp01liT5pj1S7KUsXwQIg,10192
225
+ tapps_agents/core/config.py,sha256=oTajM4l_MDzXBxwFxR-45UMHtVDUxCgaxSvoEvnKM_E,57505
226
+ tapps_agents/core/context_manager.py,sha256=UCftn4UnGt6xf_LErC8Ty5fWP2u6mcyv5tqvoLvfK5s,8184
227
+ tapps_agents/core/cursor_feedback_monitor.py,sha256=p0Ow-wktUyK745MKQwt9E7rWoelV9WacQ5HWk3iRQGM,5073
228
+ tapps_agents/core/cursor_verification.py,sha256=kLMshs5E0-W-13rwT3TnNQ-YIjmW6v7AHI6kkiaBc7M,9905
229
+ tapps_agents/core/customization_loader.py,sha256=u3G4pCmOtrRPrFYMCoDBvbgP5VC-juTQhVih_IZ_o_A,8723
230
+ tapps_agents/core/customization_schema.py,sha256=PzpNzxpSLL5IHbbQT2J52FbbeqF8rLjAKGW8YoC0aHk,10073
231
+ tapps_agents/core/customization_template.py,sha256=J2T0gn2bM55u3ma6ijLwvAGGWx_lYHUj9UuXWWKq2D8,7241
232
+ tapps_agents/core/debug_logger.py,sha256=10rvDXyBkC7P8aE7IOEmHH13BTnpS-4y9jQ1O2UhoNk,4087
233
+ tapps_agents/core/design_validator.py,sha256=-Ix_ZxCZSkm9vdhJxTCpHuovDh2KwgMml9UmN5calLI,12760
234
+ tapps_agents/core/diagram_generator.py,sha256=xLfMo4x6fw_moK63XOSfNQ7VR8VVDANcAqeXBR3URNE,8080
235
+ tapps_agents/core/docker_utils.py,sha256=x-nmZLAWGE5za2Z8NdQM90osS2Pz8lAz5JlQCB6Xxl8,7424
236
+ tapps_agents/core/doctor.py,sha256=B1-tOycr0g6C3oqCsaselgPRd-1-S1lYyK_SNjXdKg0,46619
237
+ tapps_agents/core/document_generator.py,sha256=ifhfCihpIAwz_tEtT-Yqt_dQutBEZHKguKi24BGPxBc,15472
238
+ tapps_agents/core/domain_detector.py,sha256=O8i0-m1lNch8spH2Xap0CQBPCAzdB8hHR6hrlCGlVuw,1108
239
+ tapps_agents/core/error_envelope.py,sha256=Qf6Jdyz4Sg2McnDU2ZZLDKGVeAB-G3Qp1eZmKYiqo2w,16678
240
+ tapps_agents/core/error_handler.py,sha256=UlG2NxymjnLTdKl7O5NN_iwuLMJj7NnDO-sla2DvBYg,8662
241
+ tapps_agents/core/estimation_tracker.py,sha256=Y02uTf7L-L5BfKTP4-XcSO1asd-2G7I_06RNJtbZ1Kg,6964
242
+ tapps_agents/core/eval_prompt_engine.py,sha256=6w4HJCWQZ2RQ0L68DO8ApSoxLkl_Ph0i8UIRnzVWnNw,3892
243
+ tapps_agents/core/evaluation_base.py,sha256=qUWO_Bc-YbC_M8OmvRQa16UramZdmamizMbMQLCKFmI,3107
244
+ tapps_agents/core/evaluation_models.py,sha256=r2OMtyimZqo-tSzep9Y5eUprD6-upkiw37U04BmlHts,10885
245
+ tapps_agents/core/evaluation_orchestrator.py,sha256=y0RjHvFbrxR_Z6Ddyio95yuCR5z7IFzy_9oVQ0yXx74,7858
246
+ tapps_agents/core/exceptions.py,sha256=AkR363DiR4-2q4rbbydijnbSKoeWkDyoMWZYn1DEC5A,2005
247
+ tapps_agents/core/expert_config_generator.py,sha256=poNhvgyzkE7-hUAbdOg2Y1Wv6kckDqR--JwBWN9fbjc,10073
248
+ tapps_agents/core/export_schema.py,sha256=WeMxoQVqDxYp2HjbPH3kw9mO6OUM7qev4VTKkKB90n4,6391
249
+ tapps_agents/core/external_feedback_models.py,sha256=F7Fdy6S5F7R4h093EI34X1YFYo8CVMO0qwPpYE6Zaag,4232
250
+ tapps_agents/core/external_feedback_storage.py,sha256=RaTzOKfuYHZdEbZi7CqwCNuam49XT6dIY09yGKomm4Q,7193
251
+ tapps_agents/core/fallback_strategy.py,sha256=m6DgEH1wmMGYe31iwDTdVUs5EOBURNd3j5ciZC2H-HE,10614
252
+ tapps_agents/core/feedback_analyzer.py,sha256=BZbqS53fVbaPdeRjw1Yw286mJrsY88yDYqppjUJaJqc,5676
253
+ tapps_agents/core/feedback_collector.py,sha256=ynpkMWeOFyhuFC6goOdT29QRwd4kiVWgfd5ny9Mmczc,6218
254
+ tapps_agents/core/git_operations.py,sha256=rzqNTAj_XhnTtegxjXXZNpGeocL5LNM5DUWFNUp1les,14272
255
+ tapps_agents/core/hardware_profiler.py,sha256=OMram3JZkvdqRNSHvIAweHNuX_1Oy86jDCUldsVm8yw,4312
256
+ tapps_agents/core/init_project.py,sha256=1VlaJlFcrxLPWm6DKYnJMXfYOUdPaSxQM6O5Ja-8Rmc,118099
257
+ tapps_agents/core/instructions.py,sha256=eMleDK9k5NFTQT3Aj_DgsiWt5Gj4GQjSq83bJUgiVhU,13044
258
+ tapps_agents/core/io_guardrails.py,sha256=X178WGZP1Ut8UU1Ox08pXBhfTHtN_etum5WgRjvLUrk,2206
259
+ tapps_agents/core/issue_manifest.py,sha256=NqwReBKfNp1ChiYvFkbVvD7_w47-RrssPIZo6NenFrc,10020
260
+ tapps_agents/core/issue_schema.py,sha256=4C-HFdi36SSuHJOV1lJOlNDJGaNBcWJjZF20TOJe7jY,4097
261
+ tapps_agents/core/iteration_reducer.py,sha256=XvTGwJGNPtnCd4Th--TGEh2m7dhvJ5ulVhkvQNBHzUQ,6945
262
+ tapps_agents/core/json_utils.py,sha256=6LKXvmwjuDvSEiV0aJbNNykYjf3PCPl5pEwl7EGMIoI,4697
263
+ tapps_agents/core/knowledge_graph.py,sha256=SvF55-XbrnHSenzmwO5edeMLkpKrGatJA68CT7u3-ZA,13613
264
+ tapps_agents/core/language_detector.py,sha256=-Y3byEfrq_t7cwF3q42xBBLvEz8fW5AcyVxaJO2wq_g,10876
265
+ tapps_agents/core/learning_confidence.py,sha256=WzmsMtOW1w1cKOrqhAbxZIdLJJLg7WxdlquU1mEZxK4,9041
266
+ tapps_agents/core/learning_dashboard.py,sha256=ZXmZGygPW3c5aK-mfhKkrspDKplDkD910ehKAiuKRe0,8765
267
+ tapps_agents/core/learning_decision.py,sha256=r3Huco-EUYV00_s4nPnEE_MbVHpah26eXOSo-Catl8M,14089
268
+ tapps_agents/core/learning_explainability.py,sha256=6ZdJ7BEynFAXkBpj4LlOuGbkyF1y56K4ivWcbxvuPk0,18826
269
+ tapps_agents/core/learning_export.py,sha256=8z-lb5YFbHfeK3L5RdvVMSwTzqJ0XZ71oJh0RTE-fm4,10026
270
+ tapps_agents/core/learning_integration.py,sha256=A9uO8xJK0ZgQMmPFfwHJ-4Ak4AhPurLzKSqU4CZVU60,7303
271
+ tapps_agents/core/llm_behavior.py,sha256=TMyusYut0OvQqkliuSg8ZNDDnLXa_TyUsmq3UWUtUxc,8142
272
+ tapps_agents/core/llm_communicator.py,sha256=WuIuM5bDButBV208-DZlxzSHC5fkO8b1ITiWFbftPus,6066
273
+ tapps_agents/core/long_duration_support.py,sha256=N_n6bvflpQDNKYHGi7K8dn3QUh6vaGUpn_Xgn5qRzZw,26666
274
+ tapps_agents/core/mcp_setup.py,sha256=X-eL0AeS3_7q9M41OVKeUTFYtgLIyCR0olajT9LFrVY,4220
275
+ tapps_agents/core/memory_integration.py,sha256=3rr8cXgfHU8yz6esBJI2-w-hFTKKp-hBCLp8QMeRYXw,12134
276
+ tapps_agents/core/meta_learning.py,sha256=x8StMwpXY2E3yiy8kIxYyk2S6EtXLsKlG4_Pr1ukzfc,21865
277
+ tapps_agents/core/module_path_sanitizer.py,sha256=s3dv1XrUFQ7kWmj1pKRqNuCOFfXMc2x1vHoBdflXXA4,7205
278
+ tapps_agents/core/multi_agent_orchestrator.py,sha256=uPk9XxIDRC4ZZXI8Zy09oLDwVg6KOzWBzicBwzpE4To,13601
279
+ tapps_agents/core/network_errors.py,sha256=sfSsciuDFQjz6dGNs_7hMT8cski02clHT07dBW6tqM8,4199
280
+ tapps_agents/core/nfr_validator.py,sha256=3EgP5oiVxW1evqQBuwieI0sMryKt9x-uzuHKDXFSV4o,13354
281
+ tapps_agents/core/offline_mode.py,sha256=b7_JiVC8faJT04n3WXc26lBMKJGV5tJYb24NSiu51oM,5433
282
+ tapps_agents/core/outcome_tracker.py,sha256=9FvGCgmkHt00HKDTGgFnh4UdEUx_JeJYtlVTMwvXKwA,9037
283
+ tapps_agents/core/output_contracts.py,sha256=ZNnWpD_jnQPV3Egsqgk-QsHBd6KSlqGwxGvZuLsNPwk,10096
284
+ tapps_agents/core/output_formatter.py,sha256=_yG3h0vPc9jNLSe2kyvZrOi1dHbsioT_SczZccHKK6g,9746
285
+ tapps_agents/core/path_normalizer.py,sha256=nEXLXwLH1vIC9pUfIWEQ0W-Y4-ZU1mlP4erGP1GVGZs,6073
286
+ tapps_agents/core/path_validator.py,sha256=E_iKkIW_n3pWRDuOdA4FfhzouWac0kD3xgThaa2Dvko,10729
287
+ tapps_agents/core/pattern_library.py,sha256=InQwOtL5SiooMq1dgPn5trXffVAwRXBr-ZD663sISAk,10932
288
+ tapps_agents/core/performance_benchmark.py,sha256=LBEJC12FjyHuALBUmJuGRSFZBeUwKXS5AQQes2tlVBs,9567
289
+ tapps_agents/core/performance_monitor.py,sha256=6070Mxl6aobHD11yfZKYE1dl30-dU7S_tPV9-Lc7Je4,6184
290
+ tapps_agents/core/playwright_mcp_controller.py,sha256=fxOUzV5MRXOP8B1cQkW_NGkuiPTXBgOEeVEA3Tz83Bo,27879
291
+ tapps_agents/core/policy_loader.py,sha256=OG1-1iW352KM1nbnuP6q9khE5S2Fgrg5R4B6FDtDWBg,4341
292
+ tapps_agents/core/predictive_gates.py,sha256=7XNx4-l8EwxmqhxxyFyDjPCgl6e7WWoOmNxky3acbT8,5154
293
+ tapps_agents/core/progress.py,sha256=tIanV3olcIyqxZxJS8kKhhEjg7qzCkxPibFsR-5DZoE,4958
294
+ tapps_agents/core/project_profile.py,sha256=shRZpKSexaI77bzKvqxB3u3Zn0Z0VfYpkfvE4ms70ig,12709
295
+ tapps_agents/core/project_type_detector.py,sha256=eoK_ZlkREhP2cQrZbchW1bEIQwuX2mATEr5pg5tcphk,15296
296
+ tapps_agents/core/prompt_base.py,sha256=_CI0LvuNm863MgssydKyzZPe8dF_2hE2UKDjf8zIcng,7028
297
+ tapps_agents/core/prompt_quality.py,sha256=DCbrh4ro2msRBd9AksDLy5yCLyW5q4RFanijSpx9BYU,8357
298
+ tapps_agents/core/requirements_evaluator.py,sha256=EpDYR2fqrIVwKg2Q5_vZfsxrxeS_KCTiBINGpIzCCHU,15395
299
+ tapps_agents/core/resource_aware_executor.py,sha256=lCv80vRzQgeS0Xl4tOXVPEanYk7ujAUZqrhvvApOWgg,16049
300
+ tapps_agents/core/resource_monitor.py,sha256=U-CQlcqMqxZyBRRgnyTZveHBGBYqCxjDaXGYtoIjEuk,11227
301
+ tapps_agents/core/resume_handler.py,sha256=qW2TeoD-ke7PWT4snQcSsAxGpUrFMGa3FMLrC17ijR4,9853
302
+ tapps_agents/core/retry_handler.py,sha256=7NZecFlQGmSB6POY1q-Kfm0Ffewkv76VcuyP2BaiThg,7335
303
+ tapps_agents/core/review_checklists.py,sha256=9iDsStz5-vwgsTsZH6tbwDV5m8GJSeE_d2mBl_7NdGM,25115
304
+ tapps_agents/core/role_loader.py,sha256=zxVZafzANrp2q7zL0UZ4tcoc9EbaVn-Zjv9BzlgC8yA,5907
305
+ tapps_agents/core/role_template_loader.py,sha256=X-LgZnq7scW3NyYnTAUIjSravBmpneMF4266ejnWzZA,6786
306
+ tapps_agents/core/runtime_mode.py,sha256=8bTFq2tM8l_g5y56B89Z4ZH7JvDbAZjUUPRPlqSylrM,1633
307
+ tapps_agents/core/security_scanner.py,sha256=EbQrMfzM9qV8zTJZdTOWPHaFI9BPGw8PVGakQ6sbEZ8,11863
308
+ tapps_agents/core/session_manager.py,sha256=hWJd4t-iguHdfyyxUdeDUtMyOTmblkJo6z-BPm2TMC8,18830
309
+ tapps_agents/core/skill_agent_registry.py,sha256=4i8OGVHqOOfJZzk3IohTnqWY4t13l5SwzwSPa3AMKAU,7367
310
+ tapps_agents/core/skill_integration.py,sha256=uyj6AWmDaR6TY7mMhfmHbb5rDr0sR8fCk97UeH5FyhM,7092
311
+ tapps_agents/core/skill_loader.py,sha256=qgWylM_NcH8ywveVEAVv7VygIrV-S3L3I0Pol1B23oo,16293
312
+ tapps_agents/core/skill_template.py,sha256=GH0LA6Ha3kY9fjE6h6g20IsB21mLRhnzR_hwhoqiTuo,11825
313
+ tapps_agents/core/skill_validator.py,sha256=-51LX3_3ytO7RvEqGgqv3Qv61gv7d05nUi8I6EZL-lU,17195
314
+ tapps_agents/core/stack_analyzer.py,sha256=toALSgjGEtpc_PTBK774D9XbCOqCeIrN1nz3Qbd2RtI,1013
315
+ tapps_agents/core/startup.py,sha256=wXmYro9UtzF6Kp07Igb5fVbvkMim3TYwTr5tZ_qxxoE,5820
316
+ tapps_agents/core/storage_manager.py,sha256=pk4H3rntMRkyR22bblQJit6q4nhBmYiCK9zg90HT1Ns,13808
317
+ tapps_agents/core/storage_models.py,sha256=118skdyJzME5VG72IboIDFUNni5170rWVmR_L-brD1s,5226
318
+ tapps_agents/core/story_evaluator.py,sha256=KWieKkc3DDh4XedfIZVQHfKdKS2jZ0PQFHFm72o3OD8,14717
319
+ tapps_agents/core/subprocess_utils.py,sha256=S8Xz3RSrz8qG_0fzWFk_v1axscT0RxfzfBRKI2Q7W2s,5404
320
+ tapps_agents/core/task_duration.py,sha256=bXeDyk24TuI_UVJI_QVsxrI5aZIc545j9iUSLJkk9o4,9904
321
+ tapps_agents/core/task_memory.py,sha256=BVtBg_F5U6ACA8sCcPwPxjpqKCpzg6LTdIQQDchSP0k,18154
322
+ tapps_agents/core/task_state.py,sha256=-Psg8aw_PQ8x_FT9T1u_-Ze8n3pEn4pcPPXxYThuP1c,6783
323
+ tapps_agents/core/tech_stack_priorities.py,sha256=1-z-iP4wE2BGKaKsIjwJUAzLjHujriWyUC6SO2PqCdM,7062
324
+ tapps_agents/core/temp_directory.py,sha256=NTgeTXvh0vIlpzVJDiODaAbXX8790RSD-vkeCr5-qp8,5705
325
+ tapps_agents/core/template_merger.py,sha256=eRkFC8S2h4sxVxCVYDMgOjYH2VG0LQwQcUdCek3Y7wA,20712
326
+ tapps_agents/core/template_selector.py,sha256=T_WHOsCAq-U8DJCTwPk4xDK-_xRUJXsPJgsTwrWhnKw,10017
327
+ tapps_agents/core/test_generator.py,sha256=L2nJqBw0Opj7v48nWz_GfqGfg0xSW7aPE3vjvBttEb4,9832
328
+ tapps_agents/core/tiered_context.py,sha256=Q0Ynic3s2bAFPek7hVDbGpwFUREFe8G90S7sqHa77cA,8686
329
+ tapps_agents/core/token_monitor.py,sha256=PA9JWNzm600PLztRH9ORKhRuhIwoo6MPCdBchma76dc,11081
330
+ tapps_agents/core/traceability.py,sha256=T5ODruVnYwA2a0DUwn8iyZYNvEW4QaXThxHlilglgjo,10395
331
+ tapps_agents/core/trajectory_tracker.py,sha256=2P5Oa8zhdOGZ1M2CPASTQcaZJDMCq5LICDyYDNA52xs,1479
332
+ tapps_agents/core/unicode_safe.py,sha256=Dm4X2hJlcA8zJmNS1jIRfpETL3JG6ljVYbeqQMsiemk,4267
333
+ tapps_agents/core/unified_cache.py,sha256=sQJXig3nM0cQiyBrOS0xEN-tix846HwZ84zXX4kjwi8,13677
334
+ tapps_agents/core/unified_cache_config.py,sha256=gzzCoG0_aEuTX57sTd0-61NF49LGLFVTC4mzlk1xmDA,5964
335
+ tapps_agents/core/unified_state.py,sha256=6QK97_ceje-ebYZUywbNWycUa6prwG5dh9WBDTDciGs,10482
336
+ tapps_agents/core/validate_cursor_setup.py,sha256=t9kS8SW-nnmvgZeDzRvgMJ7PMuYqDAl8OWYM5cXt8vo,8469
337
+ tapps_agents/core/validation_registry.py,sha256=OhPPfIeM38aC_nqpEkLWdFfhrzDsXyMpaKIjHdoV3Dg,4465
338
+ tapps_agents/core/verification_agent.py,sha256=0MU50L7a5h6hUycxX4G6NY1zt0BSZIU1ecDT-AMUWSI,3437
339
+ tapps_agents/core/visual_feedback.py,sha256=ziBd0fyXfauzqc2F0N-KKLZGCB-HakKRCbzJ553UPWI,23221
340
+ tapps_agents/core/workflow_validator.py,sha256=XOM6Y387_372YRgkTXbkAUGfaf67VnIBY9v09I_9jjk,7516
341
+ tapps_agents/core/worktree.py,sha256=RMlWBNnPu2AgXEfSkhqI4NtZNAO4qjN_r0MmXqN2tnc,13687
342
+ tapps_agents/core/context_gathering/__init__.py,sha256=rm2Rx3u9Yq6tq-IxMlz0sK3ZTU-Ncb5YTCQaMcgykeA,63
343
+ tapps_agents/core/context_gathering/repository_explorer.py,sha256=qg8132_LlI5xWTVx0kDnW-Oag7Juxa_nJI5lxXmpkLE,772
344
+ tapps_agents/core/context_intelligence/__init__.py,sha256=Iz9S-kaNIBkDXh-amp0ycfIDtjZYYBti8U8E21oYP9s,62
345
+ tapps_agents/core/context_intelligence/relevance_scorer.py,sha256=VDOfo4jwi104gu7ifnDzXQt6xNWiZaAYR2G-Def0kho,692
346
+ tapps_agents/core/context_intelligence/token_budget_manager.py,sha256=oSx-d73DJVd4_VT28uddV1ya4Auy05SZop6mgc72PoQ,682
347
+ tapps_agents/core/evaluators/__init__.py,sha256=ydacKQG4c6l4m3OswT-xIHHMZpUO5AiYYe0LCG6MR9A,222
348
+ tapps_agents/core/evaluators/architectural_evaluator.py,sha256=4LhK8yiu83FTfvo7u4QrljXVPuHu9Ujmu5aFFI9Wmmw,8378
349
+ tapps_agents/core/evaluators/behavioral_evaluator.py,sha256=TbW4A5XNGyXTqbAGQev1xWefNTo8Yj8XCIrvfGLjS-E,6292
350
+ tapps_agents/core/evaluators/performance_profile_evaluator.py,sha256=DSZ0exjC2x2kVWExwuw46L_7A5PA3SzchxX5UAIsf1k,6740
351
+ tapps_agents/core/evaluators/security_posture_evaluator.py,sha256=xoEUX1GtgncMmnSzucXqCWD7Fb7fFoumsd3TKeQf-R4,6097
352
+ tapps_agents/core/evaluators/spec_compliance_evaluator.py,sha256=OeUVuoyVWp3MdIrxlcr7nnSv8hxjgbU5xdGZCvWxPg0,7690
353
+ tapps_agents/core/prompt_learning/__init__.py,sha256=7T5z2cMuYSYbrgDuyc66z6iuzby9JpIOdnz8oh_NWRQ,63
354
+ tapps_agents/core/prompt_learning/learning_loop.py,sha256=1auwqVi7EXn-8Hvqr9roldw51SmweswkG-_bv6VIo4U,762
355
+ tapps_agents/core/prompt_learning/project_prompt_store.py,sha256=5kwNeikvv1GukAZjUmIY05hB-MvYxi-j5H3cb7axEGc,830
356
+ tapps_agents/core/prompt_learning/skills_prompt_analyzer.py,sha256=sAML-Hn4Op_v1MjknBcasC7dBHy0OTFc7spX6YEbtyk,1133
357
+ tapps_agents/core/prompt_optimization/__init__.py,sha256=nNQegNEVrSJ4FrIbtk6MNnrkGX4_CrNRNTSZ-7ThrGw,149
358
+ tapps_agents/core/prompt_optimization/ab_tester.py,sha256=4VxAVuhJDwH9ALFGTRdk85bdYsG0hzFy9w6vuy6BGJc,3625
359
+ tapps_agents/core/prompt_optimization/correlation_analyzer.py,sha256=9JnAcktCa6x0rNP9ryi_qrgTyvVzqb_qEdQ28yWr_cs,5596
360
+ tapps_agents/core/prompt_optimization/progressive_refiner.py,sha256=PJZl92slkbd8CNBr3zzuWDwNPAuUoLUhgENC9mR1NUE,4757
361
+ tapps_agents/core/prompt_optimization/prompt_library.py,sha256=sHjoYDqf7ySZ_dp7g-2n60r0H385bTajO5QxblYPnXU,785
362
+ tapps_agents/core/validators/__init__.py,sha256=w8TBQxzYDqTxQfvqWlS3ezsLcN5NATQrjPktoKpZdwc,67
363
+ tapps_agents/core/validators/python_validator.py,sha256=nToz2BUExnFxcg3L3kPg3_ceUQwkEgBJw0tCyjqfVLw,3247
364
+ tapps_agents/docker/__init__.py,sha256=yvqK2fa_RRY7ljGIRb6TaZThR09opuCDvHSwxvi_ekY,277
365
+ tapps_agents/docker/analyzer.py,sha256=6LKbYpIbf5JOSPRtjU3AtRKGAmzhnUNk7j6scfUc8xU,6619
366
+ tapps_agents/docker/debugger.py,sha256=rzXTH_isr27EyglUZveKeM34iqxgiNiof7QGB6UDKSU,8277
367
+ tapps_agents/docker/error_patterns.py,sha256=7MmW0kj3VLZFQlLNwt-7d1Xn4w7a6XKjItc61dUDe5Q,7089
368
+ tapps_agents/epic/__init__.py,sha256=QLHpM8mjraUnrip_KNLBU1_tYeyq_ewmXM70rJ7951Y,521
369
+ tapps_agents/epic/beads_sync.py,sha256=gfTUjqfI4lsukS9mFfCmeO-LO8VUezCq77FweJvVlKY,4303
370
+ tapps_agents/epic/markdown_sync.py,sha256=0bWf0N_zrhYQJSvqnpj9rQna1M-zGIXaCSky5NxEzn8,4030
371
+ tapps_agents/epic/models.py,sha256=JDQz0g9LrvS3qUURazIp2oaXq3fHVKOEmGHxJdJKhoA,3015
372
+ tapps_agents/epic/orchestrator.py,sha256=Z1vplL7bb9y6kDTURpIFZr68SqQuacV3Dnmq4Lzxbuw,18795
373
+ tapps_agents/epic/parser.py,sha256=ymGUElnzzwU4__JJ2_wSE5_PWqJFVq2QXPr6jrdIWro,15244
374
+ tapps_agents/experts/__init__.py,sha256=yJtNPYJVWoGBfcXsPOLNZ66UdBP0fFzc_TwbdlPxmPM,4850
375
+ tapps_agents/experts/adaptive_domain_detector.py,sha256=hfIGsgM0lwfmlogyNboXiLQY9zvXg-4vC_8_F6OvZR4,12959
376
+ tapps_agents/experts/adaptive_voting.py,sha256=xHhUq62sjXquFn3_9Qd3I-kPpFbKbirjntMc4SLv4wg,9545
377
+ tapps_agents/experts/agent_integration.py,sha256=ajBMZ4yUiZfXYI6rjevDURcSfjTdCEMlXldefOy6cXE,8873
378
+ tapps_agents/experts/auto_generator.py,sha256=J_gQXG4jWgqB_7rYgaPYHNRIB2I6QyJkqr2YJAKkZjY,11699
379
+ tapps_agents/experts/base_expert.py,sha256=ALXa_lVde9gFz_7on83FKmueNWgzXCUYYqMc6jyew_A,20232
380
+ tapps_agents/experts/builtin_registry.py,sha256=GOr57GMrYF-HK077TJqiDxD-_ubkB8IxC_J3URvZZKk,9202
381
+ tapps_agents/experts/business_metrics.py,sha256=L-XX-4rl3cmRgEaElyrJoBrpGEkGotzvQrsZ0eZZWQI,20874
382
+ tapps_agents/experts/cache.py,sha256=2sKdhJt_5PHhQvj2uEsFtEsZogD8PBcZQduTjnKiwQE,8482
383
+ tapps_agents/experts/confidence_breakdown.py,sha256=FO6iRcgMnJWhxeyemefbVvo2P34DLXfy8SzbLtpDSNU,11352
384
+ tapps_agents/experts/confidence_calculator.py,sha256=P8mLcCPL9w9A73K_vQDKNJbuXYuofdyvHUnpkabMVG4,12019
385
+ tapps_agents/experts/confidence_metrics.py,sha256=-yE3F8qq5FrKphKYmT7eQqVua2oWBF_PAUJP1toOZTg,7453
386
+ tapps_agents/experts/domain_config.py,sha256=FRDPahjzP_Vw9Tcx4AJENcQ4mOaxXniJoTtrF0P-y04,9860
387
+ tapps_agents/experts/domain_detector.py,sha256=D_iTGdnSsdOdsfMWeOcMUnhHJJErSd2Bcwdp4Oy_0Qw,21045
388
+ tapps_agents/experts/domain_utils.py,sha256=-U2oH5kFWx6wo5QEp64nIuzp_dSJUQ58WGVZ0w2sTyc,2987
389
+ tapps_agents/experts/expert_config.py,sha256=2z3Wp0_J8m89K2Pl0dDIEXTZrGG9RCBFp7Ds-zAq1v0,3603
390
+ tapps_agents/experts/expert_engine.py,sha256=4dLdwC1tmgdmQDo2DedShBWwAc_HDZQ8OYlwUxvvZLY,16710
391
+ tapps_agents/experts/expert_registry.py,sha256=lKeJnvV0tgO1Cn2Wbol0E4XATdSYZ4SQEECjQ6Ut_mU,29499
392
+ tapps_agents/experts/expert_suggester.py,sha256=xZ8J2XxyGEqFuLODwzEssTcC-Ph-7_4GrKP7jvlB3i8,9409
393
+ tapps_agents/experts/expert_synthesizer.py,sha256=VvNW_IpC55dBZAXB3eZTu9SGofaxM4kXC8M6SW9pZR8,2702
394
+ tapps_agents/experts/governance.py,sha256=6IGDcSfTA6u7bH_GNRR38w_dM1-1N5AgtTgqOPAbRrA,6696
395
+ tapps_agents/experts/history_logger.py,sha256=kgAm0pwjY_tO-lQoMFcgmpbHUGA0v1ehNs3ZgYxTVG4,9715
396
+ tapps_agents/experts/knowledge_enhancer.py,sha256=Douq6F4ioMW3wZL7hnXOMyJYamdpl8X4lFWEjZy80w0,8984
397
+ tapps_agents/experts/knowledge_freshness.py,sha256=I_gTLPiH-4nuC0hq0VxAjveNNyYRQsm7TVZSL5F8YJs,10466
398
+ tapps_agents/experts/knowledge_ingestion.py,sha256=SfJF25hp6JuIdZyZncRk-JOcsZE_OLT3TCDlrGpZIY4,17365
399
+ tapps_agents/experts/knowledge_need_detector.py,sha256=G-IBbdPyISSlccGbO_-LMdI3H6l06ik4GwegCQTqEC8,3455
400
+ tapps_agents/experts/knowledge_validator.py,sha256=iWDYJ9Tbq4EfWafDvsy0_ranXydKzS4qFBx9twOj1W0,13303
401
+ tapps_agents/experts/observability.py,sha256=UHm4jopqeAiknw3Q1DihzdSLye4RSlb4sGzQlfdKSxc,14130
402
+ tapps_agents/experts/passive_notifier.py,sha256=5uH7L3KqYFsUWg89M5CnJoMKdrhjyY2Ujhe4GLKjbBY,7316
403
+ tapps_agents/experts/performance_tracker.py,sha256=vMzK_zC02JQqltLMftgL17L_lJOQk9G2D80dIGinuDM,9027
404
+ tapps_agents/experts/proactive_orchestrator.py,sha256=-LSU-c8U6Vk9KSGlJxXufMGcchkbJuTWK1CisukUg2U,1026
405
+ tapps_agents/experts/rag_chunker.py,sha256=3RpTEzNBQbd8JWVAvE35Q2S4uYXyGlCBjRDFN2OcVks,6692
406
+ tapps_agents/experts/rag_embedder.py,sha256=l_T2zmJJhV6ks0AdeZNd8yD9o4uuVFkakD4jAJc4uic,4620
407
+ tapps_agents/experts/rag_evaluation.py,sha256=Cqja7NiFS1gMzIx-R_ziUxOeiLsxb3g0WO0oE832C5o,10815
408
+ tapps_agents/experts/rag_index.py,sha256=2Sso1K1eDXHI26eNlxOC032M-Lcly9vJBVHl1cL9H4w,10202
409
+ tapps_agents/experts/rag_metrics.py,sha256=oBHZ5f97fLfCyyIeB9zB6E2x3VCiirEXYxYUlRNvo_g,9609
410
+ tapps_agents/experts/rag_safety.py,sha256=esUKH_IZ5-VYw5Vw0lMzik73R5Eyoemu4UHBXSLhn7Q,8458
411
+ tapps_agents/experts/report_generator.py,sha256=pyQzVNIQ5P827fwjde1-kccTiiwR0lbhk4MaG6k3_RI,11605
412
+ tapps_agents/experts/setup_wizard.py,sha256=IwLWxsORND56Q5G8yCSZabng8qt3FJ4teWAu6crO6zU,16009
413
+ tapps_agents/experts/simple_rag.py,sha256=0FaEHG7FPgfNE9CtdON2NMvW9c0w89fW1aHvne1de74,16027
414
+ tapps_agents/experts/vector_rag.py,sha256=vXtlYsRBRz4ufAfoEknZAVr7UkJ3QqklKVVHVMqWzDo,13170
415
+ tapps_agents/experts/weight_distributor.py,sha256=-DpOxSGiK17JfLm_xynmKBcBpeWky3lcpKmxhJ4K8dc,11025
416
+ tapps_agents/experts/knowledge/README.md,sha256=R1M-Obcxx5rr_0bPaucbSU-7tEg6mDWH7IPFlVX6fkw,7108
417
+ tapps_agents/experts/knowledge/accessibility/accessible-forms.md,sha256=C2vgtEqAm8oa7SX55ZvJfWP2B3cW_tfvoaCXdyaK5_A,7670
418
+ tapps_agents/experts/knowledge/accessibility/aria-patterns.md,sha256=co6He8imERdv-44ikt-suTuEX7HOMGq0IajVzV6xJn0,8698
419
+ tapps_agents/experts/knowledge/accessibility/color-contrast.md,sha256=bsZK2jXStrJsYWLKQ5EQQC_DrBb_tpOIjYEKZmSR72A,6458
420
+ tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md,sha256=bjj_4GghunV5h-oE1h8wXYR7yUf4FGYBFVhX9VnIvag,7427
421
+ tapps_agents/experts/knowledge/accessibility/screen-readers.md,sha256=iox7-adgVCGqgviWzw-pR0Izllz9JnsEpjwUZvBvOc4,6955
422
+ tapps_agents/experts/knowledge/accessibility/semantic-html.md,sha256=38vYZnOOjzjMwvyYzL9xVURp8feaLjVptK_9RsDUMqI,7333
423
+ tapps_agents/experts/knowledge/accessibility/testing-accessibility.md,sha256=GfDJOX8GqY5J61FfM3mAR4DW_5UXPgiph8o8M0zwBUY,7431
424
+ tapps_agents/experts/knowledge/accessibility/wcag-2.1.md,sha256=LVYyBEQTab4Q5Xn5lq3wz7Kny9KG29JDBLEzVdVPrA4,10695
425
+ tapps_agents/experts/knowledge/accessibility/wcag-2.2.md,sha256=hgdF8_WwT2PPBVQ9V61J2xPTSs2E1Sy7lOxSFqZnWj8,8327
426
+ tapps_agents/experts/knowledge/agent-learning/adaptive-learning-patterns.md,sha256=wUC-CG14iBtfUH1eAoM2DYPN3vHRjiBnuc7c262EXv4,7095
427
+ tapps_agents/experts/knowledge/agent-learning/best-practices.md,sha256=99eku_imsDAh_d4UTqf4zd3V2xEmd_rDx9IRz5Zc1XA,19705
428
+ tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md,sha256=n1qCv8LV7NxjPlB7jTUTX3s2yDn573kt5455_Jc4ICw,6634
429
+ tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md,sha256=kRbwQD0Bkrw3D2_09P4xcs9qco2QWEJl7CND6XNk0U8,7472
430
+ tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md,sha256=cAKDgwmlaVg8PjvrWV4z-8IQQWxj-P_CRI_-FQ4ny8E,5023
431
+ tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md,sha256=gujaIUo794yDOzSgwy45QHRr1g-PMzWoSfpeWePRipM,2162
432
+ tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md,sha256=QibfG2-r0t_euib-2fBcvVH3z50nWp-3_HKbuVAS6s8,6756
433
+ tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md,sha256=X1dHOu6dXsM399SJ6Gk3_IZ-aRceL2wGwtGun70GsFs,7148
434
+ tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md,sha256=SNEVPvuungnzQcaHqFT-gzdThFQJ7WZHIruCrm7cazo,14852
435
+ tapps_agents/experts/knowledge/api-design-integration/api-versioning.md,sha256=AvgPN04ERT8Zpv5manm36ecxFe64nhFqJyT2s3CVQXY,8805
436
+ tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md,sha256=HCLhXetoqUWVB079E0QTd23sduNhlPfkvJ03cV5QJnA,1567
437
+ tapps_agents/experts/knowledge/api-design-integration/contract-testing.md,sha256=ahpdBJGafHzl0PFh6aczaM5mzo7zgb1Dlizbr0_aIAE,5416
438
+ tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md,sha256=Qk2IuHaxUTmj2w9DzJQitOgCWiHciEAp-KhuPKzS5iM,15252
439
+ tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md,sha256=ZqTE8kwQMtKsTircpCBkq4V0ZSfmT_Mw-ANuRZ8AWyE,8596
440
+ tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md,sha256=Uz-qQR7qVsNduO_flGX1X4ih09VNRJaO0805H9hHvfA,5917
441
+ tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md,sha256=UrvONnl3LJmazOUXm2rgcMXAzxm9Wj1n0EI0neosBx4,10123
442
+ tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md,sha256=bz0Dm42YaSoYSXZ5tHXsijbLCCCLCUIjFo_bqCGsd4o,11925
443
+ tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md,sha256=FckNUCY39nmK_wjmq8GRaG0LxMR9oqTYFqMHbrS5kKU,12883
444
+ tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md,sha256=krrlriuVHZ3RAizT1eZG-Tjc_tIfM1OJbQckqRxoJg8,13172
445
+ tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md,sha256=Wx3x_SgVVn03a-rY8GBv2I79bS0VZLoZPbTFX_K_aZI,12241
446
+ tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md,sha256=6WHdPFdyZBL7EME42d0gknt7J2p789HPVFtnAqL4QWo,14871
447
+ tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md,sha256=ANDqcDAyL7iK9HoFKsF1HUOIf045G-mqwJekQ45WmIg,4151
448
+ tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md,sha256=FJswxj7kJRKB-qfx-EBHrNSEi618TNcBmo92g0DOkRo,6350
449
+ tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md,sha256=8Oe8TM0XmWuzYnzljo4cTx2BceEuVo9fSMBdpih24m4,4527
450
+ tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md,sha256=NQBnZ0BuE4ABNhJp2MsADTSOYJYGa44frJD5XoMf2oc,2689
451
+ tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md,sha256=5_doqQEb3xvKXcLElo3Onew-QM0DcutLqYbOCv1k0nM,3019
452
+ tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md,sha256=ILOiA-_7bMAk0UA1nJC-_kUQLoSjMumkTrM8uzCAS_c,5588
453
+ tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md,sha256=8cLey4PI0sTnGisurnBmDBwkGau2xMqkpBaWkNHfSKg,3540
454
+ tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md,sha256=e5zqYDU_GwXKR_XvgbTymEVfwn9AJzGS_bjpwT9SYAE,4597
455
+ tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md,sha256=dLf4Y2gK36ShI5o_-kMPB7E_d6UWbGtAV4blcYRSCTE,3268
456
+ tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md,sha256=VancHxYrMQgfmfxddPNW58REUhyq4jEWgMGpYsCW30c,4311
457
+ tapps_agents/experts/knowledge/code-quality-analysis/README.md,sha256=QcvdRrxf-jMsFefPJOkoHpxipGHcmraRpXAwFf3dFUM,451
458
+ tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md,sha256=z6qGQJmblJq3H9yrEeIZ2frJGhNOs3PbvVM1A2yw-3w,3708
459
+ tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md,sha256=SRZ37cyEWH7A9boS3UIQVQKionRqMXazAEgSoWiUK3c,4660
460
+ tapps_agents/experts/knowledge/code-quality-analysis/quality-gates.md,sha256=bClraAtPON6u1sdcT2FNmOZDmIymC5kD8KMYbtRHykM,3597
461
+ tapps_agents/experts/knowledge/code-quality-analysis/static-analysis-patterns.md,sha256=4e9Lf2bmsoAu7UK0pEKFhqPE6Q6BtcBzdLG9o7paj-A,2920
462
+ tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md,sha256=n7Efi64segHEpJNw-eyDCSAU9aYZgBaF_1Tui2mKO7E,4668
463
+ tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md,sha256=vSA_97FNDw09AW-p6ZcJNyCf8milvM92wnQEGPIkwi4,7841
464
+ tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md,sha256=g8YpO0FyOjO8t6SQGcKgCdQtFob8Roq9Qs8yNgMP3Qk,8431
465
+ tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md,sha256=ONtapNK8D73BEAvxu6r_tcq3GztKtv_6ukTpQXvFV2g,6953
466
+ tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md,sha256=LB2R5T7RL5wOkerFJ6R3kESE-OerZ5xMt-5Z3yo_aY0,7150
467
+ tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md,sha256=Tp04-rIVGlO24Y2X4NBrThCkxw40e79oFZlRAhNW9X4,7207
468
+ tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md,sha256=jiCzGyzCCWHeiVNuGVXyQHapasSRzuOEszJJB6MqqQw,9598
469
+ tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md,sha256=HffFowu3urwA6aEzsSGqvTkGAv3LVYHD2ZwNmAw3rjw,7472
470
+ tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md,sha256=X6HvjAljq44ng4BAgMWnJnCn-h6E8-ctJ01AkEx5dH4,10654
471
+ tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md,sha256=zfyqDmjU4ay7hgACDpDcDdYAVrI2CyENOm7eCAgaTMc,11466
472
+ tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md,sha256=AdimgKLsykzYdBg9zHoEfiJHD8HE487ADnrWpG586jk,7569
473
+ tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md,sha256=213Q6sOtfO2CEWl-Xj1XuhK2_AcOBuI6JaQ0nHl5K6g,4060
474
+ tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md,sha256=Z9QEJ1YBef4msPwjC8LrBcmfx22WP7sK3NDx4rFp-QQ,3617
475
+ tapps_agents/experts/knowledge/database-data-management/data-modeling.md,sha256=PKaRmFizAB9pm3VCqdcuY71YAPZINizh8IlEygQe3lw,3197
476
+ tapps_agents/experts/knowledge/database-data-management/database-design.md,sha256=XC8riqg4YyqrQA6LK92Qg6VsL5kootVuk9ltYtcv_YM,3782
477
+ tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md,sha256=QbHqGxWcscaHQuLi1D5KAuGZhzQHXTmhJUGpMMieoYI,9819
478
+ tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md,sha256=AVKLdUOGBNn-ilKh3eO2nH_oX4nC4_k-aEx691DPUMk,11070
479
+ tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md,sha256=nMlMMb1mpqmG_nLgas0K-r-Dhj7sY7f4nCj8h7TygaE,11022
480
+ tapps_agents/experts/knowledge/database-data-management/migration-strategies.md,sha256=NPZV1Po63XWcgutMotntTYTW-gb7OJhLpXzYf8FIEKg,4622
481
+ tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md,sha256=z8A9dl4g6bxZu3omSjl13_Kkwcc7lpM7BI65R0EQKYk,5586
482
+ tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md,sha256=TeWuyW55H72pkj-tPIer-5PqlvIQJyFhV31iudPwYuE,3552
483
+ tapps_agents/experts/knowledge/database-data-management/sql-optimization.md,sha256=nKQY84b00MnUkhbRYErNEivHM4Gu4W4xbn6fOAtEe-8,3779
484
+ tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md,sha256=ptXjYq17ZCUQtJaWgDwWJeGNhhDggk5B8GOUqiDi2mM,10693
485
+ tapps_agents/experts/knowledge/development-workflow/README.md,sha256=nkGUNVz6LSrd11vAkLTg8uFYKaBZg35gpbR0zaPGbas,472
486
+ tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md,sha256=QPmfjCk24pJUS0r_VcQJHL1NVPdW0a_7sy4Jy79W2VA,4058
487
+ tapps_agents/experts/knowledge/development-workflow/build-strategies.md,sha256=MPKpVBNCnEGA428Lp4vvBgu9mcq0EtN03xwopJEkjrA,4413
488
+ tapps_agents/experts/knowledge/development-workflow/ci-cd-patterns.md,sha256=ayRLrOeOg5R_ayWudPRA2t0X5oyThy3v1Bd--8qmkKE,4429
489
+ tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md,sha256=1qKlnOPZ6ZLIYLGE2byU05ISHR7CC9UGOMTGpunE9aE,4849
490
+ tapps_agents/experts/knowledge/development-workflow/git-workflows.md,sha256=SlULGnkIngJUPPMJG_PrV0mVvylN804zaaJKHV2O2n8,4521
491
+ tapps_agents/experts/knowledge/documentation-knowledge-management/README.md,sha256=EXPuk-ltoTpy8WYtocAuYiSHKLH7AZUh5QkuosVYtrI,497
492
+ tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md,sha256=t3eKpna28SZsLDxseObOWsYy6zCvtr-QJEnUFw-rql4,4993
493
+ tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md,sha256=VJzb_JPlNtYK07dqOdedLWhT4Z7SjIwYYu8htED9uIs,4820
494
+ tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md,sha256=Q9NO--xH0W5WI2VTWl_9b8uq5H4NvopoEeTnDCjn2lo,4640
495
+ tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md,sha256=6hhAGXFqKfTFViQqyUkItB02NLrM1WG1JfFUCTJm9Ew,4445
496
+ tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md,sha256=foK0sAuJfgrwtiKLsuulq9DMoHySHnLS-uXJhzJNG7Q,9760
497
+ tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md,sha256=bauo8YM40RnSO2EBUmneeQ27Vb2YVrfn38ZT5G8UZko,9086
498
+ tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md,sha256=BLvkeHed29Jg5i5uI8ae0nK80A5ealTKTDatE1GgKHU,9989
499
+ tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md,sha256=z726aoOjtxeMN0VbLT5WikYC1yTdUafgGl0fX8UFwU0,11029
500
+ tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md,sha256=ogu4VoSjpqSoRL_rbaaHqrawFvkTM0Iyhug_MT6DJYE,11650
501
+ tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md,sha256=K-EWBfk7SRSp2ozO_88Lj7vJVMllmTe_9gXnlWUh7G4,10828
502
+ tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md,sha256=EUEjPccw1UCl4nWFumgtMtyZxFfGM5aV4pQ9KvoBWHU,12709
503
+ tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md,sha256=OjBFkq2vQKeckSq4IMslzGgb6efw6yBB0UrtoCYj4BE,10599
504
+ tapps_agents/experts/knowledge/performance/anti-patterns.md,sha256=x7zxfglAFbwk3T-KSGg5ap__2Vd39iP61oqyje4Fl8Q,5026
505
+ tapps_agents/experts/knowledge/performance/api-performance.md,sha256=MhQmBdZ5eabTanApAesqeifPP7o82Zogsl9ZUnWd5eY,5211
506
+ tapps_agents/experts/knowledge/performance/caching.md,sha256=x8CwPvNfk3wmTKK_acadcIUaq1d2nQV93zugbYZQJHs,5925
507
+ tapps_agents/experts/knowledge/performance/database-performance.md,sha256=1FwiIPRsNcTw5CZaT_najq27lWbx4FYqnMrDt7mcWBw,5076
508
+ tapps_agents/experts/knowledge/performance/optimization-patterns.md,sha256=tni_iR1Hwae8FPOXbBz7hPXkl__PsYsYWAbZacHFK_4,7428
509
+ tapps_agents/experts/knowledge/performance/profiling.md,sha256=rmyrx1RKtHyaGJJcHibxU4s0C31NbVrAENU5brP-0s4,5652
510
+ tapps_agents/experts/knowledge/performance/resource-management.md,sha256=__GG9QXIHYAsiT5ziJ8GhX8dQt3hEJtCSuPEeeJH1z0,6486
511
+ tapps_agents/experts/knowledge/performance/scalability.md,sha256=J2IyAekCco-eJEuvGcsCYh0VX3ZrIGHa2PXUrdjfr6E,6574
512
+ tapps_agents/experts/knowledge/security/owasp-top10.md,sha256=v-_GM9plD0QdU8awggnnrpl8nDVkmafRbat8g7_gpKM,8723
513
+ tapps_agents/experts/knowledge/security/secure-coding-practices.md,sha256=lCbZY9rqkkxbnSw2GK6sr3C-GWztAPooydrnMC6cHA8,6745
514
+ tapps_agents/experts/knowledge/security/threat-modeling.md,sha256=DVDe3Lmlowh9KruBnS5HbWk5m-LEk8zYxOkUWoFAOUI,5785
515
+ tapps_agents/experts/knowledge/security/vulnerability-patterns.md,sha256=F6WzcbKfR7rj7HI1NKvzMqxOb6vCM6qNfkeixrZWxOE,7830
516
+ tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md,sha256=NPdglcRhBcmCP-HcjSHLf7YMdj8Y6geYKEh0x_S8ir8,5907
517
+ tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md,sha256=At_bwNQ-Crg4o7xjbsQbWHR4GnbCaYi0rkcfnblb204,10525
518
+ tapps_agents/experts/knowledge/software-architecture/service-communication.md,sha256=11rmZeBOdO3yhAPF-yec1I1_gRKBvjKGCOC1jJ9JUTk,8371
519
+ tapps_agents/experts/knowledge/testing/best-practices.md,sha256=0sT_1ILHPYiGjJPOQ84vLmjoVN3XDLe0jyKhasKLmfw,6304
520
+ tapps_agents/experts/knowledge/testing/coverage-analysis.md,sha256=5fRacWrCcQ9w9n8u3hhN82Ok55OiHSFuGR__9WeC-Cs,5720
521
+ tapps_agents/experts/knowledge/testing/mocking.md,sha256=9CKAorAMoyp3D0f-v6vXVs2rKMj5EjjT0mBDJ7FJN00,5195
522
+ tapps_agents/experts/knowledge/testing/test-automation.md,sha256=_7u-s8nnvQ-6cOoYRYvg-UUJT8ZFUm8e0qneVxhtAZk,5336
523
+ tapps_agents/experts/knowledge/testing/test-data.md,sha256=N4RlJZXyqboqkJOyYmv4CC302asEP43Ee9hpYp4dC-g,5537
524
+ tapps_agents/experts/knowledge/testing/test-design-patterns.md,sha256=FHQegEMGqqUddjCd64SrtmSC7WzlMi-TO0ILzciMkRU,6061
525
+ tapps_agents/experts/knowledge/testing/test-maintenance.md,sha256=3BxthrZNzVyy-z4R0L1ltHPAiXFBiq1zQRX6uikh1E0,4828
526
+ tapps_agents/experts/knowledge/testing/test-strategies.md,sha256=Kq4det4B3JZ6JjGAWl09wl_LwThte4oNSLEPtUJhEVc,6198
527
+ tapps_agents/experts/knowledge/user-experience/information-architecture.md,sha256=WxP3XJfmLSrsNsegZy7HFAgLXU7xn70aCrMmvH3USG8,5886
528
+ tapps_agents/experts/knowledge/user-experience/interaction-design.md,sha256=u-_G_DjhQxzrzPIvhYQC_qb1U77oKM4yCWW8vLvHiZA,6638
529
+ tapps_agents/experts/knowledge/user-experience/prototyping.md,sha256=oOI4qE6ydeBAbzu8_e3KHN7Z9AmoobAhGGZnMr1nYZo,5535
530
+ tapps_agents/experts/knowledge/user-experience/usability-heuristics.md,sha256=ubkTGA-9PLy3OWE_7R-uFsF9sn3CLGzBr1C7x0LTqg4,8087
531
+ tapps_agents/experts/knowledge/user-experience/usability-testing.md,sha256=u_KNGtt30rkRSM-XQAgkifrf4gvN0_nAoA2MjoCM0_g,5704
532
+ tapps_agents/experts/knowledge/user-experience/user-journeys.md,sha256=1jXPXznEZuTv7fvthjEmfMKENzID7E1ZJimUByF2tcc,5037
533
+ tapps_agents/experts/knowledge/user-experience/user-research.md,sha256=rte_IA0sYS8m0qt_Oz6JYNTUsI1vhgo5dOnMdsxYOV4,6695
534
+ tapps_agents/experts/knowledge/user-experience/ux-principles.md,sha256=LWeNens3qEnfJpAyILa-MVbYjSVz9LRG512p3cbsrDQ,6525
535
+ tapps_agents/health/__init__.py,sha256=edaEKPyopbDM1hplMBEt5N1xcVtqkRzaOGXAs0mubzY,645
536
+ tapps_agents/health/base.py,sha256=1R7V1a7hCKFkJ2DUuc4SAcHXgPZELaHhwCJhhdElcoo,1903
537
+ tapps_agents/health/collector.py,sha256=yTLBaqgvP7BFGo98Btaxb6MKaMOBym9jOBWNY8SPzsA,9582
538
+ tapps_agents/health/dashboard.py,sha256=mCaERCimQimKyPCcIbxsMyAk86XXjz5NDDJDk67LRDE,4433
539
+ tapps_agents/health/metrics.py,sha256=i8oKjD44UP4q_CCgH3niuppDlwx9Xbs9_h05KOkQwXw,4670
540
+ tapps_agents/health/orchestrator.py,sha256=OHWevEKKvd0MivTxKPp6274A9fyYGO_WIt3JVb6h4U8,9836
541
+ tapps_agents/health/registry.py,sha256=ZBY7iuZJz3BXC9-eOPyxUQUOUWSQpx8TksBVZ1ObDSw,4882
542
+ tapps_agents/health/checks/__init__.py,sha256=7pPbZULDePvdnM9Vc2zARBGLhSlyMqtVRt9x9Lc4bJs,600
543
+ tapps_agents/health/checks/automation.py,sha256=BFel3D9VcXKTP5twZwhBQexCtxMjyQuhlJYuUdCP-9A,4950
544
+ tapps_agents/health/checks/context7_cache.py,sha256=5nlpB52nJraeLwzcPNhHLdTdjxQobQJYEecC1ie982Q,8761
545
+ tapps_agents/health/checks/environment.py,sha256=DvTB_IxxNzJZ2YnHIURWVSBMo9MS1BiDmZExLpPAljk,4122
546
+ tapps_agents/health/checks/execution.py,sha256=urqZtXENyZPTd5jOo-EufSW1irYlQMD8KI4PLpSLLr8,6881
547
+ tapps_agents/health/checks/knowledge_base.py,sha256=e86NaPnRA_0LpfNvqcrBUt0jHs9Lzg5nxJeeP2efkHg,7318
548
+ tapps_agents/health/checks/outcomes.backup_20260204_064058.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
549
+ tapps_agents/health/checks/outcomes.backup_20260204_064256.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
550
+ tapps_agents/health/checks/outcomes.backup_20260204_064600.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
551
+ tapps_agents/health/checks/outcomes.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
552
+ tapps_agents/hooks/__init__.py,sha256=EDL7yMB8-Cb2AMuBRHNAInrxhf63fFZgsvJv3nOlARc,822
553
+ tapps_agents/hooks/config.py,sha256=uLl_GTPTSw2pC8336K7kWJQOgOwJXHNOrXGLvbLfNdY,4418
554
+ tapps_agents/hooks/events.py,sha256=7hY9okOG97jW0-LP5DokEBkBx9jQL4ef6zClLGVVcqM,4056
555
+ tapps_agents/hooks/executor.py,sha256=xc9BnHBoZcPCO_0tzyO9b27F0rhAa1UyJhDIAR3uEPs,4305
556
+ tapps_agents/hooks/manager.py,sha256=hV5dPnttP2TdZ0ifXO-gLg2S8-WaZeR6KGfErvANKgo,5038
557
+ tapps_agents/integration/__init__.py,sha256=yWNId0-cg6NKkrjw4pYlRiS6IWYcGLKUb36_PT4iIE0,132
558
+ tapps_agents/integration/service_integrator.py,sha256=7tIiT8J62XQUB7DFXUx2mJiTzEu2xXPrzz0Q_TglkhE,4012
559
+ tapps_agents/integrations/__init__.py,sha256=UbOmMwyHrjhHB4zhSX5g37FrIO_yz2TZ59UkyvqaQMc,246
560
+ tapps_agents/integrations/clawdbot.py,sha256=CI6BlzkPHLRYBRs8i4mPpdUiwWMUX6F70zWYnWOYizk,18411
561
+ tapps_agents/integrations/memory_bridge.py,sha256=8iUVcTKett3yZI3XjUwF70zt0L8DJke2iQurmTX3LGA,12536
562
+ tapps_agents/mcp/__init__.py,sha256=wE15It2U6ie2tfvPhEnqTS4AIJXEK9esoP8tbGpijDA,511
563
+ tapps_agents/mcp/gateway.py,sha256=hywGdL3HHMgQKTN7hwfAMOnvH2O-1K7PwgmlLV9tMlo,3369
564
+ tapps_agents/mcp/tool_registry.py,sha256=D5SHJnSyzZWcg8CsYtMzgOV20fUwwe4bSa75YeCzHp4,3080
565
+ tapps_agents/mcp/servers/__init__.py,sha256=MVJ9DRV65an-pTQZnlPHOLAKaWFUvYGqmf7uZPmVBx0,314
566
+ tapps_agents/mcp/servers/analysis.py,sha256=xAtlm94jzCstWbpsWw68-WSPcycT7ZrZtRtUOPf-yE8,6918
567
+ tapps_agents/mcp/servers/context7.py,sha256=GUU2FFBPPXRZvtOSLCAwlMRtp0WBYJm3TifUzzGn3uo,7321
568
+ tapps_agents/mcp/servers/filesystem.py,sha256=8bXeQQOGwgcOpF6TqW6-5oW8Ho_eI8v5sz7npA5Cq7w,7417
569
+ tapps_agents/mcp/servers/git.py,sha256=O-S1vUT05WP2oEo9eAJ3N4WKTzU1iqKz-jOhYSeSelY,6889
570
+ tapps_agents/quality/__init__.py,sha256=GGOabn62_EZDKY4flqa7cM42bIeWUu1dBKgOqGup8xI,1012
571
+ tapps_agents/quality/coverage_analyzer.py,sha256=4OoxbG0COQqzei7Osl9_ucXMfvp7mBR34t9XvseAW9Y,13122
572
+ tapps_agents/quality/enforcement.py,sha256=FuSV8uWpmLnMhPJc7w3SvxPEdMCisl-0EFmJfvHdKnw,2358
573
+ tapps_agents/quality/quality_gates.py,sha256=ba-B4X9YnfBtW7ZDCXC-GgzbRELRIu7tM8rFc2A_4pI,14410
574
+ tapps_agents/quality/secret_scanner.py,sha256=nEyn1-h6aYUspSZvJX2YBv_3KxsLbDqZQu-5C5rzgSU,11621
575
+ tapps_agents/quality/gates/__init__.py,sha256=hhG_yJC37rXJMlzKliNGU8VFfSrzU6mq_pMdFXlQm4w,910
576
+ tapps_agents/quality/gates/approval_gate.py,sha256=UTZDBFu_tJkjaeFjIDpy-8Bz8Xpm0F96TASHqhfghFQ,9727
577
+ tapps_agents/quality/gates/base.py,sha256=rpBHkC8_LOUb7nTNs2yLghOznXwqYxzXHvGxOb8NN4k,2031
578
+ tapps_agents/quality/gates/exceptions.py,sha256=vBcYDtaswDskl91wdCXimDsOsYRDRo_RJcFauv8UiSg,956
579
+ tapps_agents/quality/gates/policy_gate.py,sha256=d4Pjoo4jrd42_nLjWnl5hkpzXoW0FHpiRcPGzW68YJI,7187
580
+ tapps_agents/quality/gates/registry.py,sha256=j2VykyYKqxUfSxUv1-JYsovrQZ7DFOOB2vx_vChRnZg,7653
581
+ tapps_agents/quality/gates/security_gate.py,sha256=7TvVoiWbZxoFYlISkWpO7Jy1L6G8rso3KbODTb5F1lk,6096
582
+ tapps_agents/resources/__init__.py,sha256=HukQESGBwE65OfA2Yd_TqzuJ1O2LTA8As256vjhs40A,199
583
+ tapps_agents/resources/claude/__init__.py,sha256=ToaFT-lL75TRmb2ixlpYzNRZiwUWSIaJz1Amh9q8aZY,45
584
+ tapps_agents/resources/claude/commands/README.md,sha256=jvgQgWQ3rCmWknCUxC2ulkccCNxfI7ranQGDdhB1VHI,5014
585
+ tapps_agents/resources/claude/commands/__init__.py,sha256=9plcoQ8XxqBDdRNfOSSildl-5Uc4N7TgdFFarsD96cQ,43
586
+ tapps_agents/resources/claude/commands/build-fix.md,sha256=t1G7VJv4NaUN9bRQO5T3TA7mTSXd7EwCJsUNtpQLITg,514
587
+ tapps_agents/resources/claude/commands/build.md,sha256=AWN_Pp0gSIzr87RT-D_zzPFOJaqYD2wAyuWtTQszYsQ,2475
588
+ tapps_agents/resources/claude/commands/debug.md,sha256=YtGWF1v_ZZw2voNhlEL_que8u6_oSlV9rVHqRdsBJII,1533
589
+ tapps_agents/resources/claude/commands/design.md,sha256=cM2JSGKOsShTM_8Xd7tlksdMynkR7rqUEBZ6MQpnQDU,1611
590
+ tapps_agents/resources/claude/commands/docs.md,sha256=Qkdv4a9QAzVnyjL3I0DxrTNsEUfqEnEh7Pr3Na1FuuI,1339
591
+ tapps_agents/resources/claude/commands/e2e.md,sha256=jWm39kJbOCuX_QPkAKth7h4ixuYzbOcOk5zII9Qji6Q,454
592
+ tapps_agents/resources/claude/commands/fix.md,sha256=tz1C0OGKepLHg9s55qWYbdf1-_8EjDuoU4O4bqnRlGw,1416
593
+ tapps_agents/resources/claude/commands/implement.md,sha256=RNI3EKfWfu13UoBRlLl9CbGbwrdA2cP_iVMSPfqFD2o,1684
594
+ tapps_agents/resources/claude/commands/improve.md,sha256=58OnqJ5omPl_Qq4-JGLfMDxqYWowRmEEU44D5pA7B7U,1593
595
+ tapps_agents/resources/claude/commands/library-docs.md,sha256=UQB4uLC-oWYww7VAnC8u3RH7f4efCFbS_HNgMAdF0Bw,1580
596
+ tapps_agents/resources/claude/commands/lint.md,sha256=_rn6qOoSpCFd7JPQNdfrYHdJS7Vr8A5bK09w47d6d60,1201
597
+ tapps_agents/resources/claude/commands/plan.md,sha256=6JaCgpAdHeQxvHqfGI4XEh87md_bqDw5vuFUaf7Acx0,1583
598
+ tapps_agents/resources/claude/commands/refactor-clean.md,sha256=5tu0vGebLQeoi-oWE0Z42JKq8GJMFK6mBq7NAZwKhYE,471
599
+ tapps_agents/resources/claude/commands/refactor.md,sha256=QE5_xE8qJDbBBHC3zmX600Eyj5FCwDl4LI2FPcJdbks,1757
600
+ tapps_agents/resources/claude/commands/review.md,sha256=OMAa_1gCUfzINVlFkP6WPAvqHiD1fmhshzjnSnJNjzI,1517
601
+ tapps_agents/resources/claude/commands/score.md,sha256=POd27GJN79AT8_SVYZk7U5d1mFxjg7NAIW7oNRmWjCM,1201
602
+ tapps_agents/resources/claude/commands/security-review.md,sha256=DUNjGvDXRQp4GhWz_ris7XwRSXDEp9PjkwEu7azD7DU,487
603
+ tapps_agents/resources/claude/commands/security-scan.md,sha256=tbFLJshk_G-1EfyxUphEImp-bicCeGw0AF2CaD742hQ,1443
604
+ tapps_agents/resources/claude/commands/tdd.md,sha256=3IJHvahh3R4Po33wfQ_oxqYLR4Rtml9t_MmrPduDDSI,564
605
+ tapps_agents/resources/claude/commands/test-coverage.md,sha256=SyLead9jUvpSigIxoslIyvm5ecR-TGWeZJqOkgelrvQ,495
606
+ tapps_agents/resources/claude/commands/test.md,sha256=SiFwSdppLRbjmGVzSy4qqaVb376GdX6He0qi80loIzE,1369
607
+ tapps_agents/resources/claude/commands/update-codemaps.md,sha256=DWJNNZQbTI0BUj1Y8uJR7147WCrGK1X0SiNY2i4eZwk,384
608
+ tapps_agents/resources/claude/commands/update-docs.md,sha256=y1ynQ1b5G4bouuj2_hNTISEcRVTIvs9oyfk_q3sezAI,370
609
+ tapps_agents/resources/claude/skills/__init__.py,sha256=UqlSBoIPpXwrKL4_Nwi74H0orW3OAj0vQLIRHpcN59k,41
610
+ tapps_agents/resources/claude/skills/analyst/SKILL.md,sha256=In1sJ_zdlbB4q3pB03ni9OYs5syKX4euUoevSRRVMAA,8812
611
+ tapps_agents/resources/claude/skills/analyst/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
612
+ tapps_agents/resources/claude/skills/architect/SKILL.md,sha256=uFZtQhAsD67MN9yfQ9rTrSh6T6K0CEHjnBnGwa-XR9c,9313
613
+ tapps_agents/resources/claude/skills/architect/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
614
+ tapps_agents/resources/claude/skills/backend-patterns/SKILL.md,sha256=sZKi0OrFIRBpSVE1VpfuEqsV6QJwxEI_99RU_YA8kb8,1368
615
+ tapps_agents/resources/claude/skills/backend-patterns/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
616
+ tapps_agents/resources/claude/skills/coding-standards/SKILL.md,sha256=lKPjh3tl8YNCfI3Qja8HoNlgZ8ngBwYuOefGLFcnjlA,1154
617
+ tapps_agents/resources/claude/skills/coding-standards/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
618
+ tapps_agents/resources/claude/skills/debugger/SKILL.md,sha256=lm_s-cjLw64uUUCUxvXRBqsbhRt_qHizfPaNTPMwwi0,7106
619
+ tapps_agents/resources/claude/skills/debugger/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
620
+ tapps_agents/resources/claude/skills/designer/SKILL.md,sha256=gYhJlQz2ZrfR397okbXaEUx4VQXlI19SjtGtXkN0pXE,7768
621
+ tapps_agents/resources/claude/skills/designer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
622
+ tapps_agents/resources/claude/skills/documenter/SKILL.md,sha256=aVzHeO7T0O1E9dbWu3wYUBF_i7eIBqa3O5huvEvt22w,7163
623
+ tapps_agents/resources/claude/skills/documenter/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
624
+ tapps_agents/resources/claude/skills/enhancer/SKILL.md,sha256=RWBkAPC0RCyJ3gLFOTjJgVTqVukbu8DcsuN4o1F7_N4,9541
625
+ tapps_agents/resources/claude/skills/enhancer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
626
+ tapps_agents/resources/claude/skills/evaluator/SKILL.md,sha256=6pzh4fLCgoIxaDBZzhS2kbV6q2Yvkx1I8gQoKJL4PKo,6489
627
+ tapps_agents/resources/claude/skills/evaluator/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
628
+ tapps_agents/resources/claude/skills/frontend-patterns/SKILL.md,sha256=0cTvFNmS_X2fZeUxyKy3ECKglBKBJFeVNGfyVapgbNo,1191
629
+ tapps_agents/resources/claude/skills/frontend-patterns/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
630
+ tapps_agents/resources/claude/skills/implementer/SKILL.md,sha256=J5wM_CUUAYWYj2aR8HxPuAIbfSmsku-4krpdxRaWO2A,7193
631
+ tapps_agents/resources/claude/skills/implementer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
632
+ tapps_agents/resources/claude/skills/improver/SKILL.md,sha256=6hXQLdy1etMSoZcIzPYKGxEHED54rMAoXRpJldMJYqU,7172
633
+ tapps_agents/resources/claude/skills/improver/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
634
+ tapps_agents/resources/claude/skills/ops/SKILL.md,sha256=77L3Gbap_9u6JipQJthH18eGa8-AWh-0cG1MSeQ-u_Y,9271
635
+ tapps_agents/resources/claude/skills/ops/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
636
+ tapps_agents/resources/claude/skills/orchestrator/SKILL.md,sha256=h8g4UehGXMp4nv25UUGCqZiRjuduGxgu846cwDiopKo,10348
637
+ tapps_agents/resources/claude/skills/orchestrator/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
638
+ tapps_agents/resources/claude/skills/planner/SKILL.md,sha256=pdsmRbR4I0C9YdwNT6VMn5QVBpJp8QXGQdjnjniZDAQ,7676
639
+ tapps_agents/resources/claude/skills/planner/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
640
+ tapps_agents/resources/claude/skills/reviewer/SKILL.md,sha256=o0pN2aL3rn2XWVZliQ4RrHMPjoNw1vefvuSwxRgW6N8,14381
641
+ tapps_agents/resources/claude/skills/reviewer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
642
+ tapps_agents/resources/claude/skills/security-review/SKILL.md,sha256=Yw26Y3MxgSjRzx1RX7lfRFYo0UbZl9fipHL0_o1P5gM,1193
643
+ tapps_agents/resources/claude/skills/security-review/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
644
+ tapps_agents/resources/claude/skills/simple-mode/SKILL.md,sha256=IwLlsAAj5NFJkijOfbHCz6tbbImQhywYTojrrEscauo,21991
645
+ tapps_agents/resources/claude/skills/simple-mode/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
646
+ tapps_agents/resources/claude/skills/tester/SKILL.md,sha256=upkl-Za-Vw8ZZ6YD4ajQjmSvs2zdpeOXXLB5wJOyy_Q,6993
647
+ tapps_agents/resources/claude/skills/tester/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
648
+ tapps_agents/resources/cursor/.cursorignore,sha256=Ffpdc630_-2ou5tvGuWy-WiQMCnhBMZL1SpUHf3flvM,665
649
+ tapps_agents/resources/cursor/__init__.py,sha256=Be5_HzNOq5f5V10FhwuYhCqBkk-O71j-b40ajq6mJPA,41
650
+ tapps_agents/resources/cursor/commands/__init__.py,sha256=G2_fJLa98LIZre0Rrtefpd6VE2hxD8xBKOqs0hw0CPY,39
651
+ tapps_agents/resources/cursor/commands/build-fix.md,sha256=Z6eEhSnsJFdOovRbGgGYeizX6G4Ds2Odg5erAn0VcDc,518
652
+ tapps_agents/resources/cursor/commands/build.md,sha256=qMLaKEL6-nTOPz0XxcKrabEJJE-eI6DCF4Ibdc48MLA,396
653
+ tapps_agents/resources/cursor/commands/e2e.md,sha256=BzjCcxNGsiWu4cdU92vU1BCCL9G0bpPgCoO7Cb4XilE,400
654
+ tapps_agents/resources/cursor/commands/fix.md,sha256=kUNcDIUR_woKo83SD8wUfd5lAa8k-o2PfEIOcvqTweQ,345
655
+ tapps_agents/resources/cursor/commands/refactor-clean.md,sha256=jIkox15BjXkFs0-aRqnSx1lFiXHG9rSC3WRq3AJrIow,408
656
+ tapps_agents/resources/cursor/commands/review.md,sha256=p0ZPG9VaUSwPZ7nuoOS3kaKnHp27nVAHaUcqmUDw4RQ,274
657
+ tapps_agents/resources/cursor/commands/security-review.md,sha256=2dWPDYtUxVIB3U7PD4moOFANpVmtDd0tzqwrz5RlI2E,443
658
+ tapps_agents/resources/cursor/commands/tdd.md,sha256=KJ795ZY6ApjNmO1gA4_FarqhwwbRb5BqH-StsSzrzk0,458
659
+ tapps_agents/resources/cursor/commands/test-coverage.md,sha256=0ApeUrjSeNHLSl5hpM5QMcG4AbvS4SJ2b_J-y-RB_C8,493
660
+ tapps_agents/resources/cursor/commands/test.md,sha256=ftHNsTf-ubUeqAUfIs1GvPrsT9OgCgTSB31scMXfrro,255
661
+ tapps_agents/resources/cursor/commands/update-codemaps.md,sha256=r8R-SJSyqh2ytCm21UcndueKbQfF30XaC23R2jGx1pA,362
662
+ tapps_agents/resources/cursor/commands/update-docs.md,sha256=-qOrg3buY4q4D2n6t7w6-oKWi3GcRpJTKEjSxG4ykgY,419
663
+ tapps_agents/resources/cursor/rules/__init__.py,sha256=VRdfU9th4BTM16NRgmxhwlXs_8Toew0XT7LwRE02cMc,36
664
+ tapps_agents/resources/cursor/rules/agent-capabilities.mdc,sha256=nyK48WetxUFOjk4PUi64HEBmYv7oA1Ly7p8IPHPdPD8,21082
665
+ tapps_agents/resources/cursor/rules/coding-style.mdc,sha256=XHrpCfZFlhFiKKvHhFIYxVSxB9wcfpBDQ77T0o7HDsQ,1033
666
+ tapps_agents/resources/cursor/rules/command-reference.mdc,sha256=QN5QxBiJ9hagu-Dmv-WhzBlNOv5u5kPDYGTRzGmeoDQ,69869
667
+ tapps_agents/resources/cursor/rules/cursor-mode-usage.mdc,sha256=YTExL18GH98K1JVR2KLWoL99zDtPaP2IusLueIrtg34,3777
668
+ tapps_agents/resources/cursor/rules/git-workflow.mdc,sha256=poyYKoxFdO9e0q4b03r2b-1Om6CDRf50lH8Gw5XBqbc,1192
669
+ tapps_agents/resources/cursor/rules/performance.mdc,sha256=XmiT4B1Xe8Z1jcocGV1fgPgbZmmkJ4YzTRLDubmcSIY,1465
670
+ tapps_agents/resources/cursor/rules/project-context.mdc,sha256=2TV1vt94RhDJdrGMn9zlPoQOVg6DW6FrOK-Yk5qtexg,6854
671
+ tapps_agents/resources/cursor/rules/project-profiling.mdc,sha256=85rr1GChg_iKegizO-iSbqIxSWSfVhuL33dibrlbpK8,6659
672
+ tapps_agents/resources/cursor/rules/quick-reference.mdc,sha256=iBvW9BpG-geisEsPL_gM39_awMUM0rXXYnJQy9KXqpc,21074
673
+ tapps_agents/resources/cursor/rules/security.mdc,sha256=67X6LUbsuONOlXcXfPh6a5ozHunpnJcUXjVaqJ69Ry0,1284
674
+ tapps_agents/resources/cursor/rules/simple-mode.mdc,sha256=AcStGMlntBRAUruJRac3jZ9m3h0O1XpnTc4VDjAQAnk,19915
675
+ tapps_agents/resources/cursor/rules/testing.mdc,sha256=r6X2qimAx5updSLsh1kE340EnLGljCIghii6-t7il5Q,1118
676
+ tapps_agents/resources/cursor/rules/when-to-use.mdc,sha256=nixxLQKxRUPreJ3ZUN1AKVEkhyYHK3kLidJPrXPZ0tU,12927
677
+ tapps_agents/resources/cursor/rules/workflow-presets.mdc,sha256=_1uHK4KMAhe4amX2rbvR5Omb-lqjd53QQvF7DMtBFgw,5759
678
+ tapps_agents/resources/customizations/__init__.py,sha256=nFtjp6sYFsqTkVcD6yjbslZjoQ_ISx-Lnv1KmbWWxUI,32
679
+ tapps_agents/resources/customizations/example-custom.yaml,sha256=8efplEXW6nazLYcRZQfL81G1d5423kZmmW2PmNG3R_w,2507
680
+ tapps_agents/resources/hooks/__init__.py,sha256=iKkuFGcbpTKPkN-ZJBwuKGS9RY0SkOyKi6nL7TS0HKE,23
681
+ tapps_agents/resources/hooks/templates/README.md,sha256=5j5U9MH9aahu3jDJt4XhdbTLhyXPlyuCis9LxyTQJMY,368
682
+ tapps_agents/resources/hooks/templates/__init__.py,sha256=vOPX68bBxDt1lg5YujyRE54twqToDhlhfAbnoUZfBDY,34
683
+ tapps_agents/resources/hooks/templates/add-project-context.yaml,sha256=dQnd_-XTusgUCiWBHYC_afQ66mqP0kDaXTh6pYfglN8,377
684
+ tapps_agents/resources/hooks/templates/auto-format-js.yaml,sha256=jBCg7uEhLA0X-0tRkqCn6V1BS6CvaZrovh8uaXcDQAU,380
685
+ tapps_agents/resources/hooks/templates/auto-format-python.yaml,sha256=TVfw2Iva_SwAMY_73nhHATD8Wy6JAw7lq5c2dv1uq74,325
686
+ tapps_agents/resources/hooks/templates/git-commit-check.yaml,sha256=GfUmd9F03otLxkSibGdmHnvyvuNSQmQN6XTlHOwJG_s,230
687
+ tapps_agents/resources/hooks/templates/notify-on-complete.yaml,sha256=0pqZfmBCuMWB0o-EMGeZlU9WAqlpM_EZFE5MaSWg_ng,342
688
+ tapps_agents/resources/hooks/templates/quality-gate.yaml,sha256=jcW0vZ7-i_h_ynUIryihw5D27Vyh_XJVOkuvH3rl3NE,361
689
+ tapps_agents/resources/hooks/templates/security-scan-on-edit.yaml,sha256=2CpXi3iYc0Nb0Zy7qjjbNpwH3QCArR3JLkNAnKkOWQA,370
690
+ tapps_agents/resources/hooks/templates/session-end-log.yaml,sha256=kGeveNLOcWVXuvHkUtxi7PBZh1lHhQyG3SAMCJVQSFQ,202
691
+ tapps_agents/resources/hooks/templates/show-beads-ready.yaml,sha256=ZqSl_sUoThD3Kl8XGXVlfFb_BcHkebZsLZNvVZB734U,274
692
+ tapps_agents/resources/hooks/templates/test-on-edit.yaml,sha256=G7krTRU-Tv2mR24uMXtgL-hE_tP7XJz3eCm77o1iFsg,344
693
+ tapps_agents/resources/hooks/templates/update-docs-on-complete.yaml,sha256=k25DBWoAl70Pb19f-_gEHtBk9Ox9ZJGMjB5zyWdGhqA,308
694
+ tapps_agents/resources/hooks/templates/user-prompt-log.yaml,sha256=ebMPHtdNlv9t9ps1a46qjyZp-xJdSiZcJraVt6haxhU,256
695
+ tapps_agents/resources/scripts/__init__.py,sha256=4GBDOhdSXrLC2Rh83eG_RqIhDNVeNa3UFAyosHQDRUU,25
696
+ tapps_agents/resources/scripts/set_bd_path.ps1,sha256=0npzKRQRu9-pSbVinSCKP905pttOXesBo2zIqnzp_EU,1696
697
+ tapps_agents/resources/workflows/__init__.py,sha256=yG28haWs8ESaesnsB_hIJqNwnNAIooW3gAy_5n_1Wd0,27
698
+ tapps_agents/resources/workflows/presets/__init__.py,sha256=7bCDIlz82Niol3MB4L-1BkxMrlnzFrkhgRnjy85xVwU,39
699
+ tapps_agents/resources/workflows/presets/brownfield-analysis.yaml,sha256=Lhgg8TfIndy0f67M7qM5U5kl4AGxdUDHFoghsgPJ_8E,7187
700
+ tapps_agents/resources/workflows/presets/fix.yaml,sha256=-P-yZFGJLaJO5WEhyxfCbwytoiVryUdlLxSGO9srSxA,1642
701
+ tapps_agents/resources/workflows/presets/full-sdlc.yaml,sha256=M9ewGWJyJdihV88cF5bdnyMzCjMt9qgzwRQsFNL2KR8,2603
702
+ tapps_agents/resources/workflows/presets/quality.yaml,sha256=Hbkd-Y0lI5-bg2mkSatMb8THgI0BDAInmWsJnjXmxp8,1770
703
+ tapps_agents/resources/workflows/presets/rapid-dev.yaml,sha256=BzvNCmEdIGn97tBovRddzgSIXFUZkIRjz0cBQ4pbOVE,1809
704
+ tapps_agents/session/__init__.py,sha256=B6HCY2scz0fT8Ss8-TMoUNcqH1Pqy-R4t0OUomAbT3Q,454
705
+ tapps_agents/session/manager.py,sha256=4PuYAapCga5Hlevc3OTpY-ePNn6VkFtIssbGMYJse98,8762
706
+ tapps_agents/simple_mode/__init__.py,sha256=B-UzNIImDVWBRCmnlZEz1V8SQu22gslNrNPb3p4PDBA,1821
707
+ tapps_agents/simple_mode/agent_contracts.py,sha256=TnigBf8rKzUxeoHtz-S-58W-azyUJqHitZjGBDm3EVY,11881
708
+ tapps_agents/simple_mode/beads_hooks.py,sha256=58PCMg3EZvl6QnEHmUpF7Qj5cRiF3XQ3pZ0iY24EPnc,5115
709
+ tapps_agents/simple_mode/checkpoint_manager.py,sha256=_z2iJ2Qv6oK4lsINbcTqXWsq88BkXwYJhvhLCyKgMUo,42152
710
+ tapps_agents/simple_mode/code_snippet_handler.py,sha256=wnuzx0OgbUQ6SL5kDlVdpupBr7FrPA60L-NeP5U07kA,11235
711
+ tapps_agents/simple_mode/documentation_manager.py,sha256=udBQcQtF2eryigTz6nuQ62zLNrfrhfxLtG1Q-p9d4Ks,13336
712
+ tapps_agents/simple_mode/documentation_reader.py,sha256=A4RyMyIdo1M0Xf0U6PyXpdE8VK2dc9NF2Tzmj3jF-Q8,5905
713
+ tapps_agents/simple_mode/error_handling.py,sha256=4ncWUrFHw22TYRQRRxldxeGmcCFh_ebrHPDWeCPMRE8,10740
714
+ tapps_agents/simple_mode/file_inference.py,sha256=rPwb3ASqh27RYbU750HQsLHVzqSMXzN5vhGlnmp_SVg,10759
715
+ tapps_agents/simple_mode/framework_change_detector.py,sha256=gV4k3NSFCWtPApaYwWphxqm3GBjvcN8q7v2I04jaDJM,9796
716
+ tapps_agents/simple_mode/intent_parser.py,sha256=0cBBdiq0ODUwwmQkkHKKeaUDmCj6qfEIWBwsKLOMLnQ,17597
717
+ tapps_agents/simple_mode/learning_progression.py,sha256=5ZQm45fAen00RhxKep-q9Bo-TlxrRgebze2zSaySxDw,13538
718
+ tapps_agents/simple_mode/nl_handler.py,sha256=tKmYE37as1ktp26sbl_z_vZnKRuj7rNJEMINwuJbYc4,27805
719
+ tapps_agents/simple_mode/onboarding.py,sha256=xJ319mSnBdO5EGpWYDAEEYaE01UDrAFisM-o2Nouea0,9689
720
+ tapps_agents/simple_mode/output_aggregator.py,sha256=0MUH_sgLNRk9HgHqw8JV5yBDjlDHodJn0AGmF4u2xKg,14357
721
+ tapps_agents/simple_mode/prompt_analyzer.py,sha256=uS99XPlX6u6gI78cYabl1quuBCGZc5WIl_-Ptpd5lQE,14251
722
+ tapps_agents/simple_mode/result_formatters.py,sha256=bYYrryDYd09qlc_bebRT26yQz6HVx6qCIqop3Q7fNIA,17743
723
+ tapps_agents/simple_mode/step_dependencies.py,sha256=Wecic2cJP0IOkn6Q8o_PcouS5o7dFvN-MFUV1qHuwDE,11856
724
+ tapps_agents/simple_mode/step_results.py,sha256=PzAB2GuNV94RIKP0u3XURWfRWk2Is6nr7hWFoDkljWA,9318
725
+ tapps_agents/simple_mode/streaming.py,sha256=faAySybvrQc0c-0Wvt37uF1zLU9f3QmXDKDeLDcvipw,13607
726
+ tapps_agents/simple_mode/variations.py,sha256=SfO9PTj8M88-ACLK3HkujWL3tBHYz3pccSg3ykeaEAs,2800
727
+ tapps_agents/simple_mode/visual_feedback.py,sha256=CJei9NhnGYRO55GBC8S4DqGK5YK9gm1mdDAUrQ1jFzo,8347
728
+ tapps_agents/simple_mode/workflow_selector.py,sha256=EBKpkMBeFS6WfIuRhMyTL8nnKRpj52MpnE7rpgHt0Zs,5288
729
+ tapps_agents/simple_mode/workflow_suggester.py,sha256=2KJaNyvOIk4GtENRynpkTLDBqzcg6aAZ80co3x2u7iU,23030
730
+ tapps_agents/simple_mode/zero_config.py,sha256=7edNF7AKiLjkzAKqOnVyUSTAu7baGBlM3QZMTNEEOug,10979
731
+ tapps_agents/simple_mode/formatters/__init__.py,sha256=xgAR0OZcKZiDaGLTOCCfvOI7gdBArnKyTcxVMfAE4Pc,167
732
+ tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthNEMZywWZMV4WYlEbk1SiqPhBsYsRVqrsQrAH3GIQ,5940
733
+ tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
734
+ tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
735
+ tapps_agents/simple_mode/orchestrators/__init__.py,sha256=DM6TzDQ24mSJH7STMN1_47s-7nUsglfBYxj7MXZU21k,1315
736
+ tapps_agents/simple_mode/orchestrators/base.py,sha256=bxSLMqL6p8uFrvyAL_ARJA1XCnzATc9LdOxNYl_-YzI,5667
737
+ tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=ZaS8vfGPJrsT9Qfz_fRfcjkActQOjotQWbWTuqLyjXc,1790
738
+ tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=m5jR5aru6U68sbgQPCuJSvSzW_-DJ6Suf4IUU8jeWBw,5149
739
+ tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=rKKMUFdUGKUClrHcuZeiuW79yvDK4jLiiutft9lp7zk,121098
740
+ tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=IMtxpzv1UscwCHp047Kx_qIeLU7_b407-yEAvS774-k,12574
741
+ tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=xmcicWcUPMwDHOfm-nS_6rV62-10dPZf8etj_eNGCYg,2112
742
+ tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=6rJ-g5R0GtsFaM90fCAhP26Ag3EKe71Cd1P-yUT0NHQ,4340
743
+ tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=MWkGaQ1kMj5H1B5ryHZUssMjXWI3Di11U_aUgrPJldA,6764
744
+ tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=jPnrLOKbcdn7BHoaeJsOvDvipBnuPR4NW6shL0Sr8lE,32812
745
+ tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=aR0qMtJ6jlUx1T5dhVn-_sYg9YPN0Wl7044kD7jYF40,7266
746
+ tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=1KPEBdAE2M163rwp367qRkrTGlRM1A53qIZmfM1kR5g,8603
747
+ tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=bOEj9m67HqHqa2oLY4YEP5wKdN8Knk1rsds5XXGAcdk,8157
748
+ tapps_agents/simple_mode/orchestrators/requirements_tracer.py,sha256=7k9j6zQ0bnTN5YF9CQalrx25GH6topalKtR3h34x93A,9157
749
+ tapps_agents/simple_mode/orchestrators/resume_orchestrator.py,sha256=GxUMAJ2j-2dG4Q8i2Fw602kusKxckyvJNdLIRj9pHsQ,7321
750
+ tapps_agents/simple_mode/orchestrators/review_orchestrator.py,sha256=-HZi5yc815tdXhvpT-7_FDz0lB_90h5V60MA2lMGHSs,6763
751
+ tapps_agents/simple_mode/orchestrators/test_orchestrator.py,sha256=_4vKRgNwoCxI7l_T-MZE7UTMP3xAcM36yO5n8CTztFA,2514
752
+ tapps_agents/simple_mode/orchestrators/todo_orchestrator.py,sha256=chLqedGDy8VO87lvObxMPqNtFxbbNnP3Ik6MXPGyQ3A,1820
753
+ tapps_agents/simple_mode/orchestrators/validate_orchestrator.py,sha256=n7zdv5aP0aeZ9OHopTcgH6ebNW0Bp69SrjxIuqa4fDM,8168
754
+ tapps_agents/simple_mode/workflows/__init__.py,sha256=G0m5BdxhKO3g0IEuNHRWrEBBKiVLVdHzlE1aw-9cITI,338
755
+ tapps_agents/simple_mode/workflows/quick_wins_workflow.py,sha256=baoGvmXG07fAmk2f4wtR-B-t3wlz0kYNrXl2rpVwTwA,10834
756
+ tapps_agents/simple_mode/workflows/validation_workflow.py,sha256=t54TeoDI60gGJsK7OUVB0wdnYl9bdm_BWHd3AEd56LI,14049
757
+ tapps_agents/suggestions/__init__.py,sha256=s2Knl1pmCgVPRqmCSE5Rjo_4-PK1QkQI1O6DTyKetu0,121
758
+ tapps_agents/suggestions/inline_suggester.py,sha256=KtvZuYqqRenme-vG2HQCVzyFDvAoJ2YzpujpNsCpSbM,1370
759
+ tapps_agents/templates/__init__.py,sha256=zBD8RouLmKaRpYzkeNbcbx2nQT_tatDKLtaUX3owvZI,164
760
+ tapps_agents/templates/microservice_generator.py,sha256=4I4fQZe2QuJuSMsQkJL1ozD2e2OEk_XRoJJ91GPiwBQ,8202
761
+ tapps_agents/utils/env_validator.py,sha256=hUv5JnortuB-Hvfm23AgRRX2AyfCblbza4AEzCQj4rs,9010
762
+ tapps_agents/utils/project_cleanup_agent.py,sha256=n6bXfBFeU67nrFBAhn79wcmEZ3RjhETyV1VODUUKMHk,47692
763
+ tapps_agents/workflow/__init__.py,sha256=m_NKPv0cI1WB4c5W4NlYNinz4-t3tlxAbEH6s2JEy7E,4859
764
+ tapps_agents/workflow/acceptance_verifier.py,sha256=kIFgy_WWVe4R9oOjzWEtVSEnBV5x56oVP60Jt71lzaE,4730
765
+ tapps_agents/workflow/analytics_accessor.py,sha256=tp69obAE9HntXD-imiItqGhOCFFzlKQJlrR_X_KocAI,11489
766
+ tapps_agents/workflow/analytics_alerts.py,sha256=iUeAmDl_SEDxBYxP3uQ7I4x4YEaJBA2FJ9OQRPfZTKs,13932
767
+ tapps_agents/workflow/analytics_dashboard_cursor.py,sha256=Mz6RoAaLu0BgKYKBmP7DQWGzEJ34vQaO_--5KBQJFsM,11723
768
+ tapps_agents/workflow/analytics_dual_write.py,sha256=GUgnhKmqvFBQ13ojZlac1R9t09e70_SxyDFlPSf-wEg,3380
769
+ tapps_agents/workflow/analytics_integration.py,sha256=nwo_CdKhBJ9D7TARgbtLZxzk7QOulx5KU7tcvpHCu3Q,3824
770
+ tapps_agents/workflow/analytics_query_parser.py,sha256=CCcC6y56Hx_nQ6HqJYvuake0gSyPQhBsS5npl0AMTmY,9597
771
+ tapps_agents/workflow/analytics_visualizer.py,sha256=9ot-OkD98ZMDzWUHv8-_WKwAKBZUhZed25lMMhkHlwQ,8025
772
+ tapps_agents/workflow/artifact_helper.py,sha256=B5MPPOHdhn6hPQAw0yDZnVJ2o_lrDQWXN-x2aPK_Ifg,7900
773
+ tapps_agents/workflow/audit_logger.py,sha256=jqVbHcPpJ9PaZARl70gx1J1e07th18asWayDVmrEBbs,8236
774
+ tapps_agents/workflow/auto_execution_config.py,sha256=iJGzSaitKNlqFk28oA4G5P431OPvfUmgPqVC2zOZOXg,12473
775
+ tapps_agents/workflow/auto_progression.py,sha256=5E59tXYGv6vzG0nuHlqOpLNWxj2ywKgD4HrGpI_g_r4,21886
776
+ tapps_agents/workflow/branch_cleanup.py,sha256=Ws3YAgasqrxRcbB8CJ0mXmFqyDhtTsIShes46awI9fU,11790
777
+ tapps_agents/workflow/checkpoint.py,sha256=-0Jemggen567bJ6eMQB9VPcWpxwrr-Cz1D358jmWc74,8556
778
+ tapps_agents/workflow/checkpoint_manager.py,sha256=hx_VZjoBIhdsn9XSdnBY5rzNShxgoPJ85JL8y8CJLpE,5633
779
+ tapps_agents/workflow/code_artifact.py,sha256=d6R33dhoHmS2m0Rv2qAmnwLC-TJMyA8keHm-Qcx01Yw,6262
780
+ tapps_agents/workflow/common_enums.py,sha256=P6-cjHhWEWXnJ3-6mtYhJsSZO5qK_1bRe_Y9V658jFw,2362
781
+ tapps_agents/workflow/confirmation_handler.py,sha256=iH6WCI08pDin5FBztzMYgRMWaO3WIh-XVmgW055SR3Q,4285
782
+ tapps_agents/workflow/context_analyzer.py,sha256=-Nxq8okaqQD1rTAsOtNy0BNN_AcMQweM6KCxV8S6j34,8455
783
+ tapps_agents/workflow/context_artifact.py,sha256=ps8sZgMXIemKNK1nADxpHfi5NQdFIVtmDMp48jDb5rI,8125
784
+ tapps_agents/workflow/cursor_chat.py,sha256=e_2eXbr3yFYRdnu9iYcWIsuRgubd5-R68DsJrFN9buU,3180
785
+ tapps_agents/workflow/cursor_executor.py,sha256=too0HuFg1_fyEd6vVOlDAz7skxYD4QIFt1bKEBWbRNQ,97139
786
+ tapps_agents/workflow/cursor_skill_helper.py,sha256=QZCNCIBpwdZiP5piH9qB2l3Fseh4bMulCg8QcHyAfVA,19481
787
+ tapps_agents/workflow/dependency_resolver.py,sha256=f_2a0uUBADHPEgNvdOdA-tCs-qYXwKyMkbvep2mwlrI,8923
788
+ tapps_agents/workflow/design_artifact.py,sha256=HgEyNndiItMBPTTalOtiUrB600LF3EwwIL557034w7k,5510
789
+ tapps_agents/workflow/detector.py,sha256=bvOrTPT2TS08e6sA05szm22oyipLpJx5oKc6Ca_SO_4,27923
790
+ tapps_agents/workflow/direct_execution_fallback.py,sha256=CT-wYMicXc5FEz38DtXUt8XD0tBIHPTXasyVkVFi4TU,11650
791
+ tapps_agents/workflow/docs_artifact.py,sha256=7NNlLEfFkvjIvxLhZAIdpdieC5oPsZElTPflFzA-S_k,5702
792
+ tapps_agents/workflow/durable_state.py,sha256=qGjVp5FXSQsKuLtBBWlwwyo9CbKKjU1OwS1jBmDMjJY,24882
793
+ tapps_agents/workflow/enforcer.py,sha256=2FAUd1_utDbOM2F3YRoM4F2u7M-bzHLMCDDS-mdy-xo,15208
794
+ tapps_agents/workflow/enhancement_artifact.py,sha256=wHdmIJT6i7KO39rTibO5ehVIMbMmya63AyyRqqLTCGM,4830
795
+ tapps_agents/workflow/error_recovery.py,sha256=E4yW9W4rmCmXawnogi6IwjNyxsy6uAdohoqLZgsiNOM,29493
796
+ tapps_agents/workflow/event_bus.py,sha256=gl0aiK35xMJOUhISV6n_1SJTDxarrZIyflfcRVX-fkM,5870
797
+ tapps_agents/workflow/event_log.py,sha256=P_nVZDZ_rZynoQEYbmf_rUJ3p5VPs2DJy1nt8aiOaCY,23086
798
+ tapps_agents/workflow/events.py,sha256=icT-Yq6XVtzuV6vHBnac4RQyIabo7d5dOmPi7BNZT1s,1851
799
+ tapps_agents/workflow/exceptions.py,sha256=KDBxJO21ocmXkdB5Fooun2kKq9TQl7wSM_tWsf1srZA,995
800
+ tapps_agents/workflow/execution_graph.py,sha256=R47yVto6Zv3cBMSi3X4goZu1s77U9yT69GUbIy3bwts,17569
801
+ tapps_agents/workflow/execution_metrics.py,sha256=nvftWr2DIUOm76d7zJLJcMD8m9T9LJRNaAYkZ90lDf8,11714
802
+ tapps_agents/workflow/execution_plan.py,sha256=Qq7NImcI288ksPsK_rvHvH7hh4DUEjmDQdzHunp_WHc,4389
803
+ tapps_agents/workflow/executor.py,sha256=bXlsLL_0KzMK7t3uqNQFOSm_bf7vQcxBK3JG996LIUY,90845
804
+ tapps_agents/workflow/file_utils.py,sha256=dRJDRxPRPLpW9_YKtaUUCAKEhfxHBbysK6kMXQPVXaw,5744
805
+ tapps_agents/workflow/gate_evaluator.py,sha256=3LnJ1lnYtnC5tjt9c28kN8-KMr9VIPk54xA0Bd06yvY,6349
806
+ tapps_agents/workflow/gate_integration.py,sha256=b3LqtDNBYem_gYHi9caFTzPqvCrdma04UfyWuXE09XU,6823
807
+ tapps_agents/workflow/graph_visualizer.py,sha256=Iqm7DjB4phc83aFzhYw99gwdXVsU6RnJlTKTcMqH7Z8,3816
808
+ tapps_agents/workflow/health_checker.py,sha256=_9LaUWQA5aWjlVUNCOGMmohJ2eNcE-K62GjWUSvGxJY,7367
809
+ tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMrGSSTAwNmKkU,20538
810
+ tapps_agents/workflow/logging_helper.py,sha256=x38gDL_ZdlQMnSoIb8aPSVc2hgCj8cgMSzua8o0Rplc,8982
811
+ tapps_agents/workflow/manifest.py,sha256=D5v3E-fBoD0dEK5BNDj_VmVdJmUoT7rCQrJQSygeWRg,20341
812
+ tapps_agents/workflow/marker_writer.py,sha256=2uaP86Fwm_QUPjqRCUdJcNlrHEAD6P7PRJBGpqUhxMo,8325
813
+ tapps_agents/workflow/message_formatter.py,sha256=T5ZdrxKSTpHOk52BmMLEhxRz3iVvwhU6KSF5fk6gYz4,5924
814
+ tapps_agents/workflow/messaging.py,sha256=fzVDP7vvQXjJG3AGTS1mp1GiBPaK_NzkPNlxCWxfJ6A,11547
815
+ tapps_agents/workflow/metadata_models.py,sha256=xsigrFQgIgFzLJn7qwCa242w49iEv-QwIrFGkGzL0Zg,2954
816
+ tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
817
+ tapps_agents/workflow/metrics_integration.py,sha256=NXhbw77zrS4X0xE61hCCNLt4lucfadKH1dSjANYowYI,7511
818
+ tapps_agents/workflow/migration_utils.py,sha256=46kMrHV3yxujDpcDxtPytg9aL7N_BPRch1bEUIP_Ahc,3877
819
+ tapps_agents/workflow/models.py,sha256=-IuecSogkRpYjOWjm4Qx-dpZ4uCnSbeVGcGPq7kvYHQ,4235
820
+ tapps_agents/workflow/nlp_config.py,sha256=KesPjPzDfBa3WnnWT5IRkaNzzLbS4MLfr5UqdmTkYSI,6790
821
+ tapps_agents/workflow/nlp_error_handler.py,sha256=Kgdu1XrPFiHTTJ3WctbaezsBP4v4DwfSO7Nc6BSEdKo,7352
822
+ tapps_agents/workflow/nlp_executor.py,sha256=IiWv4ybBHWtccn0rN8Tp0ckpVVMdRA4V0DmiV_VbkFE,6806
823
+ tapps_agents/workflow/nlp_parser.py,sha256=BVHnqD65Wocax0pO7HfD3uPKm0mVBInAJm5KnWzrCc8,19431
824
+ tapps_agents/workflow/observability_dashboard.py,sha256=-0zCZzoa05aOfLutHfspSOZklyaE81trgKPUPNiItNM,16925
825
+ tapps_agents/workflow/observer.py,sha256=aMIVdw4mVEWz7yKF4XDPQgehz4wo_W2SxNn58G16uwo,6049
826
+ tapps_agents/workflow/ops_artifact.py,sha256=i5-Uiw-n5iAuXZCErHJ6d5_C-oD4PUsS_JBiWB6xc4w,9277
827
+ tapps_agents/workflow/output_passing.py,sha256=Rc4gha7EWfLUfB70gE127Nhk3xlGwjZgp_5ZebiWNKI,7422
828
+ tapps_agents/workflow/parallel_executor.py,sha256=DkudB_w-4GzE2Pr-fsFtUWFwIVP8rGYWXGLENUCniGY,18900
829
+ tapps_agents/workflow/parser.py,sha256=r2T9XGhzY6iyzLBKxDAcmYHqthD_uZ0rKwza_1HExWs,15258
830
+ tapps_agents/workflow/planning_artifact.py,sha256=yRXnm6KQ4iVVoy22jlo4G175ltHxzHcei2nzKn6da6Q,6438
831
+ tapps_agents/workflow/preset_loader.py,sha256=QbTAciaqX_gqWsDoKWu8ILc0f7dTwopgHZIudPUdv88,11242
832
+ tapps_agents/workflow/preset_recommender.py,sha256=XkFwfuFov2wYw5J_m70Mz38NP1OUAjLke7y6qDJR1X0,8708
833
+ tapps_agents/workflow/progress_logger.py,sha256=JHZ7WLg57g4IOSa-OGQrzSfpU_lRAevS7aOqIZfinhQ,4755
834
+ tapps_agents/workflow/progress_manager.py,sha256=jst8coRDsvrDo7ovF4u7lMihKPSg70DpCUJtJYBCK20,10501
835
+ tapps_agents/workflow/progress_monitor.py,sha256=dSLkMdi9I9Ln6Hft-yElWQSs8IJJY6Ya1JsBElKZtKQ,6806
836
+ tapps_agents/workflow/progress_updates.py,sha256=zdLHAx5Zjlo4ApMMiLmHYObwl9ZFb5GrEX7WPZ7C8jk,14115
837
+ tapps_agents/workflow/quality_artifact.py,sha256=pmhMXtu7xaHxQPSisx3GTJlDhoUHVJWP4B-12K4yfus,5264
838
+ tapps_agents/workflow/quality_loopback.py,sha256=q9OzzRHBzl5WsyY7RzLj_XMAtbMkBLoDj52BArHaV-I,3519
839
+ tapps_agents/workflow/recommender.py,sha256=i4i_qKxYvADBVuXil53WmJp-bRNCwTjh2S_lwL2u4yM,15803
840
+ tapps_agents/workflow/remediation_loop.py,sha256=DoLsfE5ncxuBXvieYaCFAYbFx1grdkNuxPxzWXY_wb0,5522
841
+ tapps_agents/workflow/result_aggregator.py,sha256=R-ZDVT0XPfqJP4Qyt8Y12MpG3U9419YONxWADm6_IS4,11208
842
+ tapps_agents/workflow/review_artifact.py,sha256=eU8udcTP4aFYXEYxFXsp-Z3YmPBwK981GSNe2Sd2LUY,6786
843
+ tapps_agents/workflow/rules_generator.py,sha256=aYfG8PMf56CIlm5uPk47A05vuB59X-eLGPeg0J9_ptg,13366
844
+ tapps_agents/workflow/schema_validator.py,sha256=RLQLg1JEYjjIaY5vZWMLwNXJm-dsPMadPYMqdzaN-lw,18870
845
+ tapps_agents/workflow/session_handoff.py,sha256=mPQPxVAgyjdgok0RZvasR147jFRciV2vAHZ4DBwNFk8,5546
846
+ tapps_agents/workflow/skill_invoker.py,sha256=cBOHHA8NfVLuTmYla5jLZFTvwJRFxH4u4ZwsnJAdlLM,24766
847
+ tapps_agents/workflow/state_manager.py,sha256=ErIMcHABDmQTm6bSbLjotjV6FHx4kON6eudXWJfV_MI,30367
848
+ tapps_agents/workflow/state_persistence_config.py,sha256=6flU4p61PIIOIkmEHqY1rCfqsXD1P8siUzItKhtPRRA,12701
849
+ tapps_agents/workflow/status_monitor.py,sha256=xA_p3RblPQfhQbWWobrPRjjsd0ccwKYP-cH9XBws7XA,18256
850
+ tapps_agents/workflow/step_checkpoint.py,sha256=LDNTEAwW96suyzFozeSrwkdghXhtwh-FRzhbVlKjHqw,10063
851
+ tapps_agents/workflow/step_details.py,sha256=PjGHpbQ1lqJaK2lDtkUV_rRUYfgcPOBGMwSqjONS88M,5752
852
+ tapps_agents/workflow/story_models.py,sha256=--BZKDhGw26QvJinvsUkWoIzzVzi3kFb8LLT5mzzIgs,4889
853
+ tapps_agents/workflow/streaming.py,sha256=txpMV45FSwTRl947cOV9vOH0m-OS_EFCNq12LEN4Pfg,14952
854
+ tapps_agents/workflow/suggestion_engine.py,sha256=bCjcUcjobyzRKCq_EjI3_BMKxlIgFcA9LWNyoq3x2Mo,21214
855
+ tapps_agents/workflow/testing_artifact.py,sha256=MLOo3Qrs6Rs8rKGrolYA8PA4acm6OcNCEgOXnmRSJqM,6076
856
+ tapps_agents/workflow/timeline.py,sha256=Lyr_Sujxx3fNGSe72cRmNl1rsKj_97dQpCccLgBChT8,5571
857
+ tapps_agents/workflow/token_integration.py,sha256=XeBJbgU4Nog9GUgCnPcKjAdi-s9eNo4Dd28mTJs7hTk,7347
858
+ tapps_agents/workflow/validation.py,sha256=E7yxTF46o9V1Yqyqngo6OpPN0YbH9FpViMaNMEfJ5kc,7951
859
+ tapps_agents/workflow/visual_feedback.py,sha256=bgoRLHQhub5-_OX1Rzztyzzy2wknQUcMWl_q0rVwOPs,13876
860
+ tapps_agents/workflow/workflow_chain.py,sha256=pa0Ke1R-wGl585UR5e0_v37MBSJn4A_zPFDATaOPNgg,3129
861
+ tapps_agents/workflow/workflow_summary.py,sha256=vzXkUh8gfRSg9aeYALRBrkVQzQyIkm9w0NzkwTxwwAw,7336
862
+ tapps_agents/workflow/worktree_manager.py,sha256=SbDC1shbqiskKpfM85lf5O8E3YDQS748hxNKKVa_Gg8,25778
863
+ tapps_agents/workflow/agent_handlers/__init__.py,sha256=65FhD8HKxCnUVwm8rHYih2VKRw7RI1bMfR-uPq5DmCc,1245
864
+ tapps_agents/workflow/agent_handlers/analyst_handler.py,sha256=Ie0QR5TWF3A931WNdi0Jw8jKjVChDLNYj8cGXqyxozw,2551
865
+ tapps_agents/workflow/agent_handlers/architect_handler.py,sha256=jtBqXJbF8G9JROe_hKZPVs9bEv5bQxQTvCSafnPehMY,4109
866
+ tapps_agents/workflow/agent_handlers/base.py,sha256=rVdSmxmFg0K7frE3RKfFYE0fCIjH903nEWOCuXhk3Vs,2288
867
+ tapps_agents/workflow/agent_handlers/debugger_handler.py,sha256=CUPjYAO6Xb78LcI2FsqDOSW2KH1JNIBZ5hEncXabwRo,3240
868
+ tapps_agents/workflow/agent_handlers/designer_handler.py,sha256=6dEwyn1GZty-kAGgSC0XSnjJZc0VEoKnTfTTh08zl8U,3954
869
+ tapps_agents/workflow/agent_handlers/documenter_handler.py,sha256=AC4r6gdahCrLZOYtf59l9VsXVe_TLC_C6YtNifL0kqw,3293
870
+ tapps_agents/workflow/agent_handlers/enhancer_handler.py,sha256=FYny7CpHZ4ERxFmomsTZg_Jj3k-mtjmQOXhlRiWiARU,4775
871
+ tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=kiX7Jd-zZMfskw20ND9w6DMhtTDv8fjCfbOoBGmerP4,9686
872
+ tapps_agents/workflow/agent_handlers/ops_handler.py,sha256=gQpN9qSN6HA-evAhFv87RYC6FD0UERkuvQA0A5EL1Aw,1821
873
+ tapps_agents/workflow/agent_handlers/orchestrator_handler.py,sha256=AWV3Khqlp41teNo6HjJSLnn21zm1EkJSzM7sQ0ZgFgA,1280
874
+ tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=9oVSsA6Lso5NncYPS4Yn-iEhc5QBGlo7uL89JrmAgls,3449
875
+ tapps_agents/workflow/agent_handlers/registry.py,sha256=aYMU59da4SBgDgqMy4Basu1yL8CvDvdi929n6XM50ro,3613
876
+ tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=D4spVUk4l9mJsSsDIKC88EL-2k43YObNz5v439EtDRc,4285
877
+ tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=e44Eqn1CIpcqYqCrjaTK748yb4k7PlzGdK9zSne-SfY,2249
878
+ tapps_agents-3.6.1.dist-info/licenses/LICENSE,sha256=xwT0RCg0KluJ63lZcgkSOiYkpEIEXYlIGqRtkGGsPe0,1085
879
+ tapps_agents-3.6.1.dist-info/METADATA,sha256=l9L9PoA3ejppZo0Vfaq0uWHcu_hn8VoktUArDvMTFk4,41411
880
+ tapps_agents-3.6.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
881
+ tapps_agents-3.6.1.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
882
+ tapps_agents-3.6.1.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
883
+ tapps_agents-3.6.1.dist-info/RECORD,,