tapps-agents 3.5.41__tar.gz → 3.6.0__tar.gz

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 (1465) hide show
  1. tapps_agents-3.6.0/LICENSE +22 -0
  2. tapps_agents-3.6.0/MANIFEST.in +48 -0
  3. tapps_agents-3.6.0/PKG-INFO +672 -0
  4. tapps_agents-3.6.0/README.md +618 -0
  5. tapps_agents-3.6.0/pyproject.toml +177 -0
  6. tapps_agents-3.6.0/setup.cfg +4 -0
  7. tapps_agents-3.6.0/setup.py +36 -0
  8. tapps_agents-3.6.0/tapps_agents/__init__.py +31 -0
  9. tapps_agents-3.6.0/tapps_agents/agents/__init__.py +22 -0
  10. tapps_agents-3.6.0/tapps_agents/agents/analyst/__init__.py +5 -0
  11. tapps_agents-3.6.0/tapps_agents/agents/architect/__init__.py +5 -0
  12. tapps_agents-3.6.0/tapps_agents/agents/architect/agent.py +1034 -0
  13. tapps_agents-3.6.0/tapps_agents/agents/architect/pattern_detector.py +75 -0
  14. tapps_agents-3.6.0/tapps_agents/agents/cleanup/__init__.py +7 -0
  15. tapps_agents-3.6.0/tapps_agents/agents/cleanup/agent.py +445 -0
  16. tapps_agents-3.6.0/tapps_agents/agents/debugger/__init__.py +7 -0
  17. tapps_agents-3.6.0/tapps_agents/agents/debugger/agent.py +310 -0
  18. tapps_agents-3.6.0/tapps_agents/agents/debugger/error_analyzer.py +437 -0
  19. tapps_agents-3.6.0/tapps_agents/agents/designer/__init__.py +5 -0
  20. tapps_agents-3.6.0/tapps_agents/agents/designer/agent.py +786 -0
  21. tapps_agents-3.6.0/tapps_agents/agents/designer/visual_designer.py +638 -0
  22. tapps_agents-3.6.0/tapps_agents/agents/documenter/__init__.py +7 -0
  23. tapps_agents-3.6.0/tapps_agents/agents/documenter/agent.py +531 -0
  24. tapps_agents-3.6.0/tapps_agents/agents/documenter/doc_generator.py +472 -0
  25. tapps_agents-3.6.0/tapps_agents/agents/documenter/doc_validator.py +393 -0
  26. tapps_agents-3.6.0/tapps_agents/agents/documenter/framework_doc_updater.py +493 -0
  27. tapps_agents-3.6.0/tapps_agents/agents/enhancer/__init__.py +7 -0
  28. tapps_agents-3.6.0/tapps_agents/agents/evaluator/__init__.py +7 -0
  29. tapps_agents-3.6.0/tapps_agents/agents/evaluator/agent.py +443 -0
  30. tapps_agents-3.6.0/tapps_agents/agents/evaluator/priority_evaluator.py +641 -0
  31. tapps_agents-3.6.0/tapps_agents/agents/evaluator/quality_analyzer.py +147 -0
  32. tapps_agents-3.6.0/tapps_agents/agents/evaluator/report_generator.py +344 -0
  33. tapps_agents-3.6.0/tapps_agents/agents/evaluator/usage_analyzer.py +192 -0
  34. tapps_agents-3.6.0/tapps_agents/agents/evaluator/workflow_analyzer.py +189 -0
  35. tapps_agents-3.6.0/tapps_agents/agents/implementer/__init__.py +7 -0
  36. tapps_agents-3.6.0/tapps_agents/agents/implementer/agent.py +798 -0
  37. tapps_agents-3.6.0/tapps_agents/agents/implementer/auto_fix.py +1119 -0
  38. tapps_agents-3.6.0/tapps_agents/agents/implementer/code_generator.py +73 -0
  39. tapps_agents-3.6.0/tapps_agents/agents/improver/__init__.py +1 -0
  40. tapps_agents-3.6.0/tapps_agents/agents/improver/agent.py +754 -0
  41. tapps_agents-3.6.0/tapps_agents/agents/ops/__init__.py +1 -0
  42. tapps_agents-3.6.0/tapps_agents/agents/ops/agent.py +620 -0
  43. tapps_agents-3.6.0/tapps_agents/agents/ops/dependency_analyzer.py +600 -0
  44. tapps_agents-3.6.0/tapps_agents/agents/orchestrator/__init__.py +5 -0
  45. tapps_agents-3.6.0/tapps_agents/agents/orchestrator/agent.py +522 -0
  46. tapps_agents-3.6.0/tapps_agents/agents/planner/__init__.py +7 -0
  47. tapps_agents-3.6.0/tapps_agents/agents/planner/agent.py +1127 -0
  48. tapps_agents-3.6.0/tapps_agents/agents/reviewer/__init__.py +25 -0
  49. tapps_agents-3.6.0/tapps_agents/agents/reviewer/agent.py +3513 -0
  50. tapps_agents-3.6.0/tapps_agents/agents/reviewer/aggregator.py +213 -0
  51. tapps_agents-3.6.0/tapps_agents/agents/reviewer/batch_review.py +448 -0
  52. tapps_agents-3.6.0/tapps_agents/agents/reviewer/cache.py +443 -0
  53. tapps_agents-3.6.0/tapps_agents/agents/reviewer/context7_enhancer.py +630 -0
  54. tapps_agents-3.6.0/tapps_agents/agents/reviewer/context_detector.py +203 -0
  55. tapps_agents-3.6.0/tapps_agents/agents/reviewer/docker_compose_validator.py +158 -0
  56. tapps_agents-3.6.0/tapps_agents/agents/reviewer/dockerfile_validator.py +176 -0
  57. tapps_agents-3.6.0/tapps_agents/agents/reviewer/error_handling.py +126 -0
  58. tapps_agents-3.6.0/tapps_agents/agents/reviewer/feedback_generator.py +490 -0
  59. tapps_agents-3.6.0/tapps_agents/agents/reviewer/influxdb_validator.py +316 -0
  60. tapps_agents-3.6.0/tapps_agents/agents/reviewer/issue_tracking.py +169 -0
  61. tapps_agents-3.6.0/tapps_agents/agents/reviewer/library_detector.py +295 -0
  62. tapps_agents-3.6.0/tapps_agents/agents/reviewer/library_patterns.py +268 -0
  63. tapps_agents-3.6.0/tapps_agents/agents/reviewer/maintainability_scorer.py +593 -0
  64. tapps_agents-3.6.0/tapps_agents/agents/reviewer/metric_strategies.py +276 -0
  65. tapps_agents-3.6.0/tapps_agents/agents/reviewer/mqtt_validator.py +160 -0
  66. tapps_agents-3.6.0/tapps_agents/agents/reviewer/output_enhancer.py +105 -0
  67. tapps_agents-3.6.0/tapps_agents/agents/reviewer/pattern_detector.py +241 -0
  68. tapps_agents-3.6.0/tapps_agents/agents/reviewer/performance_scorer.py +357 -0
  69. tapps_agents-3.6.0/tapps_agents/agents/reviewer/phased_review.py +516 -0
  70. tapps_agents-3.6.0/tapps_agents/agents/reviewer/progressive_review.py +435 -0
  71. tapps_agents-3.6.0/tapps_agents/agents/reviewer/react_scorer.py +331 -0
  72. tapps_agents-3.6.0/tapps_agents/agents/reviewer/score_constants.py +228 -0
  73. tapps_agents-3.6.0/tapps_agents/agents/reviewer/score_validator.py +507 -0
  74. tapps_agents-3.6.0/tapps_agents/agents/reviewer/scorer_registry.py +373 -0
  75. tapps_agents-3.6.0/tapps_agents/agents/reviewer/scoring.py +1566 -0
  76. tapps_agents-3.6.0/tapps_agents/agents/reviewer/service_discovery.py +534 -0
  77. tapps_agents-3.6.0/tapps_agents/agents/reviewer/tools/__init__.py +41 -0
  78. tapps_agents-3.6.0/tapps_agents/agents/reviewer/tools/parallel_executor.py +581 -0
  79. tapps_agents-3.6.0/tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -0
  80. tapps_agents-3.6.0/tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -0
  81. tapps_agents-3.6.0/tapps_agents/agents/reviewer/typescript_scorer.py +1142 -0
  82. tapps_agents-3.6.0/tapps_agents/agents/reviewer/validation.py +208 -0
  83. tapps_agents-3.6.0/tapps_agents/agents/reviewer/websocket_validator.py +132 -0
  84. tapps_agents-3.6.0/tapps_agents/agents/tester/__init__.py +7 -0
  85. tapps_agents-3.6.0/tapps_agents/agents/tester/accessibility_auditor.py +309 -0
  86. tapps_agents-3.6.0/tapps_agents/agents/tester/agent.py +1080 -0
  87. tapps_agents-3.6.0/tapps_agents/agents/tester/batch_generator.py +54 -0
  88. tapps_agents-3.6.0/tapps_agents/agents/tester/context_learner.py +51 -0
  89. tapps_agents-3.6.0/tapps_agents/agents/tester/coverage_analyzer.py +387 -0
  90. tapps_agents-3.6.0/tapps_agents/agents/tester/coverage_test_generator.py +290 -0
  91. tapps_agents-3.6.0/tapps_agents/agents/tester/debug_enhancer.py +238 -0
  92. tapps_agents-3.6.0/tapps_agents/agents/tester/device_emulator.py +241 -0
  93. tapps_agents-3.6.0/tapps_agents/agents/tester/integration_generator.py +62 -0
  94. tapps_agents-3.6.0/tapps_agents/agents/tester/network_recorder.py +300 -0
  95. tapps_agents-3.6.0/tapps_agents/agents/tester/performance_monitor.py +320 -0
  96. tapps_agents-3.6.0/tapps_agents/agents/tester/test_fixer.py +316 -0
  97. tapps_agents-3.6.0/tapps_agents/agents/tester/test_generator.py +632 -0
  98. tapps_agents-3.6.0/tapps_agents/agents/tester/trace_manager.py +234 -0
  99. tapps_agents-3.6.0/tapps_agents/agents/tester/visual_regression.py +291 -0
  100. tapps_agents-3.6.0/tapps_agents/analysis/pattern_detector.py +36 -0
  101. tapps_agents-3.6.0/tapps_agents/beads/hydration.py +213 -0
  102. tapps_agents-3.6.0/tapps_agents/beads/parse.py +32 -0
  103. tapps_agents-3.6.0/tapps_agents/beads/specs.py +206 -0
  104. tapps_agents-3.6.0/tapps_agents/cli/__init__.py +9 -0
  105. tapps_agents-3.6.0/tapps_agents/cli/__main__.py +8 -0
  106. tapps_agents-3.6.0/tapps_agents/cli/base.py +478 -0
  107. tapps_agents-3.6.0/tapps_agents/cli/command_classifier.py +72 -0
  108. tapps_agents-3.6.0/tapps_agents/cli/commands/__init__.py +2 -0
  109. tapps_agents-3.6.0/tapps_agents/cli/commands/analyst.py +173 -0
  110. tapps_agents-3.6.0/tapps_agents/cli/commands/architect.py +109 -0
  111. tapps_agents-3.6.0/tapps_agents/cli/commands/cleanup_agent.py +92 -0
  112. tapps_agents-3.6.0/tapps_agents/cli/commands/common.py +126 -0
  113. tapps_agents-3.6.0/tapps_agents/cli/commands/debugger.py +90 -0
  114. tapps_agents-3.6.0/tapps_agents/cli/commands/designer.py +112 -0
  115. tapps_agents-3.6.0/tapps_agents/cli/commands/documenter.py +136 -0
  116. tapps_agents-3.6.0/tapps_agents/cli/commands/enhancer.py +110 -0
  117. tapps_agents-3.6.0/tapps_agents/cli/commands/evaluator.py +255 -0
  118. tapps_agents-3.6.0/tapps_agents/cli/commands/health.py +665 -0
  119. tapps_agents-3.6.0/tapps_agents/cli/commands/implementer.py +301 -0
  120. tapps_agents-3.6.0/tapps_agents/cli/commands/improver.py +91 -0
  121. tapps_agents-3.6.0/tapps_agents/cli/commands/knowledge.py +111 -0
  122. tapps_agents-3.6.0/tapps_agents/cli/commands/learning.py +172 -0
  123. tapps_agents-3.6.0/tapps_agents/cli/commands/observability.py +283 -0
  124. tapps_agents-3.6.0/tapps_agents/cli/commands/ops.py +135 -0
  125. tapps_agents-3.6.0/tapps_agents/cli/commands/orchestrator.py +116 -0
  126. tapps_agents-3.6.0/tapps_agents/cli/commands/planner.py +237 -0
  127. tapps_agents-3.6.0/tapps_agents/cli/commands/reviewer.py +1872 -0
  128. tapps_agents-3.6.0/tapps_agents/cli/commands/status.py +285 -0
  129. tapps_agents-3.6.0/tapps_agents/cli/commands/task.py +227 -0
  130. tapps_agents-3.6.0/tapps_agents/cli/commands/tester.py +191 -0
  131. tapps_agents-3.6.0/tapps_agents/cli/commands/top_level.py +3586 -0
  132. tapps_agents-3.6.0/tapps_agents/cli/feedback.py +936 -0
  133. tapps_agents-3.6.0/tapps_agents/cli/formatters.py +608 -0
  134. tapps_agents-3.6.0/tapps_agents/cli/help/__init__.py +7 -0
  135. tapps_agents-3.6.0/tapps_agents/cli/help/static_help.py +425 -0
  136. tapps_agents-3.6.0/tapps_agents/cli/network_detection.py +110 -0
  137. tapps_agents-3.6.0/tapps_agents/cli/output_compactor.py +274 -0
  138. tapps_agents-3.6.0/tapps_agents/cli/parsers/__init__.py +2 -0
  139. tapps_agents-3.6.0/tapps_agents/cli/parsers/analyst.py +186 -0
  140. tapps_agents-3.6.0/tapps_agents/cli/parsers/architect.py +167 -0
  141. tapps_agents-3.6.0/tapps_agents/cli/parsers/cleanup_agent.py +228 -0
  142. tapps_agents-3.6.0/tapps_agents/cli/parsers/debugger.py +116 -0
  143. tapps_agents-3.6.0/tapps_agents/cli/parsers/designer.py +182 -0
  144. tapps_agents-3.6.0/tapps_agents/cli/parsers/documenter.py +134 -0
  145. tapps_agents-3.6.0/tapps_agents/cli/parsers/enhancer.py +113 -0
  146. tapps_agents-3.6.0/tapps_agents/cli/parsers/evaluator.py +213 -0
  147. tapps_agents-3.6.0/tapps_agents/cli/parsers/implementer.py +168 -0
  148. tapps_agents-3.6.0/tapps_agents/cli/parsers/improver.py +132 -0
  149. tapps_agents-3.6.0/tapps_agents/cli/parsers/ops.py +159 -0
  150. tapps_agents-3.6.0/tapps_agents/cli/parsers/orchestrator.py +98 -0
  151. tapps_agents-3.6.0/tapps_agents/cli/parsers/planner.py +145 -0
  152. tapps_agents-3.6.0/tapps_agents/cli/parsers/reviewer.py +462 -0
  153. tapps_agents-3.6.0/tapps_agents/cli/parsers/tester.py +124 -0
  154. tapps_agents-3.6.0/tapps_agents/cli/progress_heartbeat.py +254 -0
  155. tapps_agents-3.6.0/tapps_agents/cli/streaming_progress.py +336 -0
  156. tapps_agents-3.6.0/tapps_agents/cli/utils/__init__.py +6 -0
  157. tapps_agents-3.6.0/tapps_agents/cli/utils/agent_lifecycle.py +48 -0
  158. tapps_agents-3.6.0/tapps_agents/cli/utils/error_formatter.py +82 -0
  159. tapps_agents-3.6.0/tapps_agents/cli/utils/error_recovery.py +188 -0
  160. tapps_agents-3.6.0/tapps_agents/cli/utils/output_handler.py +59 -0
  161. tapps_agents-3.6.0/tapps_agents/cli/utils/prompt_enhancer.py +319 -0
  162. tapps_agents-3.6.0/tapps_agents/cli/validators/__init__.py +9 -0
  163. tapps_agents-3.6.0/tapps_agents/cli/validators/command_validator.py +81 -0
  164. tapps_agents-3.6.0/tapps_agents/context7/__init__.py +112 -0
  165. tapps_agents-3.6.0/tapps_agents/context7/agent_integration.py +869 -0
  166. tapps_agents-3.6.0/tapps_agents/context7/analytics.py +382 -0
  167. tapps_agents-3.6.0/tapps_agents/context7/analytics_dashboard.py +299 -0
  168. tapps_agents-3.6.0/tapps_agents/context7/async_cache.py +681 -0
  169. tapps_agents-3.6.0/tapps_agents/context7/backup_client.py +958 -0
  170. tapps_agents-3.6.0/tapps_agents/context7/cache_locking.py +194 -0
  171. tapps_agents-3.6.0/tapps_agents/context7/cache_metadata.py +214 -0
  172. tapps_agents-3.6.0/tapps_agents/context7/cache_prewarm.py +488 -0
  173. tapps_agents-3.6.0/tapps_agents/context7/cache_structure.py +168 -0
  174. tapps_agents-3.6.0/tapps_agents/context7/cache_warming.py +604 -0
  175. tapps_agents-3.6.0/tapps_agents/context7/circuit_breaker.py +376 -0
  176. tapps_agents-3.6.0/tapps_agents/context7/cleanup.py +461 -0
  177. tapps_agents-3.6.0/tapps_agents/context7/commands.py +858 -0
  178. tapps_agents-3.6.0/tapps_agents/context7/credential_validation.py +276 -0
  179. tapps_agents-3.6.0/tapps_agents/context7/cross_reference_resolver.py +168 -0
  180. tapps_agents-3.6.0/tapps_agents/context7/cross_references.py +424 -0
  181. tapps_agents-3.6.0/tapps_agents/context7/doc_manager.py +225 -0
  182. tapps_agents-3.6.0/tapps_agents/context7/fuzzy_matcher.py +369 -0
  183. tapps_agents-3.6.0/tapps_agents/context7/kb_cache.py +404 -0
  184. tapps_agents-3.6.0/tapps_agents/context7/language_detector.py +219 -0
  185. tapps_agents-3.6.0/tapps_agents/context7/library_detector.py +725 -0
  186. tapps_agents-3.6.0/tapps_agents/context7/lookup.py +738 -0
  187. tapps_agents-3.6.0/tapps_agents/context7/metadata.py +258 -0
  188. tapps_agents-3.6.0/tapps_agents/context7/refresh_queue.py +300 -0
  189. tapps_agents-3.6.0/tapps_agents/context7/security.py +373 -0
  190. tapps_agents-3.6.0/tapps_agents/context7/staleness_policies.py +278 -0
  191. tapps_agents-3.6.0/tapps_agents/context7/tiles_integration.py +47 -0
  192. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/__init__.py +20 -0
  193. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/bug_finder.py +306 -0
  194. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/bug_fix_coordinator.py +177 -0
  195. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/commit_manager.py +178 -0
  196. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/continuous_bug_fixer.py +322 -0
  197. tapps_agents-3.6.0/tapps_agents/continuous_bug_fix/proactive_bug_finder.py +285 -0
  198. tapps_agents-3.6.0/tapps_agents/core/__init__.py +298 -0
  199. tapps_agents-3.6.0/tapps_agents/core/adaptive_cache_config.py +432 -0
  200. tapps_agents-3.6.0/tapps_agents/core/agent_base.py +648 -0
  201. tapps_agents-3.6.0/tapps_agents/core/agent_cache.py +466 -0
  202. tapps_agents-3.6.0/tapps_agents/core/agent_learning.py +1865 -0
  203. tapps_agents-3.6.0/tapps_agents/core/analytics_dashboard.py +563 -0
  204. tapps_agents-3.6.0/tapps_agents/core/analytics_enhancements.py +597 -0
  205. tapps_agents-3.6.0/tapps_agents/core/anonymization.py +274 -0
  206. tapps_agents-3.6.0/tapps_agents/core/artifact_context_builder.py +293 -0
  207. tapps_agents-3.6.0/tapps_agents/core/ast_parser.py +228 -0
  208. tapps_agents-3.6.0/tapps_agents/core/async_file_ops.py +402 -0
  209. tapps_agents-3.6.0/tapps_agents/core/best_practice_consultant.py +299 -0
  210. tapps_agents-3.6.0/tapps_agents/core/brownfield_analyzer.py +299 -0
  211. tapps_agents-3.6.0/tapps_agents/core/brownfield_review.py +541 -0
  212. tapps_agents-3.6.0/tapps_agents/core/browser_controller.py +513 -0
  213. tapps_agents-3.6.0/tapps_agents/core/capability_registry.py +418 -0
  214. tapps_agents-3.6.0/tapps_agents/core/change_impact_analyzer.py +190 -0
  215. tapps_agents-3.6.0/tapps_agents/core/checkpoint_manager.py +377 -0
  216. tapps_agents-3.6.0/tapps_agents/core/code_generator.py +329 -0
  217. tapps_agents-3.6.0/tapps_agents/core/code_validator.py +276 -0
  218. tapps_agents-3.6.0/tapps_agents/core/command_registry.py +327 -0
  219. tapps_agents-3.6.0/tapps_agents/core/config.py +1655 -0
  220. tapps_agents-3.6.0/tapps_agents/core/context_gathering/__init__.py +2 -0
  221. tapps_agents-3.6.0/tapps_agents/core/context_gathering/repository_explorer.py +28 -0
  222. tapps_agents-3.6.0/tapps_agents/core/context_intelligence/__init__.py +2 -0
  223. tapps_agents-3.6.0/tapps_agents/core/context_intelligence/relevance_scorer.py +24 -0
  224. tapps_agents-3.6.0/tapps_agents/core/context_intelligence/token_budget_manager.py +27 -0
  225. tapps_agents-3.6.0/tapps_agents/core/context_manager.py +240 -0
  226. tapps_agents-3.6.0/tapps_agents/core/cursor_feedback_monitor.py +146 -0
  227. tapps_agents-3.6.0/tapps_agents/core/cursor_verification.py +290 -0
  228. tapps_agents-3.6.0/tapps_agents/core/customization_loader.py +280 -0
  229. tapps_agents-3.6.0/tapps_agents/core/customization_schema.py +260 -0
  230. tapps_agents-3.6.0/tapps_agents/core/customization_template.py +238 -0
  231. tapps_agents-3.6.0/tapps_agents/core/debug_logger.py +124 -0
  232. tapps_agents-3.6.0/tapps_agents/core/design_validator.py +298 -0
  233. tapps_agents-3.6.0/tapps_agents/core/diagram_generator.py +226 -0
  234. tapps_agents-3.6.0/tapps_agents/core/docker_utils.py +232 -0
  235. tapps_agents-3.6.0/tapps_agents/core/document_generator.py +617 -0
  236. tapps_agents-3.6.0/tapps_agents/core/domain_detector.py +30 -0
  237. tapps_agents-3.6.0/tapps_agents/core/error_envelope.py +454 -0
  238. tapps_agents-3.6.0/tapps_agents/core/error_handler.py +270 -0
  239. tapps_agents-3.6.0/tapps_agents/core/estimation_tracker.py +189 -0
  240. tapps_agents-3.6.0/tapps_agents/core/eval_prompt_engine.py +116 -0
  241. tapps_agents-3.6.0/tapps_agents/core/evaluation_base.py +119 -0
  242. tapps_agents-3.6.0/tapps_agents/core/evaluation_models.py +320 -0
  243. tapps_agents-3.6.0/tapps_agents/core/evaluation_orchestrator.py +225 -0
  244. tapps_agents-3.6.0/tapps_agents/core/evaluators/__init__.py +7 -0
  245. tapps_agents-3.6.0/tapps_agents/core/evaluators/architectural_evaluator.py +205 -0
  246. tapps_agents-3.6.0/tapps_agents/core/evaluators/behavioral_evaluator.py +160 -0
  247. tapps_agents-3.6.0/tapps_agents/core/evaluators/performance_profile_evaluator.py +160 -0
  248. tapps_agents-3.6.0/tapps_agents/core/evaluators/security_posture_evaluator.py +148 -0
  249. tapps_agents-3.6.0/tapps_agents/core/evaluators/spec_compliance_evaluator.py +181 -0
  250. tapps_agents-3.6.0/tapps_agents/core/exceptions.py +107 -0
  251. tapps_agents-3.6.0/tapps_agents/core/expert_config_generator.py +293 -0
  252. tapps_agents-3.6.0/tapps_agents/core/export_schema.py +202 -0
  253. tapps_agents-3.6.0/tapps_agents/core/external_feedback_models.py +102 -0
  254. tapps_agents-3.6.0/tapps_agents/core/external_feedback_storage.py +213 -0
  255. tapps_agents-3.6.0/tapps_agents/core/fallback_strategy.py +314 -0
  256. tapps_agents-3.6.0/tapps_agents/core/feedback_analyzer.py +162 -0
  257. tapps_agents-3.6.0/tapps_agents/core/feedback_collector.py +178 -0
  258. tapps_agents-3.6.0/tapps_agents/core/git_operations.py +445 -0
  259. tapps_agents-3.6.0/tapps_agents/core/hardware_profiler.py +151 -0
  260. tapps_agents-3.6.0/tapps_agents/core/instructions.py +324 -0
  261. tapps_agents-3.6.0/tapps_agents/core/io_guardrails.py +69 -0
  262. tapps_agents-3.6.0/tapps_agents/core/issue_manifest.py +249 -0
  263. tapps_agents-3.6.0/tapps_agents/core/issue_schema.py +139 -0
  264. tapps_agents-3.6.0/tapps_agents/core/json_utils.py +128 -0
  265. tapps_agents-3.6.0/tapps_agents/core/knowledge_graph.py +446 -0
  266. tapps_agents-3.6.0/tapps_agents/core/language_detector.py +296 -0
  267. tapps_agents-3.6.0/tapps_agents/core/learning_confidence.py +242 -0
  268. tapps_agents-3.6.0/tapps_agents/core/learning_dashboard.py +246 -0
  269. tapps_agents-3.6.0/tapps_agents/core/learning_decision.py +384 -0
  270. tapps_agents-3.6.0/tapps_agents/core/learning_explainability.py +578 -0
  271. tapps_agents-3.6.0/tapps_agents/core/learning_export.py +287 -0
  272. tapps_agents-3.6.0/tapps_agents/core/learning_integration.py +228 -0
  273. tapps_agents-3.6.0/tapps_agents/core/llm_behavior.py +232 -0
  274. tapps_agents-3.6.0/tapps_agents/core/long_duration_support.py +786 -0
  275. tapps_agents-3.6.0/tapps_agents/core/mcp_setup.py +106 -0
  276. tapps_agents-3.6.0/tapps_agents/core/memory_integration.py +396 -0
  277. tapps_agents-3.6.0/tapps_agents/core/meta_learning.py +666 -0
  278. tapps_agents-3.6.0/tapps_agents/core/module_path_sanitizer.py +199 -0
  279. tapps_agents-3.6.0/tapps_agents/core/multi_agent_orchestrator.py +382 -0
  280. tapps_agents-3.6.0/tapps_agents/core/network_errors.py +125 -0
  281. tapps_agents-3.6.0/tapps_agents/core/nfr_validator.py +336 -0
  282. tapps_agents-3.6.0/tapps_agents/core/offline_mode.py +158 -0
  283. tapps_agents-3.6.0/tapps_agents/core/output_contracts.py +300 -0
  284. tapps_agents-3.6.0/tapps_agents/core/output_formatter.py +300 -0
  285. tapps_agents-3.6.0/tapps_agents/core/path_normalizer.py +174 -0
  286. tapps_agents-3.6.0/tapps_agents/core/path_validator.py +322 -0
  287. tapps_agents-3.6.0/tapps_agents/core/pattern_library.py +250 -0
  288. tapps_agents-3.6.0/tapps_agents/core/performance_benchmark.py +301 -0
  289. tapps_agents-3.6.0/tapps_agents/core/performance_monitor.py +184 -0
  290. tapps_agents-3.6.0/tapps_agents/core/playwright_mcp_controller.py +771 -0
  291. tapps_agents-3.6.0/tapps_agents/core/policy_loader.py +135 -0
  292. tapps_agents-3.6.0/tapps_agents/core/progress.py +166 -0
  293. tapps_agents-3.6.0/tapps_agents/core/project_profile.py +355 -0
  294. tapps_agents-3.6.0/tapps_agents/core/project_type_detector.py +454 -0
  295. tapps_agents-3.6.0/tapps_agents/core/prompt_base.py +223 -0
  296. tapps_agents-3.6.0/tapps_agents/core/prompt_learning/__init__.py +2 -0
  297. tapps_agents-3.6.0/tapps_agents/core/prompt_learning/learning_loop.py +24 -0
  298. tapps_agents-3.6.0/tapps_agents/core/prompt_learning/project_prompt_store.py +25 -0
  299. tapps_agents-3.6.0/tapps_agents/core/prompt_learning/skills_prompt_analyzer.py +35 -0
  300. tapps_agents-3.6.0/tapps_agents/core/prompt_optimization/__init__.py +6 -0
  301. tapps_agents-3.6.0/tapps_agents/core/prompt_optimization/ab_tester.py +114 -0
  302. tapps_agents-3.6.0/tapps_agents/core/prompt_optimization/correlation_analyzer.py +160 -0
  303. tapps_agents-3.6.0/tapps_agents/core/prompt_optimization/progressive_refiner.py +129 -0
  304. tapps_agents-3.6.0/tapps_agents/core/prompt_optimization/prompt_library.py +37 -0
  305. tapps_agents-3.6.0/tapps_agents/core/requirements_evaluator.py +431 -0
  306. tapps_agents-3.6.0/tapps_agents/core/resource_aware_executor.py +449 -0
  307. tapps_agents-3.6.0/tapps_agents/core/resource_monitor.py +343 -0
  308. tapps_agents-3.6.0/tapps_agents/core/resume_handler.py +298 -0
  309. tapps_agents-3.6.0/tapps_agents/core/retry_handler.py +197 -0
  310. tapps_agents-3.6.0/tapps_agents/core/review_checklists.py +479 -0
  311. tapps_agents-3.6.0/tapps_agents/core/role_loader.py +201 -0
  312. tapps_agents-3.6.0/tapps_agents/core/role_template_loader.py +201 -0
  313. tapps_agents-3.6.0/tapps_agents/core/runtime_mode.py +60 -0
  314. tapps_agents-3.6.0/tapps_agents/core/security_scanner.py +342 -0
  315. tapps_agents-3.6.0/tapps_agents/core/skill_agent_registry.py +194 -0
  316. tapps_agents-3.6.0/tapps_agents/core/skill_integration.py +208 -0
  317. tapps_agents-3.6.0/tapps_agents/core/skill_loader.py +492 -0
  318. tapps_agents-3.6.0/tapps_agents/core/skill_template.py +341 -0
  319. tapps_agents-3.6.0/tapps_agents/core/skill_validator.py +478 -0
  320. tapps_agents-3.6.0/tapps_agents/core/stack_analyzer.py +35 -0
  321. tapps_agents-3.6.0/tapps_agents/core/startup.py +174 -0
  322. tapps_agents-3.6.0/tapps_agents/core/storage_manager.py +397 -0
  323. tapps_agents-3.6.0/tapps_agents/core/storage_models.py +166 -0
  324. tapps_agents-3.6.0/tapps_agents/core/story_evaluator.py +410 -0
  325. tapps_agents-3.6.0/tapps_agents/core/subprocess_utils.py +170 -0
  326. tapps_agents-3.6.0/tapps_agents/core/task_duration.py +296 -0
  327. tapps_agents-3.6.0/tapps_agents/core/task_memory.py +582 -0
  328. tapps_agents-3.6.0/tapps_agents/core/task_state.py +226 -0
  329. tapps_agents-3.6.0/tapps_agents/core/tech_stack_priorities.py +208 -0
  330. tapps_agents-3.6.0/tapps_agents/core/temp_directory.py +194 -0
  331. tapps_agents-3.6.0/tapps_agents/core/template_merger.py +600 -0
  332. tapps_agents-3.6.0/tapps_agents/core/template_selector.py +280 -0
  333. tapps_agents-3.6.0/tapps_agents/core/test_generator.py +286 -0
  334. tapps_agents-3.6.0/tapps_agents/core/tiered_context.py +253 -0
  335. tapps_agents-3.6.0/tapps_agents/core/token_monitor.py +345 -0
  336. tapps_agents-3.6.0/tapps_agents/core/traceability.py +254 -0
  337. tapps_agents-3.6.0/tapps_agents/core/trajectory_tracker.py +50 -0
  338. tapps_agents-3.6.0/tapps_agents/core/unicode_safe.py +143 -0
  339. tapps_agents-3.6.0/tapps_agents/core/unified_cache_config.py +170 -0
  340. tapps_agents-3.6.0/tapps_agents/core/unified_state.py +324 -0
  341. tapps_agents-3.6.0/tapps_agents/core/validate_cursor_setup.py +237 -0
  342. tapps_agents-3.6.0/tapps_agents/core/validation_registry.py +136 -0
  343. tapps_agents-3.6.0/tapps_agents/core/validators/__init__.py +4 -0
  344. tapps_agents-3.6.0/tapps_agents/core/validators/python_validator.py +87 -0
  345. tapps_agents-3.6.0/tapps_agents/core/verification_agent.py +90 -0
  346. tapps_agents-3.6.0/tapps_agents/core/visual_feedback.py +644 -0
  347. tapps_agents-3.6.0/tapps_agents/core/workflow_validator.py +197 -0
  348. tapps_agents-3.6.0/tapps_agents/core/worktree.py +367 -0
  349. tapps_agents-3.6.0/tapps_agents/docker/__init__.py +10 -0
  350. tapps_agents-3.6.0/tapps_agents/docker/analyzer.py +186 -0
  351. tapps_agents-3.6.0/tapps_agents/docker/debugger.py +229 -0
  352. tapps_agents-3.6.0/tapps_agents/docker/error_patterns.py +216 -0
  353. tapps_agents-3.6.0/tapps_agents/epic/__init__.py +22 -0
  354. tapps_agents-3.6.0/tapps_agents/epic/beads_sync.py +115 -0
  355. tapps_agents-3.6.0/tapps_agents/epic/markdown_sync.py +105 -0
  356. tapps_agents-3.6.0/tapps_agents/epic/models.py +96 -0
  357. tapps_agents-3.6.0/tapps_agents/experts/__init__.py +163 -0
  358. tapps_agents-3.6.0/tapps_agents/experts/agent_integration.py +243 -0
  359. tapps_agents-3.6.0/tapps_agents/experts/auto_generator.py +331 -0
  360. tapps_agents-3.6.0/tapps_agents/experts/base_expert.py +536 -0
  361. tapps_agents-3.6.0/tapps_agents/experts/builtin_registry.py +261 -0
  362. tapps_agents-3.6.0/tapps_agents/experts/business_metrics.py +565 -0
  363. tapps_agents-3.6.0/tapps_agents/experts/cache.py +266 -0
  364. tapps_agents-3.6.0/tapps_agents/experts/confidence_breakdown.py +306 -0
  365. tapps_agents-3.6.0/tapps_agents/experts/confidence_calculator.py +336 -0
  366. tapps_agents-3.6.0/tapps_agents/experts/confidence_metrics.py +236 -0
  367. tapps_agents-3.6.0/tapps_agents/experts/domain_config.py +311 -0
  368. tapps_agents-3.6.0/tapps_agents/experts/domain_detector.py +550 -0
  369. tapps_agents-3.6.0/tapps_agents/experts/domain_utils.py +84 -0
  370. tapps_agents-3.6.0/tapps_agents/experts/expert_config.py +113 -0
  371. tapps_agents-3.6.0/tapps_agents/experts/expert_engine.py +465 -0
  372. tapps_agents-3.6.0/tapps_agents/experts/expert_registry.py +744 -0
  373. tapps_agents-3.6.0/tapps_agents/experts/expert_synthesizer.py +70 -0
  374. tapps_agents-3.6.0/tapps_agents/experts/governance.py +197 -0
  375. tapps_agents-3.6.0/tapps_agents/experts/history_logger.py +312 -0
  376. tapps_agents-3.6.0/tapps_agents/experts/knowledge/README.md +180 -0
  377. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/accessible-forms.md +331 -0
  378. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/aria-patterns.md +344 -0
  379. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/color-contrast.md +285 -0
  380. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md +332 -0
  381. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/screen-readers.md +282 -0
  382. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/semantic-html.md +355 -0
  383. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/testing-accessibility.md +369 -0
  384. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/wcag-2.1.md +296 -0
  385. tapps_agents-3.6.0/tapps_agents/experts/knowledge/accessibility/wcag-2.2.md +211 -0
  386. tapps_agents-3.6.0/tapps_agents/experts/knowledge/agent-learning/best-practices.md +715 -0
  387. tapps_agents-3.6.0/tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md +282 -0
  388. tapps_agents-3.6.0/tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md +320 -0
  389. tapps_agents-3.6.0/tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md +90 -0
  390. tapps_agents-3.6.0/tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md +260 -0
  391. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md +309 -0
  392. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +521 -0
  393. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/api-versioning.md +421 -0
  394. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md +61 -0
  395. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/contract-testing.md +221 -0
  396. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +489 -0
  397. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md +360 -0
  398. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md +262 -0
  399. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md +582 -0
  400. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md +499 -0
  401. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md +455 -0
  402. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md +507 -0
  403. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md +618 -0
  404. tapps_agents-3.6.0/tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md +480 -0
  405. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md +175 -0
  406. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md +261 -0
  407. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md +222 -0
  408. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md +122 -0
  409. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md +153 -0
  410. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md +285 -0
  411. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md +187 -0
  412. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md +253 -0
  413. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md +155 -0
  414. tapps_agents-3.6.0/tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md +200 -0
  415. tapps_agents-3.6.0/tapps_agents/experts/knowledge/code-quality-analysis/README.md +16 -0
  416. tapps_agents-3.6.0/tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md +137 -0
  417. tapps_agents-3.6.0/tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md +181 -0
  418. tapps_agents-3.6.0/tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md +191 -0
  419. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md +313 -0
  420. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md +255 -0
  421. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md +282 -0
  422. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md +275 -0
  423. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md +297 -0
  424. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md +383 -0
  425. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md +285 -0
  426. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md +344 -0
  427. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md +385 -0
  428. tapps_agents-3.6.0/tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md +280 -0
  429. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md +164 -0
  430. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md +182 -0
  431. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/data-modeling.md +172 -0
  432. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/database-design.md +187 -0
  433. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md +342 -0
  434. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md +432 -0
  435. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md +442 -0
  436. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/migration-strategies.md +216 -0
  437. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md +259 -0
  438. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md +184 -0
  439. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/sql-optimization.md +175 -0
  440. tapps_agents-3.6.0/tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md +444 -0
  441. tapps_agents-3.6.0/tapps_agents/experts/knowledge/development-workflow/README.md +16 -0
  442. tapps_agents-3.6.0/tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md +216 -0
  443. tapps_agents-3.6.0/tapps_agents/experts/knowledge/development-workflow/build-strategies.md +198 -0
  444. tapps_agents-3.6.0/tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md +205 -0
  445. tapps_agents-3.6.0/tapps_agents/experts/knowledge/development-workflow/git-workflows.md +205 -0
  446. tapps_agents-3.6.0/tapps_agents/experts/knowledge/documentation-knowledge-management/README.md +16 -0
  447. tapps_agents-3.6.0/tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md +231 -0
  448. tapps_agents-3.6.0/tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md +191 -0
  449. tapps_agents-3.6.0/tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md +171 -0
  450. tapps_agents-3.6.0/tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md +192 -0
  451. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md +461 -0
  452. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md +459 -0
  453. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md +367 -0
  454. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md +478 -0
  455. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md +510 -0
  456. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md +492 -0
  457. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md +573 -0
  458. tapps_agents-3.6.0/tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md +419 -0
  459. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/anti-patterns.md +284 -0
  460. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/api-performance.md +256 -0
  461. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/caching.md +327 -0
  462. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/database-performance.md +252 -0
  463. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/optimization-patterns.md +327 -0
  464. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/profiling.md +297 -0
  465. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/resource-management.md +293 -0
  466. tapps_agents-3.6.0/tapps_agents/experts/knowledge/performance/scalability.md +306 -0
  467. tapps_agents-3.6.0/tapps_agents/experts/knowledge/security/owasp-top10.md +209 -0
  468. tapps_agents-3.6.0/tapps_agents/experts/knowledge/security/secure-coding-practices.md +207 -0
  469. tapps_agents-3.6.0/tapps_agents/experts/knowledge/security/threat-modeling.md +220 -0
  470. tapps_agents-3.6.0/tapps_agents/experts/knowledge/security/vulnerability-patterns.md +342 -0
  471. tapps_agents-3.6.0/tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md +314 -0
  472. tapps_agents-3.6.0/tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md +379 -0
  473. tapps_agents-3.6.0/tapps_agents/experts/knowledge/software-architecture/service-communication.md +316 -0
  474. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/best-practices.md +310 -0
  475. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/coverage-analysis.md +293 -0
  476. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/mocking.md +256 -0
  477. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/test-automation.md +276 -0
  478. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/test-data.md +271 -0
  479. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/test-design-patterns.md +280 -0
  480. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/test-maintenance.md +236 -0
  481. tapps_agents-3.6.0/tapps_agents/experts/knowledge/testing/test-strategies.md +311 -0
  482. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/information-architecture.md +325 -0
  483. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/interaction-design.md +363 -0
  484. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/prototyping.md +293 -0
  485. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/usability-heuristics.md +337 -0
  486. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/usability-testing.md +311 -0
  487. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/user-journeys.md +296 -0
  488. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/user-research.md +373 -0
  489. tapps_agents-3.6.0/tapps_agents/experts/knowledge/user-experience/ux-principles.md +340 -0
  490. tapps_agents-3.6.0/tapps_agents/experts/knowledge_freshness.py +321 -0
  491. tapps_agents-3.6.0/tapps_agents/experts/knowledge_ingestion.py +438 -0
  492. tapps_agents-3.6.0/tapps_agents/experts/knowledge_need_detector.py +93 -0
  493. tapps_agents-3.6.0/tapps_agents/experts/knowledge_validator.py +382 -0
  494. tapps_agents-3.6.0/tapps_agents/experts/observability.py +440 -0
  495. tapps_agents-3.6.0/tapps_agents/experts/passive_notifier.py +238 -0
  496. tapps_agents-3.6.0/tapps_agents/experts/proactive_orchestrator.py +32 -0
  497. tapps_agents-3.6.0/tapps_agents/experts/rag_chunker.py +205 -0
  498. tapps_agents-3.6.0/tapps_agents/experts/rag_embedder.py +152 -0
  499. tapps_agents-3.6.0/tapps_agents/experts/rag_evaluation.py +299 -0
  500. tapps_agents-3.6.0/tapps_agents/experts/rag_index.py +303 -0
  501. tapps_agents-3.6.0/tapps_agents/experts/rag_metrics.py +293 -0
  502. tapps_agents-3.6.0/tapps_agents/experts/rag_safety.py +263 -0
  503. tapps_agents-3.6.0/tapps_agents/experts/report_generator.py +296 -0
  504. tapps_agents-3.6.0/tapps_agents/experts/setup_wizard.py +441 -0
  505. tapps_agents-3.6.0/tapps_agents/experts/simple_rag.py +431 -0
  506. tapps_agents-3.6.0/tapps_agents/experts/vector_rag.py +354 -0
  507. tapps_agents-3.6.0/tapps_agents/experts/weight_distributor.py +304 -0
  508. tapps_agents-3.6.0/tapps_agents/health/__init__.py +24 -0
  509. tapps_agents-3.6.0/tapps_agents/health/base.py +75 -0
  510. tapps_agents-3.6.0/tapps_agents/health/checks/__init__.py +22 -0
  511. tapps_agents-3.6.0/tapps_agents/health/checks/automation.py +127 -0
  512. tapps_agents-3.6.0/tapps_agents/health/checks/context7_cache.py +210 -0
  513. tapps_agents-3.6.0/tapps_agents/health/checks/environment.py +116 -0
  514. tapps_agents-3.6.0/tapps_agents/health/checks/execution.py +170 -0
  515. tapps_agents-3.6.0/tapps_agents/health/checks/knowledge_base.py +187 -0
  516. tapps_agents-3.6.0/tapps_agents/health/checks/outcomes.py +324 -0
  517. tapps_agents-3.6.0/tapps_agents/health/collector.py +280 -0
  518. tapps_agents-3.6.0/tapps_agents/health/dashboard.py +137 -0
  519. tapps_agents-3.6.0/tapps_agents/health/metrics.py +151 -0
  520. tapps_agents-3.6.0/tapps_agents/health/orchestrator.py +271 -0
  521. tapps_agents-3.6.0/tapps_agents/health/registry.py +166 -0
  522. tapps_agents-3.6.0/tapps_agents/hooks/__init__.py +33 -0
  523. tapps_agents-3.6.0/tapps_agents/hooks/config.py +140 -0
  524. tapps_agents-3.6.0/tapps_agents/hooks/events.py +135 -0
  525. tapps_agents-3.6.0/tapps_agents/hooks/executor.py +128 -0
  526. tapps_agents-3.6.0/tapps_agents/hooks/manager.py +143 -0
  527. tapps_agents-3.6.0/tapps_agents/integration/__init__.py +8 -0
  528. tapps_agents-3.6.0/tapps_agents/integration/service_integrator.py +121 -0
  529. tapps_agents-3.6.0/tapps_agents/integrations/__init__.py +10 -0
  530. tapps_agents-3.6.0/tapps_agents/integrations/clawdbot.py +525 -0
  531. tapps_agents-3.6.0/tapps_agents/integrations/memory_bridge.py +356 -0
  532. tapps_agents-3.6.0/tapps_agents/mcp/__init__.py +18 -0
  533. tapps_agents-3.6.0/tapps_agents/mcp/gateway.py +112 -0
  534. tapps_agents-3.6.0/tapps_agents/mcp/servers/__init__.py +13 -0
  535. tapps_agents-3.6.0/tapps_agents/mcp/servers/analysis.py +204 -0
  536. tapps_agents-3.6.0/tapps_agents/mcp/servers/context7.py +198 -0
  537. tapps_agents-3.6.0/tapps_agents/mcp/servers/filesystem.py +218 -0
  538. tapps_agents-3.6.0/tapps_agents/mcp/servers/git.py +201 -0
  539. tapps_agents-3.6.0/tapps_agents/mcp/tool_registry.py +115 -0
  540. tapps_agents-3.6.0/tapps_agents/quality/__init__.py +54 -0
  541. tapps_agents-3.6.0/tapps_agents/quality/coverage_analyzer.py +379 -0
  542. tapps_agents-3.6.0/tapps_agents/quality/enforcement.py +82 -0
  543. tapps_agents-3.6.0/tapps_agents/quality/gates/__init__.py +37 -0
  544. tapps_agents-3.6.0/tapps_agents/quality/gates/approval_gate.py +255 -0
  545. tapps_agents-3.6.0/tapps_agents/quality/gates/base.py +84 -0
  546. tapps_agents-3.6.0/tapps_agents/quality/gates/exceptions.py +43 -0
  547. tapps_agents-3.6.0/tapps_agents/quality/gates/policy_gate.py +195 -0
  548. tapps_agents-3.6.0/tapps_agents/quality/gates/registry.py +239 -0
  549. tapps_agents-3.6.0/tapps_agents/quality/gates/security_gate.py +156 -0
  550. tapps_agents-3.6.0/tapps_agents/quality/quality_gates.py +369 -0
  551. tapps_agents-3.6.0/tapps_agents/quality/secret_scanner.py +335 -0
  552. tapps_agents-3.6.0/tapps_agents/session/__init__.py +19 -0
  553. tapps_agents-3.6.0/tapps_agents/session/manager.py +256 -0
  554. tapps_agents-3.6.0/tapps_agents/simple_mode/__init__.py +66 -0
  555. tapps_agents-3.6.0/tapps_agents/simple_mode/agent_contracts.py +357 -0
  556. tapps_agents-3.6.0/tapps_agents/simple_mode/beads_hooks.py +151 -0
  557. tapps_agents-3.6.0/tapps_agents/simple_mode/code_snippet_handler.py +382 -0
  558. tapps_agents-3.6.0/tapps_agents/simple_mode/documentation_manager.py +395 -0
  559. tapps_agents-3.6.0/tapps_agents/simple_mode/documentation_reader.py +187 -0
  560. tapps_agents-3.6.0/tapps_agents/simple_mode/file_inference.py +292 -0
  561. tapps_agents-3.6.0/tapps_agents/simple_mode/framework_change_detector.py +268 -0
  562. tapps_agents-3.6.0/tapps_agents/simple_mode/intent_parser.py +510 -0
  563. tapps_agents-3.6.0/tapps_agents/simple_mode/learning_progression.py +358 -0
  564. tapps_agents-3.6.0/tapps_agents/simple_mode/nl_handler.py +700 -0
  565. tapps_agents-3.6.0/tapps_agents/simple_mode/onboarding.py +253 -0
  566. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/__init__.py +38 -0
  567. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/base.py +185 -0
  568. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py +49 -0
  569. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py +135 -0
  570. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2700 -0
  571. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/deliverable_checklist.py +349 -0
  572. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py +53 -0
  573. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/epic_orchestrator.py +122 -0
  574. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/explore_orchestrator.py +184 -0
  575. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -0
  576. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py +206 -0
  577. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/pr_orchestrator.py +237 -0
  578. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py +222 -0
  579. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/requirements_tracer.py +262 -0
  580. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/resume_orchestrator.py +210 -0
  581. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/review_orchestrator.py +161 -0
  582. tapps_agents-3.6.0/tapps_agents/simple_mode/orchestrators/test_orchestrator.py +82 -0
  583. tapps_agents-3.6.0/tapps_agents/simple_mode/output_aggregator.py +340 -0
  584. tapps_agents-3.6.0/tapps_agents/simple_mode/result_formatters.py +598 -0
  585. tapps_agents-3.6.0/tapps_agents/simple_mode/step_dependencies.py +382 -0
  586. tapps_agents-3.6.0/tapps_agents/simple_mode/step_results.py +276 -0
  587. tapps_agents-3.6.0/tapps_agents/simple_mode/streaming.py +388 -0
  588. tapps_agents-3.6.0/tapps_agents/simple_mode/variations.py +129 -0
  589. tapps_agents-3.6.0/tapps_agents/simple_mode/visual_feedback.py +238 -0
  590. tapps_agents-3.6.0/tapps_agents/simple_mode/zero_config.py +274 -0
  591. tapps_agents-3.6.0/tapps_agents/suggestions/__init__.py +8 -0
  592. tapps_agents-3.6.0/tapps_agents/suggestions/inline_suggester.py +52 -0
  593. tapps_agents-3.6.0/tapps_agents/templates/__init__.py +8 -0
  594. tapps_agents-3.6.0/tapps_agents/templates/microservice_generator.py +274 -0
  595. tapps_agents-3.6.0/tapps_agents/utils/env_validator.py +291 -0
  596. tapps_agents-3.6.0/tapps_agents/workflow/__init__.py +171 -0
  597. tapps_agents-3.6.0/tapps_agents/workflow/acceptance_verifier.py +132 -0
  598. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/__init__.py +41 -0
  599. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/analyst_handler.py +75 -0
  600. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/architect_handler.py +107 -0
  601. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/base.py +84 -0
  602. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/debugger_handler.py +100 -0
  603. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/designer_handler.py +110 -0
  604. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/documenter_handler.py +94 -0
  605. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/implementer_handler.py +235 -0
  606. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/ops_handler.py +62 -0
  607. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/orchestrator_handler.py +43 -0
  608. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/planner_handler.py +98 -0
  609. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/registry.py +119 -0
  610. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/reviewer_handler.py +119 -0
  611. tapps_agents-3.6.0/tapps_agents/workflow/agent_handlers/tester_handler.py +69 -0
  612. tapps_agents-3.6.0/tapps_agents/workflow/analytics_accessor.py +337 -0
  613. tapps_agents-3.6.0/tapps_agents/workflow/analytics_alerts.py +416 -0
  614. tapps_agents-3.6.0/tapps_agents/workflow/analytics_dashboard_cursor.py +281 -0
  615. tapps_agents-3.6.0/tapps_agents/workflow/analytics_dual_write.py +103 -0
  616. tapps_agents-3.6.0/tapps_agents/workflow/analytics_integration.py +119 -0
  617. tapps_agents-3.6.0/tapps_agents/workflow/analytics_query_parser.py +278 -0
  618. tapps_agents-3.6.0/tapps_agents/workflow/analytics_visualizer.py +259 -0
  619. tapps_agents-3.6.0/tapps_agents/workflow/artifact_helper.py +204 -0
  620. tapps_agents-3.6.0/tapps_agents/workflow/audit_logger.py +263 -0
  621. tapps_agents-3.6.0/tapps_agents/workflow/auto_execution_config.py +340 -0
  622. tapps_agents-3.6.0/tapps_agents/workflow/auto_progression.py +586 -0
  623. tapps_agents-3.6.0/tapps_agents/workflow/branch_cleanup.py +349 -0
  624. tapps_agents-3.6.0/tapps_agents/workflow/checkpoint.py +256 -0
  625. tapps_agents-3.6.0/tapps_agents/workflow/checkpoint_manager.py +178 -0
  626. tapps_agents-3.6.0/tapps_agents/workflow/code_artifact.py +179 -0
  627. tapps_agents-3.6.0/tapps_agents/workflow/common_enums.py +96 -0
  628. tapps_agents-3.6.0/tapps_agents/workflow/confirmation_handler.py +130 -0
  629. tapps_agents-3.6.0/tapps_agents/workflow/context_analyzer.py +222 -0
  630. tapps_agents-3.6.0/tapps_agents/workflow/context_artifact.py +230 -0
  631. tapps_agents-3.6.0/tapps_agents/workflow/cursor_chat.py +94 -0
  632. tapps_agents-3.6.0/tapps_agents/workflow/cursor_executor.py +2337 -0
  633. tapps_agents-3.6.0/tapps_agents/workflow/cursor_skill_helper.py +516 -0
  634. tapps_agents-3.6.0/tapps_agents/workflow/dependency_resolver.py +244 -0
  635. tapps_agents-3.6.0/tapps_agents/workflow/design_artifact.py +156 -0
  636. tapps_agents-3.6.0/tapps_agents/workflow/detector.py +752 -0
  637. tapps_agents-3.6.0/tapps_agents/workflow/direct_execution_fallback.py +301 -0
  638. tapps_agents-3.6.0/tapps_agents/workflow/docs_artifact.py +168 -0
  639. tapps_agents-3.6.0/tapps_agents/workflow/enforcer.py +389 -0
  640. tapps_agents-3.6.0/tapps_agents/workflow/enhancement_artifact.py +142 -0
  641. tapps_agents-3.6.0/tapps_agents/workflow/error_recovery.py +806 -0
  642. tapps_agents-3.6.0/tapps_agents/workflow/event_bus.py +183 -0
  643. tapps_agents-3.6.0/tapps_agents/workflow/event_log.py +612 -0
  644. tapps_agents-3.6.0/tapps_agents/workflow/events.py +63 -0
  645. tapps_agents-3.6.0/tapps_agents/workflow/exceptions.py +43 -0
  646. tapps_agents-3.6.0/tapps_agents/workflow/execution_graph.py +498 -0
  647. tapps_agents-3.6.0/tapps_agents/workflow/execution_plan.py +126 -0
  648. tapps_agents-3.6.0/tapps_agents/workflow/file_utils.py +186 -0
  649. tapps_agents-3.6.0/tapps_agents/workflow/gate_evaluator.py +182 -0
  650. tapps_agents-3.6.0/tapps_agents/workflow/gate_integration.py +200 -0
  651. tapps_agents-3.6.0/tapps_agents/workflow/graph_visualizer.py +130 -0
  652. tapps_agents-3.6.0/tapps_agents/workflow/health_checker.py +206 -0
  653. tapps_agents-3.6.0/tapps_agents/workflow/logging_helper.py +243 -0
  654. tapps_agents-3.6.0/tapps_agents/workflow/manifest.py +582 -0
  655. tapps_agents-3.6.0/tapps_agents/workflow/marker_writer.py +250 -0
  656. tapps_agents-3.6.0/tapps_agents/workflow/message_formatter.py +188 -0
  657. tapps_agents-3.6.0/tapps_agents/workflow/messaging.py +325 -0
  658. tapps_agents-3.6.0/tapps_agents/workflow/metadata_models.py +91 -0
  659. tapps_agents-3.6.0/tapps_agents/workflow/metrics_integration.py +226 -0
  660. tapps_agents-3.6.0/tapps_agents/workflow/migration_utils.py +116 -0
  661. tapps_agents-3.6.0/tapps_agents/workflow/models.py +148 -0
  662. tapps_agents-3.6.0/tapps_agents/workflow/nlp_config.py +198 -0
  663. tapps_agents-3.6.0/tapps_agents/workflow/nlp_error_handler.py +207 -0
  664. tapps_agents-3.6.0/tapps_agents/workflow/nlp_executor.py +163 -0
  665. tapps_agents-3.6.0/tapps_agents/workflow/nlp_parser.py +528 -0
  666. tapps_agents-3.6.0/tapps_agents/workflow/observability_dashboard.py +451 -0
  667. tapps_agents-3.6.0/tapps_agents/workflow/observer.py +170 -0
  668. tapps_agents-3.6.0/tapps_agents/workflow/ops_artifact.py +257 -0
  669. tapps_agents-3.6.0/tapps_agents/workflow/output_passing.py +214 -0
  670. tapps_agents-3.6.0/tapps_agents/workflow/parallel_executor.py +463 -0
  671. tapps_agents-3.6.0/tapps_agents/workflow/planning_artifact.py +179 -0
  672. tapps_agents-3.6.0/tapps_agents/workflow/preset_loader.py +285 -0
  673. tapps_agents-3.6.0/tapps_agents/workflow/preset_recommender.py +270 -0
  674. tapps_agents-3.6.0/tapps_agents/workflow/progress_logger.py +145 -0
  675. tapps_agents-3.6.0/tapps_agents/workflow/progress_manager.py +303 -0
  676. tapps_agents-3.6.0/tapps_agents/workflow/progress_monitor.py +186 -0
  677. tapps_agents-3.6.0/tapps_agents/workflow/progress_updates.py +423 -0
  678. tapps_agents-3.6.0/tapps_agents/workflow/quality_artifact.py +158 -0
  679. tapps_agents-3.6.0/tapps_agents/workflow/quality_loopback.py +101 -0
  680. tapps_agents-3.6.0/tapps_agents/workflow/recommender.py +387 -0
  681. tapps_agents-3.6.0/tapps_agents/workflow/remediation_loop.py +166 -0
  682. tapps_agents-3.6.0/tapps_agents/workflow/result_aggregator.py +300 -0
  683. tapps_agents-3.6.0/tapps_agents/workflow/review_artifact.py +185 -0
  684. tapps_agents-3.6.0/tapps_agents/workflow/schema_validator.py +522 -0
  685. tapps_agents-3.6.0/tapps_agents/workflow/session_handoff.py +178 -0
  686. tapps_agents-3.6.0/tapps_agents/workflow/skill_invoker.py +648 -0
  687. tapps_agents-3.6.0/tapps_agents/workflow/state_manager.py +756 -0
  688. tapps_agents-3.6.0/tapps_agents/workflow/state_persistence_config.py +331 -0
  689. tapps_agents-3.6.0/tapps_agents/workflow/status_monitor.py +449 -0
  690. tapps_agents-3.6.0/tapps_agents/workflow/step_checkpoint.py +314 -0
  691. tapps_agents-3.6.0/tapps_agents/workflow/step_details.py +201 -0
  692. tapps_agents-3.6.0/tapps_agents/workflow/story_models.py +147 -0
  693. tapps_agents-3.6.0/tapps_agents/workflow/streaming.py +416 -0
  694. tapps_agents-3.6.0/tapps_agents/workflow/suggestion_engine.py +552 -0
  695. tapps_agents-3.6.0/tapps_agents/workflow/testing_artifact.py +186 -0
  696. tapps_agents-3.6.0/tapps_agents/workflow/timeline.py +158 -0
  697. tapps_agents-3.6.0/tapps_agents/workflow/token_integration.py +209 -0
  698. tapps_agents-3.6.0/tapps_agents/workflow/validation.py +217 -0
  699. tapps_agents-3.6.0/tapps_agents/workflow/visual_feedback.py +391 -0
  700. tapps_agents-3.6.0/tapps_agents/workflow/workflow_chain.py +95 -0
  701. tapps_agents-3.6.0/tapps_agents/workflow/workflow_summary.py +219 -0
  702. tapps_agents-3.6.0/tapps_agents/workflow/worktree_manager.py +724 -0
  703. tapps_agents-3.6.0/tapps_agents.egg-info/SOURCES.txt +757 -0
  704. tapps_agents-3.5.41/LICENSE +0 -22
  705. tapps_agents-3.5.41/MANIFEST.in +0 -48
  706. tapps_agents-3.5.41/PKG-INFO +0 -672
  707. tapps_agents-3.5.41/README.md +0 -618
  708. tapps_agents-3.5.41/pyproject.toml +0 -177
  709. tapps_agents-3.5.41/setup.cfg +0 -4
  710. tapps_agents-3.5.41/setup.py +0 -36
  711. tapps_agents-3.5.41/tapps_agents/__init__.py +0 -31
  712. tapps_agents-3.5.41/tapps_agents/agents/__init__.py +0 -22
  713. tapps_agents-3.5.41/tapps_agents/agents/analyst/__init__.py +0 -5
  714. tapps_agents-3.5.41/tapps_agents/agents/architect/__init__.py +0 -5
  715. tapps_agents-3.5.41/tapps_agents/agents/architect/agent.py +0 -1034
  716. tapps_agents-3.5.41/tapps_agents/agents/architect/pattern_detector.py +0 -75
  717. tapps_agents-3.5.41/tapps_agents/agents/cleanup/__init__.py +0 -7
  718. tapps_agents-3.5.41/tapps_agents/agents/cleanup/agent.py +0 -445
  719. tapps_agents-3.5.41/tapps_agents/agents/debugger/__init__.py +0 -7
  720. tapps_agents-3.5.41/tapps_agents/agents/debugger/agent.py +0 -310
  721. tapps_agents-3.5.41/tapps_agents/agents/debugger/error_analyzer.py +0 -437
  722. tapps_agents-3.5.41/tapps_agents/agents/designer/__init__.py +0 -5
  723. tapps_agents-3.5.41/tapps_agents/agents/designer/agent.py +0 -786
  724. tapps_agents-3.5.41/tapps_agents/agents/designer/visual_designer.py +0 -638
  725. tapps_agents-3.5.41/tapps_agents/agents/documenter/__init__.py +0 -7
  726. tapps_agents-3.5.41/tapps_agents/agents/documenter/agent.py +0 -531
  727. tapps_agents-3.5.41/tapps_agents/agents/documenter/doc_generator.py +0 -472
  728. tapps_agents-3.5.41/tapps_agents/agents/documenter/doc_validator.py +0 -393
  729. tapps_agents-3.5.41/tapps_agents/agents/documenter/framework_doc_updater.py +0 -493
  730. tapps_agents-3.5.41/tapps_agents/agents/enhancer/__init__.py +0 -7
  731. tapps_agents-3.5.41/tapps_agents/agents/evaluator/__init__.py +0 -7
  732. tapps_agents-3.5.41/tapps_agents/agents/evaluator/agent.py +0 -443
  733. tapps_agents-3.5.41/tapps_agents/agents/evaluator/priority_evaluator.py +0 -641
  734. tapps_agents-3.5.41/tapps_agents/agents/evaluator/quality_analyzer.py +0 -147
  735. tapps_agents-3.5.41/tapps_agents/agents/evaluator/report_generator.py +0 -344
  736. tapps_agents-3.5.41/tapps_agents/agents/evaluator/usage_analyzer.py +0 -192
  737. tapps_agents-3.5.41/tapps_agents/agents/evaluator/workflow_analyzer.py +0 -189
  738. tapps_agents-3.5.41/tapps_agents/agents/implementer/__init__.py +0 -7
  739. tapps_agents-3.5.41/tapps_agents/agents/implementer/agent.py +0 -798
  740. tapps_agents-3.5.41/tapps_agents/agents/implementer/auto_fix.py +0 -1119
  741. tapps_agents-3.5.41/tapps_agents/agents/implementer/code_generator.py +0 -73
  742. tapps_agents-3.5.41/tapps_agents/agents/improver/__init__.py +0 -1
  743. tapps_agents-3.5.41/tapps_agents/agents/improver/agent.py +0 -754
  744. tapps_agents-3.5.41/tapps_agents/agents/ops/__init__.py +0 -1
  745. tapps_agents-3.5.41/tapps_agents/agents/ops/agent.py +0 -620
  746. tapps_agents-3.5.41/tapps_agents/agents/ops/dependency_analyzer.py +0 -600
  747. tapps_agents-3.5.41/tapps_agents/agents/orchestrator/__init__.py +0 -5
  748. tapps_agents-3.5.41/tapps_agents/agents/orchestrator/agent.py +0 -522
  749. tapps_agents-3.5.41/tapps_agents/agents/planner/__init__.py +0 -7
  750. tapps_agents-3.5.41/tapps_agents/agents/planner/agent.py +0 -1127
  751. tapps_agents-3.5.41/tapps_agents/agents/reviewer/__init__.py +0 -25
  752. tapps_agents-3.5.41/tapps_agents/agents/reviewer/agent.py +0 -3513
  753. tapps_agents-3.5.41/tapps_agents/agents/reviewer/aggregator.py +0 -213
  754. tapps_agents-3.5.41/tapps_agents/agents/reviewer/batch_review.py +0 -448
  755. tapps_agents-3.5.41/tapps_agents/agents/reviewer/cache.py +0 -443
  756. tapps_agents-3.5.41/tapps_agents/agents/reviewer/context7_enhancer.py +0 -630
  757. tapps_agents-3.5.41/tapps_agents/agents/reviewer/context_detector.py +0 -203
  758. tapps_agents-3.5.41/tapps_agents/agents/reviewer/docker_compose_validator.py +0 -158
  759. tapps_agents-3.5.41/tapps_agents/agents/reviewer/dockerfile_validator.py +0 -176
  760. tapps_agents-3.5.41/tapps_agents/agents/reviewer/error_handling.py +0 -126
  761. tapps_agents-3.5.41/tapps_agents/agents/reviewer/feedback_generator.py +0 -490
  762. tapps_agents-3.5.41/tapps_agents/agents/reviewer/influxdb_validator.py +0 -316
  763. tapps_agents-3.5.41/tapps_agents/agents/reviewer/issue_tracking.py +0 -169
  764. tapps_agents-3.5.41/tapps_agents/agents/reviewer/library_detector.py +0 -295
  765. tapps_agents-3.5.41/tapps_agents/agents/reviewer/library_patterns.py +0 -268
  766. tapps_agents-3.5.41/tapps_agents/agents/reviewer/maintainability_scorer.py +0 -593
  767. tapps_agents-3.5.41/tapps_agents/agents/reviewer/metric_strategies.py +0 -276
  768. tapps_agents-3.5.41/tapps_agents/agents/reviewer/mqtt_validator.py +0 -160
  769. tapps_agents-3.5.41/tapps_agents/agents/reviewer/output_enhancer.py +0 -105
  770. tapps_agents-3.5.41/tapps_agents/agents/reviewer/pattern_detector.py +0 -241
  771. tapps_agents-3.5.41/tapps_agents/agents/reviewer/performance_scorer.py +0 -357
  772. tapps_agents-3.5.41/tapps_agents/agents/reviewer/phased_review.py +0 -516
  773. tapps_agents-3.5.41/tapps_agents/agents/reviewer/progressive_review.py +0 -435
  774. tapps_agents-3.5.41/tapps_agents/agents/reviewer/react_scorer.py +0 -331
  775. tapps_agents-3.5.41/tapps_agents/agents/reviewer/score_constants.py +0 -228
  776. tapps_agents-3.5.41/tapps_agents/agents/reviewer/score_validator.py +0 -507
  777. tapps_agents-3.5.41/tapps_agents/agents/reviewer/scorer_registry.py +0 -373
  778. tapps_agents-3.5.41/tapps_agents/agents/reviewer/scoring.py +0 -1566
  779. tapps_agents-3.5.41/tapps_agents/agents/reviewer/service_discovery.py +0 -534
  780. tapps_agents-3.5.41/tapps_agents/agents/reviewer/tools/__init__.py +0 -41
  781. tapps_agents-3.5.41/tapps_agents/agents/reviewer/tools/parallel_executor.py +0 -581
  782. tapps_agents-3.5.41/tapps_agents/agents/reviewer/tools/ruff_grouping.py +0 -250
  783. tapps_agents-3.5.41/tapps_agents/agents/reviewer/tools/scoped_mypy.py +0 -284
  784. tapps_agents-3.5.41/tapps_agents/agents/reviewer/typescript_scorer.py +0 -1142
  785. tapps_agents-3.5.41/tapps_agents/agents/reviewer/validation.py +0 -208
  786. tapps_agents-3.5.41/tapps_agents/agents/reviewer/websocket_validator.py +0 -132
  787. tapps_agents-3.5.41/tapps_agents/agents/tester/__init__.py +0 -7
  788. tapps_agents-3.5.41/tapps_agents/agents/tester/accessibility_auditor.py +0 -309
  789. tapps_agents-3.5.41/tapps_agents/agents/tester/agent.py +0 -1080
  790. tapps_agents-3.5.41/tapps_agents/agents/tester/batch_generator.py +0 -54
  791. tapps_agents-3.5.41/tapps_agents/agents/tester/context_learner.py +0 -51
  792. tapps_agents-3.5.41/tapps_agents/agents/tester/coverage_analyzer.py +0 -387
  793. tapps_agents-3.5.41/tapps_agents/agents/tester/coverage_test_generator.py +0 -290
  794. tapps_agents-3.5.41/tapps_agents/agents/tester/debug_enhancer.py +0 -238
  795. tapps_agents-3.5.41/tapps_agents/agents/tester/device_emulator.py +0 -241
  796. tapps_agents-3.5.41/tapps_agents/agents/tester/integration_generator.py +0 -62
  797. tapps_agents-3.5.41/tapps_agents/agents/tester/network_recorder.py +0 -300
  798. tapps_agents-3.5.41/tapps_agents/agents/tester/performance_monitor.py +0 -320
  799. tapps_agents-3.5.41/tapps_agents/agents/tester/test_fixer.py +0 -316
  800. tapps_agents-3.5.41/tapps_agents/agents/tester/test_generator.py +0 -632
  801. tapps_agents-3.5.41/tapps_agents/agents/tester/trace_manager.py +0 -234
  802. tapps_agents-3.5.41/tapps_agents/agents/tester/visual_regression.py +0 -291
  803. tapps_agents-3.5.41/tapps_agents/analysis/pattern_detector.py +0 -36
  804. tapps_agents-3.5.41/tapps_agents/beads/hydration.py +0 -213
  805. tapps_agents-3.5.41/tapps_agents/beads/parse.py +0 -32
  806. tapps_agents-3.5.41/tapps_agents/beads/specs.py +0 -206
  807. tapps_agents-3.5.41/tapps_agents/cli/__init__.py +0 -9
  808. tapps_agents-3.5.41/tapps_agents/cli/__main__.py +0 -8
  809. tapps_agents-3.5.41/tapps_agents/cli/base.py +0 -478
  810. tapps_agents-3.5.41/tapps_agents/cli/command_classifier.py +0 -72
  811. tapps_agents-3.5.41/tapps_agents/cli/commands/__init__.py +0 -2
  812. tapps_agents-3.5.41/tapps_agents/cli/commands/analyst.py +0 -173
  813. tapps_agents-3.5.41/tapps_agents/cli/commands/architect.py +0 -109
  814. tapps_agents-3.5.41/tapps_agents/cli/commands/cleanup_agent.py +0 -92
  815. tapps_agents-3.5.41/tapps_agents/cli/commands/common.py +0 -126
  816. tapps_agents-3.5.41/tapps_agents/cli/commands/debugger.py +0 -90
  817. tapps_agents-3.5.41/tapps_agents/cli/commands/designer.py +0 -112
  818. tapps_agents-3.5.41/tapps_agents/cli/commands/documenter.py +0 -136
  819. tapps_agents-3.5.41/tapps_agents/cli/commands/enhancer.py +0 -110
  820. tapps_agents-3.5.41/tapps_agents/cli/commands/evaluator.py +0 -255
  821. tapps_agents-3.5.41/tapps_agents/cli/commands/health.py +0 -665
  822. tapps_agents-3.5.41/tapps_agents/cli/commands/implementer.py +0 -301
  823. tapps_agents-3.5.41/tapps_agents/cli/commands/improver.py +0 -91
  824. tapps_agents-3.5.41/tapps_agents/cli/commands/knowledge.py +0 -111
  825. tapps_agents-3.5.41/tapps_agents/cli/commands/learning.py +0 -172
  826. tapps_agents-3.5.41/tapps_agents/cli/commands/observability.py +0 -283
  827. tapps_agents-3.5.41/tapps_agents/cli/commands/ops.py +0 -135
  828. tapps_agents-3.5.41/tapps_agents/cli/commands/orchestrator.py +0 -116
  829. tapps_agents-3.5.41/tapps_agents/cli/commands/planner.py +0 -237
  830. tapps_agents-3.5.41/tapps_agents/cli/commands/reviewer.py +0 -1872
  831. tapps_agents-3.5.41/tapps_agents/cli/commands/status.py +0 -285
  832. tapps_agents-3.5.41/tapps_agents/cli/commands/task.py +0 -227
  833. tapps_agents-3.5.41/tapps_agents/cli/commands/tester.py +0 -191
  834. tapps_agents-3.5.41/tapps_agents/cli/commands/top_level.py +0 -3586
  835. tapps_agents-3.5.41/tapps_agents/cli/feedback.py +0 -936
  836. tapps_agents-3.5.41/tapps_agents/cli/formatters.py +0 -608
  837. tapps_agents-3.5.41/tapps_agents/cli/help/__init__.py +0 -7
  838. tapps_agents-3.5.41/tapps_agents/cli/help/static_help.py +0 -425
  839. tapps_agents-3.5.41/tapps_agents/cli/network_detection.py +0 -110
  840. tapps_agents-3.5.41/tapps_agents/cli/output_compactor.py +0 -274
  841. tapps_agents-3.5.41/tapps_agents/cli/parsers/__init__.py +0 -2
  842. tapps_agents-3.5.41/tapps_agents/cli/parsers/analyst.py +0 -186
  843. tapps_agents-3.5.41/tapps_agents/cli/parsers/architect.py +0 -167
  844. tapps_agents-3.5.41/tapps_agents/cli/parsers/cleanup_agent.py +0 -228
  845. tapps_agents-3.5.41/tapps_agents/cli/parsers/debugger.py +0 -116
  846. tapps_agents-3.5.41/tapps_agents/cli/parsers/designer.py +0 -182
  847. tapps_agents-3.5.41/tapps_agents/cli/parsers/documenter.py +0 -134
  848. tapps_agents-3.5.41/tapps_agents/cli/parsers/enhancer.py +0 -113
  849. tapps_agents-3.5.41/tapps_agents/cli/parsers/evaluator.py +0 -213
  850. tapps_agents-3.5.41/tapps_agents/cli/parsers/implementer.py +0 -168
  851. tapps_agents-3.5.41/tapps_agents/cli/parsers/improver.py +0 -132
  852. tapps_agents-3.5.41/tapps_agents/cli/parsers/ops.py +0 -159
  853. tapps_agents-3.5.41/tapps_agents/cli/parsers/orchestrator.py +0 -98
  854. tapps_agents-3.5.41/tapps_agents/cli/parsers/planner.py +0 -145
  855. tapps_agents-3.5.41/tapps_agents/cli/parsers/reviewer.py +0 -462
  856. tapps_agents-3.5.41/tapps_agents/cli/parsers/tester.py +0 -124
  857. tapps_agents-3.5.41/tapps_agents/cli/progress_heartbeat.py +0 -254
  858. tapps_agents-3.5.41/tapps_agents/cli/streaming_progress.py +0 -336
  859. tapps_agents-3.5.41/tapps_agents/cli/utils/__init__.py +0 -6
  860. tapps_agents-3.5.41/tapps_agents/cli/utils/agent_lifecycle.py +0 -48
  861. tapps_agents-3.5.41/tapps_agents/cli/utils/error_formatter.py +0 -82
  862. tapps_agents-3.5.41/tapps_agents/cli/utils/error_recovery.py +0 -188
  863. tapps_agents-3.5.41/tapps_agents/cli/utils/output_handler.py +0 -59
  864. tapps_agents-3.5.41/tapps_agents/cli/utils/prompt_enhancer.py +0 -319
  865. tapps_agents-3.5.41/tapps_agents/cli/validators/__init__.py +0 -9
  866. tapps_agents-3.5.41/tapps_agents/cli/validators/command_validator.py +0 -81
  867. tapps_agents-3.5.41/tapps_agents/context7/__init__.py +0 -112
  868. tapps_agents-3.5.41/tapps_agents/context7/agent_integration.py +0 -869
  869. tapps_agents-3.5.41/tapps_agents/context7/analytics.py +0 -382
  870. tapps_agents-3.5.41/tapps_agents/context7/analytics_dashboard.py +0 -299
  871. tapps_agents-3.5.41/tapps_agents/context7/async_cache.py +0 -681
  872. tapps_agents-3.5.41/tapps_agents/context7/backup_client.py +0 -958
  873. tapps_agents-3.5.41/tapps_agents/context7/cache_locking.py +0 -194
  874. tapps_agents-3.5.41/tapps_agents/context7/cache_metadata.py +0 -214
  875. tapps_agents-3.5.41/tapps_agents/context7/cache_prewarm.py +0 -488
  876. tapps_agents-3.5.41/tapps_agents/context7/cache_structure.py +0 -168
  877. tapps_agents-3.5.41/tapps_agents/context7/cache_warming.py +0 -604
  878. tapps_agents-3.5.41/tapps_agents/context7/circuit_breaker.py +0 -376
  879. tapps_agents-3.5.41/tapps_agents/context7/cleanup.py +0 -461
  880. tapps_agents-3.5.41/tapps_agents/context7/commands.py +0 -858
  881. tapps_agents-3.5.41/tapps_agents/context7/credential_validation.py +0 -276
  882. tapps_agents-3.5.41/tapps_agents/context7/cross_reference_resolver.py +0 -168
  883. tapps_agents-3.5.41/tapps_agents/context7/cross_references.py +0 -424
  884. tapps_agents-3.5.41/tapps_agents/context7/doc_manager.py +0 -225
  885. tapps_agents-3.5.41/tapps_agents/context7/fuzzy_matcher.py +0 -369
  886. tapps_agents-3.5.41/tapps_agents/context7/kb_cache.py +0 -404
  887. tapps_agents-3.5.41/tapps_agents/context7/language_detector.py +0 -219
  888. tapps_agents-3.5.41/tapps_agents/context7/library_detector.py +0 -725
  889. tapps_agents-3.5.41/tapps_agents/context7/lookup.py +0 -738
  890. tapps_agents-3.5.41/tapps_agents/context7/metadata.py +0 -258
  891. tapps_agents-3.5.41/tapps_agents/context7/refresh_queue.py +0 -300
  892. tapps_agents-3.5.41/tapps_agents/context7/security.py +0 -373
  893. tapps_agents-3.5.41/tapps_agents/context7/staleness_policies.py +0 -278
  894. tapps_agents-3.5.41/tapps_agents/context7/tiles_integration.py +0 -47
  895. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/__init__.py +0 -20
  896. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/bug_finder.py +0 -306
  897. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/bug_fix_coordinator.py +0 -177
  898. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/commit_manager.py +0 -178
  899. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/continuous_bug_fixer.py +0 -322
  900. tapps_agents-3.5.41/tapps_agents/continuous_bug_fix/proactive_bug_finder.py +0 -285
  901. tapps_agents-3.5.41/tapps_agents/core/__init__.py +0 -298
  902. tapps_agents-3.5.41/tapps_agents/core/adaptive_cache_config.py +0 -432
  903. tapps_agents-3.5.41/tapps_agents/core/agent_base.py +0 -648
  904. tapps_agents-3.5.41/tapps_agents/core/agent_cache.py +0 -466
  905. tapps_agents-3.5.41/tapps_agents/core/agent_learning.py +0 -1865
  906. tapps_agents-3.5.41/tapps_agents/core/analytics_dashboard.py +0 -563
  907. tapps_agents-3.5.41/tapps_agents/core/analytics_enhancements.py +0 -597
  908. tapps_agents-3.5.41/tapps_agents/core/anonymization.py +0 -274
  909. tapps_agents-3.5.41/tapps_agents/core/ast_parser.py +0 -228
  910. tapps_agents-3.5.41/tapps_agents/core/async_file_ops.py +0 -402
  911. tapps_agents-3.5.41/tapps_agents/core/best_practice_consultant.py +0 -299
  912. tapps_agents-3.5.41/tapps_agents/core/brownfield_analyzer.py +0 -299
  913. tapps_agents-3.5.41/tapps_agents/core/brownfield_review.py +0 -541
  914. tapps_agents-3.5.41/tapps_agents/core/browser_controller.py +0 -513
  915. tapps_agents-3.5.41/tapps_agents/core/capability_registry.py +0 -418
  916. tapps_agents-3.5.41/tapps_agents/core/change_impact_analyzer.py +0 -190
  917. tapps_agents-3.5.41/tapps_agents/core/checkpoint_manager.py +0 -377
  918. tapps_agents-3.5.41/tapps_agents/core/code_generator.py +0 -329
  919. tapps_agents-3.5.41/tapps_agents/core/code_validator.py +0 -276
  920. tapps_agents-3.5.41/tapps_agents/core/command_registry.py +0 -327
  921. tapps_agents-3.5.41/tapps_agents/core/config.py +0 -1622
  922. tapps_agents-3.5.41/tapps_agents/core/context_gathering/__init__.py +0 -2
  923. tapps_agents-3.5.41/tapps_agents/core/context_gathering/repository_explorer.py +0 -28
  924. tapps_agents-3.5.41/tapps_agents/core/context_intelligence/__init__.py +0 -2
  925. tapps_agents-3.5.41/tapps_agents/core/context_intelligence/relevance_scorer.py +0 -24
  926. tapps_agents-3.5.41/tapps_agents/core/context_intelligence/token_budget_manager.py +0 -27
  927. tapps_agents-3.5.41/tapps_agents/core/context_manager.py +0 -240
  928. tapps_agents-3.5.41/tapps_agents/core/cursor_feedback_monitor.py +0 -146
  929. tapps_agents-3.5.41/tapps_agents/core/cursor_verification.py +0 -290
  930. tapps_agents-3.5.41/tapps_agents/core/customization_loader.py +0 -280
  931. tapps_agents-3.5.41/tapps_agents/core/customization_schema.py +0 -260
  932. tapps_agents-3.5.41/tapps_agents/core/customization_template.py +0 -238
  933. tapps_agents-3.5.41/tapps_agents/core/debug_logger.py +0 -124
  934. tapps_agents-3.5.41/tapps_agents/core/design_validator.py +0 -298
  935. tapps_agents-3.5.41/tapps_agents/core/diagram_generator.py +0 -226
  936. tapps_agents-3.5.41/tapps_agents/core/docker_utils.py +0 -232
  937. tapps_agents-3.5.41/tapps_agents/core/document_generator.py +0 -617
  938. tapps_agents-3.5.41/tapps_agents/core/domain_detector.py +0 -30
  939. tapps_agents-3.5.41/tapps_agents/core/error_envelope.py +0 -454
  940. tapps_agents-3.5.41/tapps_agents/core/error_handler.py +0 -270
  941. tapps_agents-3.5.41/tapps_agents/core/estimation_tracker.py +0 -189
  942. tapps_agents-3.5.41/tapps_agents/core/eval_prompt_engine.py +0 -116
  943. tapps_agents-3.5.41/tapps_agents/core/evaluation_base.py +0 -119
  944. tapps_agents-3.5.41/tapps_agents/core/evaluation_models.py +0 -320
  945. tapps_agents-3.5.41/tapps_agents/core/evaluation_orchestrator.py +0 -225
  946. tapps_agents-3.5.41/tapps_agents/core/evaluators/__init__.py +0 -7
  947. tapps_agents-3.5.41/tapps_agents/core/evaluators/architectural_evaluator.py +0 -205
  948. tapps_agents-3.5.41/tapps_agents/core/evaluators/behavioral_evaluator.py +0 -160
  949. tapps_agents-3.5.41/tapps_agents/core/evaluators/performance_profile_evaluator.py +0 -160
  950. tapps_agents-3.5.41/tapps_agents/core/evaluators/security_posture_evaluator.py +0 -148
  951. tapps_agents-3.5.41/tapps_agents/core/evaluators/spec_compliance_evaluator.py +0 -181
  952. tapps_agents-3.5.41/tapps_agents/core/exceptions.py +0 -107
  953. tapps_agents-3.5.41/tapps_agents/core/expert_config_generator.py +0 -293
  954. tapps_agents-3.5.41/tapps_agents/core/export_schema.py +0 -202
  955. tapps_agents-3.5.41/tapps_agents/core/external_feedback_models.py +0 -102
  956. tapps_agents-3.5.41/tapps_agents/core/external_feedback_storage.py +0 -213
  957. tapps_agents-3.5.41/tapps_agents/core/fallback_strategy.py +0 -314
  958. tapps_agents-3.5.41/tapps_agents/core/feedback_analyzer.py +0 -162
  959. tapps_agents-3.5.41/tapps_agents/core/feedback_collector.py +0 -178
  960. tapps_agents-3.5.41/tapps_agents/core/git_operations.py +0 -445
  961. tapps_agents-3.5.41/tapps_agents/core/hardware_profiler.py +0 -151
  962. tapps_agents-3.5.41/tapps_agents/core/instructions.py +0 -324
  963. tapps_agents-3.5.41/tapps_agents/core/io_guardrails.py +0 -69
  964. tapps_agents-3.5.41/tapps_agents/core/issue_manifest.py +0 -249
  965. tapps_agents-3.5.41/tapps_agents/core/issue_schema.py +0 -139
  966. tapps_agents-3.5.41/tapps_agents/core/json_utils.py +0 -128
  967. tapps_agents-3.5.41/tapps_agents/core/knowledge_graph.py +0 -446
  968. tapps_agents-3.5.41/tapps_agents/core/language_detector.py +0 -296
  969. tapps_agents-3.5.41/tapps_agents/core/learning_confidence.py +0 -242
  970. tapps_agents-3.5.41/tapps_agents/core/learning_dashboard.py +0 -246
  971. tapps_agents-3.5.41/tapps_agents/core/learning_decision.py +0 -384
  972. tapps_agents-3.5.41/tapps_agents/core/learning_explainability.py +0 -578
  973. tapps_agents-3.5.41/tapps_agents/core/learning_export.py +0 -287
  974. tapps_agents-3.5.41/tapps_agents/core/learning_integration.py +0 -228
  975. tapps_agents-3.5.41/tapps_agents/core/llm_behavior.py +0 -232
  976. tapps_agents-3.5.41/tapps_agents/core/long_duration_support.py +0 -786
  977. tapps_agents-3.5.41/tapps_agents/core/mcp_setup.py +0 -106
  978. tapps_agents-3.5.41/tapps_agents/core/memory_integration.py +0 -396
  979. tapps_agents-3.5.41/tapps_agents/core/meta_learning.py +0 -666
  980. tapps_agents-3.5.41/tapps_agents/core/module_path_sanitizer.py +0 -199
  981. tapps_agents-3.5.41/tapps_agents/core/multi_agent_orchestrator.py +0 -382
  982. tapps_agents-3.5.41/tapps_agents/core/network_errors.py +0 -125
  983. tapps_agents-3.5.41/tapps_agents/core/nfr_validator.py +0 -336
  984. tapps_agents-3.5.41/tapps_agents/core/offline_mode.py +0 -158
  985. tapps_agents-3.5.41/tapps_agents/core/output_contracts.py +0 -300
  986. tapps_agents-3.5.41/tapps_agents/core/output_formatter.py +0 -300
  987. tapps_agents-3.5.41/tapps_agents/core/path_normalizer.py +0 -174
  988. tapps_agents-3.5.41/tapps_agents/core/path_validator.py +0 -322
  989. tapps_agents-3.5.41/tapps_agents/core/pattern_library.py +0 -250
  990. tapps_agents-3.5.41/tapps_agents/core/performance_benchmark.py +0 -301
  991. tapps_agents-3.5.41/tapps_agents/core/performance_monitor.py +0 -184
  992. tapps_agents-3.5.41/tapps_agents/core/playwright_mcp_controller.py +0 -771
  993. tapps_agents-3.5.41/tapps_agents/core/policy_loader.py +0 -135
  994. tapps_agents-3.5.41/tapps_agents/core/progress.py +0 -166
  995. tapps_agents-3.5.41/tapps_agents/core/project_profile.py +0 -355
  996. tapps_agents-3.5.41/tapps_agents/core/project_type_detector.py +0 -454
  997. tapps_agents-3.5.41/tapps_agents/core/prompt_base.py +0 -223
  998. tapps_agents-3.5.41/tapps_agents/core/prompt_learning/__init__.py +0 -2
  999. tapps_agents-3.5.41/tapps_agents/core/prompt_learning/learning_loop.py +0 -24
  1000. tapps_agents-3.5.41/tapps_agents/core/prompt_learning/project_prompt_store.py +0 -25
  1001. tapps_agents-3.5.41/tapps_agents/core/prompt_learning/skills_prompt_analyzer.py +0 -35
  1002. tapps_agents-3.5.41/tapps_agents/core/prompt_optimization/__init__.py +0 -6
  1003. tapps_agents-3.5.41/tapps_agents/core/prompt_optimization/ab_tester.py +0 -114
  1004. tapps_agents-3.5.41/tapps_agents/core/prompt_optimization/correlation_analyzer.py +0 -160
  1005. tapps_agents-3.5.41/tapps_agents/core/prompt_optimization/progressive_refiner.py +0 -129
  1006. tapps_agents-3.5.41/tapps_agents/core/prompt_optimization/prompt_library.py +0 -37
  1007. tapps_agents-3.5.41/tapps_agents/core/requirements_evaluator.py +0 -431
  1008. tapps_agents-3.5.41/tapps_agents/core/resource_aware_executor.py +0 -449
  1009. tapps_agents-3.5.41/tapps_agents/core/resource_monitor.py +0 -343
  1010. tapps_agents-3.5.41/tapps_agents/core/resume_handler.py +0 -298
  1011. tapps_agents-3.5.41/tapps_agents/core/retry_handler.py +0 -197
  1012. tapps_agents-3.5.41/tapps_agents/core/review_checklists.py +0 -479
  1013. tapps_agents-3.5.41/tapps_agents/core/role_loader.py +0 -201
  1014. tapps_agents-3.5.41/tapps_agents/core/role_template_loader.py +0 -201
  1015. tapps_agents-3.5.41/tapps_agents/core/runtime_mode.py +0 -60
  1016. tapps_agents-3.5.41/tapps_agents/core/security_scanner.py +0 -342
  1017. tapps_agents-3.5.41/tapps_agents/core/skill_agent_registry.py +0 -194
  1018. tapps_agents-3.5.41/tapps_agents/core/skill_integration.py +0 -208
  1019. tapps_agents-3.5.41/tapps_agents/core/skill_loader.py +0 -492
  1020. tapps_agents-3.5.41/tapps_agents/core/skill_template.py +0 -341
  1021. tapps_agents-3.5.41/tapps_agents/core/skill_validator.py +0 -478
  1022. tapps_agents-3.5.41/tapps_agents/core/stack_analyzer.py +0 -35
  1023. tapps_agents-3.5.41/tapps_agents/core/startup.py +0 -174
  1024. tapps_agents-3.5.41/tapps_agents/core/storage_manager.py +0 -397
  1025. tapps_agents-3.5.41/tapps_agents/core/storage_models.py +0 -166
  1026. tapps_agents-3.5.41/tapps_agents/core/story_evaluator.py +0 -410
  1027. tapps_agents-3.5.41/tapps_agents/core/subprocess_utils.py +0 -170
  1028. tapps_agents-3.5.41/tapps_agents/core/task_duration.py +0 -296
  1029. tapps_agents-3.5.41/tapps_agents/core/task_memory.py +0 -582
  1030. tapps_agents-3.5.41/tapps_agents/core/task_state.py +0 -226
  1031. tapps_agents-3.5.41/tapps_agents/core/tech_stack_priorities.py +0 -208
  1032. tapps_agents-3.5.41/tapps_agents/core/temp_directory.py +0 -194
  1033. tapps_agents-3.5.41/tapps_agents/core/template_merger.py +0 -600
  1034. tapps_agents-3.5.41/tapps_agents/core/template_selector.py +0 -280
  1035. tapps_agents-3.5.41/tapps_agents/core/test_generator.py +0 -286
  1036. tapps_agents-3.5.41/tapps_agents/core/tiered_context.py +0 -253
  1037. tapps_agents-3.5.41/tapps_agents/core/token_monitor.py +0 -345
  1038. tapps_agents-3.5.41/tapps_agents/core/traceability.py +0 -254
  1039. tapps_agents-3.5.41/tapps_agents/core/trajectory_tracker.py +0 -50
  1040. tapps_agents-3.5.41/tapps_agents/core/unicode_safe.py +0 -143
  1041. tapps_agents-3.5.41/tapps_agents/core/unified_cache_config.py +0 -170
  1042. tapps_agents-3.5.41/tapps_agents/core/unified_state.py +0 -324
  1043. tapps_agents-3.5.41/tapps_agents/core/validate_cursor_setup.py +0 -237
  1044. tapps_agents-3.5.41/tapps_agents/core/validation_registry.py +0 -136
  1045. tapps_agents-3.5.41/tapps_agents/core/validators/__init__.py +0 -4
  1046. tapps_agents-3.5.41/tapps_agents/core/validators/python_validator.py +0 -87
  1047. tapps_agents-3.5.41/tapps_agents/core/verification_agent.py +0 -90
  1048. tapps_agents-3.5.41/tapps_agents/core/visual_feedback.py +0 -644
  1049. tapps_agents-3.5.41/tapps_agents/core/workflow_validator.py +0 -197
  1050. tapps_agents-3.5.41/tapps_agents/core/worktree.py +0 -367
  1051. tapps_agents-3.5.41/tapps_agents/docker/__init__.py +0 -10
  1052. tapps_agents-3.5.41/tapps_agents/docker/analyzer.py +0 -186
  1053. tapps_agents-3.5.41/tapps_agents/docker/debugger.py +0 -229
  1054. tapps_agents-3.5.41/tapps_agents/docker/error_patterns.py +0 -216
  1055. tapps_agents-3.5.41/tapps_agents/epic/__init__.py +0 -22
  1056. tapps_agents-3.5.41/tapps_agents/epic/beads_sync.py +0 -115
  1057. tapps_agents-3.5.41/tapps_agents/epic/markdown_sync.py +0 -105
  1058. tapps_agents-3.5.41/tapps_agents/epic/models.py +0 -96
  1059. tapps_agents-3.5.41/tapps_agents/experts/__init__.py +0 -163
  1060. tapps_agents-3.5.41/tapps_agents/experts/agent_integration.py +0 -243
  1061. tapps_agents-3.5.41/tapps_agents/experts/auto_generator.py +0 -331
  1062. tapps_agents-3.5.41/tapps_agents/experts/base_expert.py +0 -536
  1063. tapps_agents-3.5.41/tapps_agents/experts/builtin_registry.py +0 -261
  1064. tapps_agents-3.5.41/tapps_agents/experts/business_metrics.py +0 -565
  1065. tapps_agents-3.5.41/tapps_agents/experts/cache.py +0 -266
  1066. tapps_agents-3.5.41/tapps_agents/experts/confidence_breakdown.py +0 -306
  1067. tapps_agents-3.5.41/tapps_agents/experts/confidence_calculator.py +0 -336
  1068. tapps_agents-3.5.41/tapps_agents/experts/confidence_metrics.py +0 -236
  1069. tapps_agents-3.5.41/tapps_agents/experts/domain_config.py +0 -311
  1070. tapps_agents-3.5.41/tapps_agents/experts/domain_detector.py +0 -550
  1071. tapps_agents-3.5.41/tapps_agents/experts/domain_utils.py +0 -84
  1072. tapps_agents-3.5.41/tapps_agents/experts/expert_config.py +0 -113
  1073. tapps_agents-3.5.41/tapps_agents/experts/expert_engine.py +0 -465
  1074. tapps_agents-3.5.41/tapps_agents/experts/expert_registry.py +0 -744
  1075. tapps_agents-3.5.41/tapps_agents/experts/expert_synthesizer.py +0 -70
  1076. tapps_agents-3.5.41/tapps_agents/experts/governance.py +0 -197
  1077. tapps_agents-3.5.41/tapps_agents/experts/history_logger.py +0 -312
  1078. tapps_agents-3.5.41/tapps_agents/experts/knowledge/README.md +0 -180
  1079. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/accessible-forms.md +0 -331
  1080. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/aria-patterns.md +0 -344
  1081. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/color-contrast.md +0 -285
  1082. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md +0 -332
  1083. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/screen-readers.md +0 -282
  1084. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/semantic-html.md +0 -355
  1085. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/testing-accessibility.md +0 -369
  1086. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/wcag-2.1.md +0 -296
  1087. tapps_agents-3.5.41/tapps_agents/experts/knowledge/accessibility/wcag-2.2.md +0 -211
  1088. tapps_agents-3.5.41/tapps_agents/experts/knowledge/agent-learning/best-practices.md +0 -715
  1089. tapps_agents-3.5.41/tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md +0 -282
  1090. tapps_agents-3.5.41/tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md +0 -320
  1091. tapps_agents-3.5.41/tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md +0 -90
  1092. tapps_agents-3.5.41/tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md +0 -260
  1093. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md +0 -309
  1094. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +0 -521
  1095. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/api-versioning.md +0 -421
  1096. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md +0 -61
  1097. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/contract-testing.md +0 -221
  1098. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +0 -489
  1099. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md +0 -360
  1100. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md +0 -262
  1101. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md +0 -582
  1102. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md +0 -499
  1103. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md +0 -455
  1104. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md +0 -507
  1105. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md +0 -618
  1106. tapps_agents-3.5.41/tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md +0 -480
  1107. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md +0 -175
  1108. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md +0 -261
  1109. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md +0 -222
  1110. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md +0 -122
  1111. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md +0 -153
  1112. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md +0 -285
  1113. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md +0 -187
  1114. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md +0 -253
  1115. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md +0 -155
  1116. tapps_agents-3.5.41/tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md +0 -200
  1117. tapps_agents-3.5.41/tapps_agents/experts/knowledge/code-quality-analysis/README.md +0 -16
  1118. tapps_agents-3.5.41/tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md +0 -137
  1119. tapps_agents-3.5.41/tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md +0 -181
  1120. tapps_agents-3.5.41/tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md +0 -191
  1121. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md +0 -313
  1122. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md +0 -255
  1123. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md +0 -282
  1124. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md +0 -275
  1125. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md +0 -297
  1126. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md +0 -383
  1127. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md +0 -285
  1128. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md +0 -344
  1129. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md +0 -385
  1130. tapps_agents-3.5.41/tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md +0 -280
  1131. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md +0 -164
  1132. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md +0 -182
  1133. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/data-modeling.md +0 -172
  1134. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/database-design.md +0 -187
  1135. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md +0 -342
  1136. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md +0 -432
  1137. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md +0 -442
  1138. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/migration-strategies.md +0 -216
  1139. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md +0 -259
  1140. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md +0 -184
  1141. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/sql-optimization.md +0 -175
  1142. tapps_agents-3.5.41/tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md +0 -444
  1143. tapps_agents-3.5.41/tapps_agents/experts/knowledge/development-workflow/README.md +0 -16
  1144. tapps_agents-3.5.41/tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md +0 -216
  1145. tapps_agents-3.5.41/tapps_agents/experts/knowledge/development-workflow/build-strategies.md +0 -198
  1146. tapps_agents-3.5.41/tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md +0 -205
  1147. tapps_agents-3.5.41/tapps_agents/experts/knowledge/development-workflow/git-workflows.md +0 -205
  1148. tapps_agents-3.5.41/tapps_agents/experts/knowledge/documentation-knowledge-management/README.md +0 -16
  1149. tapps_agents-3.5.41/tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md +0 -231
  1150. tapps_agents-3.5.41/tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md +0 -191
  1151. tapps_agents-3.5.41/tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md +0 -171
  1152. tapps_agents-3.5.41/tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md +0 -192
  1153. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md +0 -461
  1154. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md +0 -459
  1155. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md +0 -367
  1156. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md +0 -478
  1157. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md +0 -510
  1158. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md +0 -492
  1159. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md +0 -573
  1160. tapps_agents-3.5.41/tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md +0 -419
  1161. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/anti-patterns.md +0 -284
  1162. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/api-performance.md +0 -256
  1163. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/caching.md +0 -327
  1164. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/database-performance.md +0 -252
  1165. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/optimization-patterns.md +0 -327
  1166. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/profiling.md +0 -297
  1167. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/resource-management.md +0 -293
  1168. tapps_agents-3.5.41/tapps_agents/experts/knowledge/performance/scalability.md +0 -306
  1169. tapps_agents-3.5.41/tapps_agents/experts/knowledge/security/owasp-top10.md +0 -209
  1170. tapps_agents-3.5.41/tapps_agents/experts/knowledge/security/secure-coding-practices.md +0 -207
  1171. tapps_agents-3.5.41/tapps_agents/experts/knowledge/security/threat-modeling.md +0 -220
  1172. tapps_agents-3.5.41/tapps_agents/experts/knowledge/security/vulnerability-patterns.md +0 -342
  1173. tapps_agents-3.5.41/tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md +0 -314
  1174. tapps_agents-3.5.41/tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md +0 -379
  1175. tapps_agents-3.5.41/tapps_agents/experts/knowledge/software-architecture/service-communication.md +0 -316
  1176. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/best-practices.md +0 -310
  1177. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/coverage-analysis.md +0 -293
  1178. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/mocking.md +0 -256
  1179. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/test-automation.md +0 -276
  1180. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/test-data.md +0 -271
  1181. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/test-design-patterns.md +0 -280
  1182. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/test-maintenance.md +0 -236
  1183. tapps_agents-3.5.41/tapps_agents/experts/knowledge/testing/test-strategies.md +0 -311
  1184. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/information-architecture.md +0 -325
  1185. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/interaction-design.md +0 -363
  1186. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/prototyping.md +0 -293
  1187. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/usability-heuristics.md +0 -337
  1188. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/usability-testing.md +0 -311
  1189. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/user-journeys.md +0 -296
  1190. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/user-research.md +0 -373
  1191. tapps_agents-3.5.41/tapps_agents/experts/knowledge/user-experience/ux-principles.md +0 -340
  1192. tapps_agents-3.5.41/tapps_agents/experts/knowledge_freshness.py +0 -321
  1193. tapps_agents-3.5.41/tapps_agents/experts/knowledge_ingestion.py +0 -438
  1194. tapps_agents-3.5.41/tapps_agents/experts/knowledge_need_detector.py +0 -93
  1195. tapps_agents-3.5.41/tapps_agents/experts/knowledge_validator.py +0 -382
  1196. tapps_agents-3.5.41/tapps_agents/experts/observability.py +0 -440
  1197. tapps_agents-3.5.41/tapps_agents/experts/passive_notifier.py +0 -238
  1198. tapps_agents-3.5.41/tapps_agents/experts/proactive_orchestrator.py +0 -32
  1199. tapps_agents-3.5.41/tapps_agents/experts/rag_chunker.py +0 -205
  1200. tapps_agents-3.5.41/tapps_agents/experts/rag_embedder.py +0 -152
  1201. tapps_agents-3.5.41/tapps_agents/experts/rag_evaluation.py +0 -299
  1202. tapps_agents-3.5.41/tapps_agents/experts/rag_index.py +0 -303
  1203. tapps_agents-3.5.41/tapps_agents/experts/rag_metrics.py +0 -293
  1204. tapps_agents-3.5.41/tapps_agents/experts/rag_safety.py +0 -263
  1205. tapps_agents-3.5.41/tapps_agents/experts/report_generator.py +0 -296
  1206. tapps_agents-3.5.41/tapps_agents/experts/setup_wizard.py +0 -441
  1207. tapps_agents-3.5.41/tapps_agents/experts/simple_rag.py +0 -431
  1208. tapps_agents-3.5.41/tapps_agents/experts/vector_rag.py +0 -354
  1209. tapps_agents-3.5.41/tapps_agents/experts/weight_distributor.py +0 -304
  1210. tapps_agents-3.5.41/tapps_agents/health/__init__.py +0 -24
  1211. tapps_agents-3.5.41/tapps_agents/health/base.py +0 -75
  1212. tapps_agents-3.5.41/tapps_agents/health/checks/__init__.py +0 -22
  1213. tapps_agents-3.5.41/tapps_agents/health/checks/automation.py +0 -127
  1214. tapps_agents-3.5.41/tapps_agents/health/checks/context7_cache.py +0 -210
  1215. tapps_agents-3.5.41/tapps_agents/health/checks/environment.py +0 -116
  1216. tapps_agents-3.5.41/tapps_agents/health/checks/execution.py +0 -170
  1217. tapps_agents-3.5.41/tapps_agents/health/checks/knowledge_base.py +0 -187
  1218. tapps_agents-3.5.41/tapps_agents/health/checks/outcomes.backup_20260204_064058.py +0 -324
  1219. tapps_agents-3.5.41/tapps_agents/health/checks/outcomes.backup_20260204_064256.py +0 -324
  1220. tapps_agents-3.5.41/tapps_agents/health/checks/outcomes.backup_20260204_064600.py +0 -324
  1221. tapps_agents-3.5.41/tapps_agents/health/checks/outcomes.py +0 -324
  1222. tapps_agents-3.5.41/tapps_agents/health/collector.py +0 -280
  1223. tapps_agents-3.5.41/tapps_agents/health/dashboard.py +0 -137
  1224. tapps_agents-3.5.41/tapps_agents/health/metrics.py +0 -151
  1225. tapps_agents-3.5.41/tapps_agents/health/orchestrator.py +0 -271
  1226. tapps_agents-3.5.41/tapps_agents/health/registry.py +0 -166
  1227. tapps_agents-3.5.41/tapps_agents/hooks/__init__.py +0 -33
  1228. tapps_agents-3.5.41/tapps_agents/hooks/config.py +0 -140
  1229. tapps_agents-3.5.41/tapps_agents/hooks/events.py +0 -135
  1230. tapps_agents-3.5.41/tapps_agents/hooks/executor.py +0 -128
  1231. tapps_agents-3.5.41/tapps_agents/hooks/manager.py +0 -143
  1232. tapps_agents-3.5.41/tapps_agents/integration/__init__.py +0 -8
  1233. tapps_agents-3.5.41/tapps_agents/integration/service_integrator.py +0 -121
  1234. tapps_agents-3.5.41/tapps_agents/integrations/__init__.py +0 -10
  1235. tapps_agents-3.5.41/tapps_agents/integrations/clawdbot.py +0 -525
  1236. tapps_agents-3.5.41/tapps_agents/integrations/memory_bridge.py +0 -356
  1237. tapps_agents-3.5.41/tapps_agents/mcp/__init__.py +0 -18
  1238. tapps_agents-3.5.41/tapps_agents/mcp/gateway.py +0 -112
  1239. tapps_agents-3.5.41/tapps_agents/mcp/servers/__init__.py +0 -13
  1240. tapps_agents-3.5.41/tapps_agents/mcp/servers/analysis.py +0 -204
  1241. tapps_agents-3.5.41/tapps_agents/mcp/servers/context7.py +0 -198
  1242. tapps_agents-3.5.41/tapps_agents/mcp/servers/filesystem.py +0 -218
  1243. tapps_agents-3.5.41/tapps_agents/mcp/servers/git.py +0 -201
  1244. tapps_agents-3.5.41/tapps_agents/mcp/tool_registry.py +0 -115
  1245. tapps_agents-3.5.41/tapps_agents/quality/__init__.py +0 -54
  1246. tapps_agents-3.5.41/tapps_agents/quality/coverage_analyzer.py +0 -379
  1247. tapps_agents-3.5.41/tapps_agents/quality/enforcement.py +0 -82
  1248. tapps_agents-3.5.41/tapps_agents/quality/gates/__init__.py +0 -37
  1249. tapps_agents-3.5.41/tapps_agents/quality/gates/approval_gate.py +0 -255
  1250. tapps_agents-3.5.41/tapps_agents/quality/gates/base.py +0 -84
  1251. tapps_agents-3.5.41/tapps_agents/quality/gates/exceptions.py +0 -43
  1252. tapps_agents-3.5.41/tapps_agents/quality/gates/policy_gate.py +0 -195
  1253. tapps_agents-3.5.41/tapps_agents/quality/gates/registry.py +0 -239
  1254. tapps_agents-3.5.41/tapps_agents/quality/gates/security_gate.py +0 -156
  1255. tapps_agents-3.5.41/tapps_agents/quality/quality_gates.py +0 -369
  1256. tapps_agents-3.5.41/tapps_agents/quality/secret_scanner.py +0 -335
  1257. tapps_agents-3.5.41/tapps_agents/session/__init__.py +0 -19
  1258. tapps_agents-3.5.41/tapps_agents/session/manager.py +0 -256
  1259. tapps_agents-3.5.41/tapps_agents/simple_mode/__init__.py +0 -66
  1260. tapps_agents-3.5.41/tapps_agents/simple_mode/agent_contracts.py +0 -357
  1261. tapps_agents-3.5.41/tapps_agents/simple_mode/beads_hooks.py +0 -151
  1262. tapps_agents-3.5.41/tapps_agents/simple_mode/code_snippet_handler.py +0 -382
  1263. tapps_agents-3.5.41/tapps_agents/simple_mode/documentation_manager.py +0 -395
  1264. tapps_agents-3.5.41/tapps_agents/simple_mode/documentation_reader.py +0 -187
  1265. tapps_agents-3.5.41/tapps_agents/simple_mode/file_inference.py +0 -292
  1266. tapps_agents-3.5.41/tapps_agents/simple_mode/framework_change_detector.py +0 -268
  1267. tapps_agents-3.5.41/tapps_agents/simple_mode/intent_parser.py +0 -510
  1268. tapps_agents-3.5.41/tapps_agents/simple_mode/learning_progression.py +0 -358
  1269. tapps_agents-3.5.41/tapps_agents/simple_mode/nl_handler.py +0 -700
  1270. tapps_agents-3.5.41/tapps_agents/simple_mode/onboarding.py +0 -253
  1271. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/__init__.py +0 -38
  1272. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/base.py +0 -185
  1273. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py +0 -49
  1274. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py +0 -135
  1275. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/build_orchestrator.py +0 -2667
  1276. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/deliverable_checklist.py +0 -349
  1277. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py +0 -53
  1278. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/epic_orchestrator.py +0 -122
  1279. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/explore_orchestrator.py +0 -184
  1280. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +0 -723
  1281. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py +0 -206
  1282. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/pr_orchestrator.py +0 -237
  1283. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py +0 -222
  1284. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/requirements_tracer.py +0 -262
  1285. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/resume_orchestrator.py +0 -210
  1286. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/review_orchestrator.py +0 -161
  1287. tapps_agents-3.5.41/tapps_agents/simple_mode/orchestrators/test_orchestrator.py +0 -82
  1288. tapps_agents-3.5.41/tapps_agents/simple_mode/output_aggregator.py +0 -340
  1289. tapps_agents-3.5.41/tapps_agents/simple_mode/result_formatters.py +0 -598
  1290. tapps_agents-3.5.41/tapps_agents/simple_mode/step_dependencies.py +0 -382
  1291. tapps_agents-3.5.41/tapps_agents/simple_mode/step_results.py +0 -276
  1292. tapps_agents-3.5.41/tapps_agents/simple_mode/streaming.py +0 -388
  1293. tapps_agents-3.5.41/tapps_agents/simple_mode/variations.py +0 -129
  1294. tapps_agents-3.5.41/tapps_agents/simple_mode/visual_feedback.py +0 -238
  1295. tapps_agents-3.5.41/tapps_agents/simple_mode/zero_config.py +0 -274
  1296. tapps_agents-3.5.41/tapps_agents/suggestions/__init__.py +0 -8
  1297. tapps_agents-3.5.41/tapps_agents/suggestions/inline_suggester.py +0 -52
  1298. tapps_agents-3.5.41/tapps_agents/templates/__init__.py +0 -8
  1299. tapps_agents-3.5.41/tapps_agents/templates/microservice_generator.py +0 -274
  1300. tapps_agents-3.5.41/tapps_agents/utils/env_validator.py +0 -291
  1301. tapps_agents-3.5.41/tapps_agents/workflow/__init__.py +0 -171
  1302. tapps_agents-3.5.41/tapps_agents/workflow/acceptance_verifier.py +0 -132
  1303. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/__init__.py +0 -41
  1304. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/analyst_handler.py +0 -75
  1305. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/architect_handler.py +0 -107
  1306. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/base.py +0 -84
  1307. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/debugger_handler.py +0 -100
  1308. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/designer_handler.py +0 -110
  1309. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/documenter_handler.py +0 -94
  1310. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/implementer_handler.py +0 -235
  1311. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/ops_handler.py +0 -62
  1312. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/orchestrator_handler.py +0 -43
  1313. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/planner_handler.py +0 -98
  1314. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/registry.py +0 -119
  1315. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/reviewer_handler.py +0 -119
  1316. tapps_agents-3.5.41/tapps_agents/workflow/agent_handlers/tester_handler.py +0 -69
  1317. tapps_agents-3.5.41/tapps_agents/workflow/analytics_accessor.py +0 -337
  1318. tapps_agents-3.5.41/tapps_agents/workflow/analytics_alerts.py +0 -416
  1319. tapps_agents-3.5.41/tapps_agents/workflow/analytics_dashboard_cursor.py +0 -281
  1320. tapps_agents-3.5.41/tapps_agents/workflow/analytics_dual_write.py +0 -103
  1321. tapps_agents-3.5.41/tapps_agents/workflow/analytics_integration.py +0 -119
  1322. tapps_agents-3.5.41/tapps_agents/workflow/analytics_query_parser.py +0 -278
  1323. tapps_agents-3.5.41/tapps_agents/workflow/analytics_visualizer.py +0 -259
  1324. tapps_agents-3.5.41/tapps_agents/workflow/artifact_helper.py +0 -204
  1325. tapps_agents-3.5.41/tapps_agents/workflow/audit_logger.py +0 -263
  1326. tapps_agents-3.5.41/tapps_agents/workflow/auto_execution_config.py +0 -340
  1327. tapps_agents-3.5.41/tapps_agents/workflow/auto_progression.py +0 -586
  1328. tapps_agents-3.5.41/tapps_agents/workflow/branch_cleanup.py +0 -349
  1329. tapps_agents-3.5.41/tapps_agents/workflow/checkpoint.py +0 -256
  1330. tapps_agents-3.5.41/tapps_agents/workflow/checkpoint_manager.py +0 -178
  1331. tapps_agents-3.5.41/tapps_agents/workflow/code_artifact.py +0 -179
  1332. tapps_agents-3.5.41/tapps_agents/workflow/common_enums.py +0 -96
  1333. tapps_agents-3.5.41/tapps_agents/workflow/confirmation_handler.py +0 -130
  1334. tapps_agents-3.5.41/tapps_agents/workflow/context_analyzer.py +0 -222
  1335. tapps_agents-3.5.41/tapps_agents/workflow/context_artifact.py +0 -230
  1336. tapps_agents-3.5.41/tapps_agents/workflow/cursor_chat.py +0 -94
  1337. tapps_agents-3.5.41/tapps_agents/workflow/cursor_executor.py +0 -2337
  1338. tapps_agents-3.5.41/tapps_agents/workflow/cursor_skill_helper.py +0 -516
  1339. tapps_agents-3.5.41/tapps_agents/workflow/dependency_resolver.py +0 -244
  1340. tapps_agents-3.5.41/tapps_agents/workflow/design_artifact.py +0 -156
  1341. tapps_agents-3.5.41/tapps_agents/workflow/detector.py +0 -752
  1342. tapps_agents-3.5.41/tapps_agents/workflow/direct_execution_fallback.py +0 -301
  1343. tapps_agents-3.5.41/tapps_agents/workflow/docs_artifact.py +0 -168
  1344. tapps_agents-3.5.41/tapps_agents/workflow/enforcer.py +0 -389
  1345. tapps_agents-3.5.41/tapps_agents/workflow/enhancement_artifact.py +0 -142
  1346. tapps_agents-3.5.41/tapps_agents/workflow/error_recovery.py +0 -806
  1347. tapps_agents-3.5.41/tapps_agents/workflow/event_bus.py +0 -183
  1348. tapps_agents-3.5.41/tapps_agents/workflow/event_log.py +0 -612
  1349. tapps_agents-3.5.41/tapps_agents/workflow/events.py +0 -63
  1350. tapps_agents-3.5.41/tapps_agents/workflow/exceptions.py +0 -43
  1351. tapps_agents-3.5.41/tapps_agents/workflow/execution_graph.py +0 -498
  1352. tapps_agents-3.5.41/tapps_agents/workflow/execution_plan.py +0 -126
  1353. tapps_agents-3.5.41/tapps_agents/workflow/file_utils.py +0 -186
  1354. tapps_agents-3.5.41/tapps_agents/workflow/gate_evaluator.py +0 -182
  1355. tapps_agents-3.5.41/tapps_agents/workflow/gate_integration.py +0 -200
  1356. tapps_agents-3.5.41/tapps_agents/workflow/graph_visualizer.py +0 -130
  1357. tapps_agents-3.5.41/tapps_agents/workflow/health_checker.py +0 -206
  1358. tapps_agents-3.5.41/tapps_agents/workflow/logging_helper.py +0 -243
  1359. tapps_agents-3.5.41/tapps_agents/workflow/manifest.py +0 -582
  1360. tapps_agents-3.5.41/tapps_agents/workflow/marker_writer.py +0 -250
  1361. tapps_agents-3.5.41/tapps_agents/workflow/message_formatter.py +0 -188
  1362. tapps_agents-3.5.41/tapps_agents/workflow/messaging.py +0 -325
  1363. tapps_agents-3.5.41/tapps_agents/workflow/metadata_models.py +0 -91
  1364. tapps_agents-3.5.41/tapps_agents/workflow/metrics_integration.py +0 -226
  1365. tapps_agents-3.5.41/tapps_agents/workflow/migration_utils.py +0 -116
  1366. tapps_agents-3.5.41/tapps_agents/workflow/models.py +0 -148
  1367. tapps_agents-3.5.41/tapps_agents/workflow/nlp_config.py +0 -198
  1368. tapps_agents-3.5.41/tapps_agents/workflow/nlp_error_handler.py +0 -207
  1369. tapps_agents-3.5.41/tapps_agents/workflow/nlp_executor.py +0 -163
  1370. tapps_agents-3.5.41/tapps_agents/workflow/nlp_parser.py +0 -528
  1371. tapps_agents-3.5.41/tapps_agents/workflow/observability_dashboard.py +0 -451
  1372. tapps_agents-3.5.41/tapps_agents/workflow/observer.py +0 -170
  1373. tapps_agents-3.5.41/tapps_agents/workflow/ops_artifact.py +0 -257
  1374. tapps_agents-3.5.41/tapps_agents/workflow/output_passing.py +0 -214
  1375. tapps_agents-3.5.41/tapps_agents/workflow/parallel_executor.py +0 -463
  1376. tapps_agents-3.5.41/tapps_agents/workflow/planning_artifact.py +0 -179
  1377. tapps_agents-3.5.41/tapps_agents/workflow/preset_loader.py +0 -285
  1378. tapps_agents-3.5.41/tapps_agents/workflow/preset_recommender.py +0 -270
  1379. tapps_agents-3.5.41/tapps_agents/workflow/progress_logger.py +0 -145
  1380. tapps_agents-3.5.41/tapps_agents/workflow/progress_manager.py +0 -303
  1381. tapps_agents-3.5.41/tapps_agents/workflow/progress_monitor.py +0 -186
  1382. tapps_agents-3.5.41/tapps_agents/workflow/progress_updates.py +0 -423
  1383. tapps_agents-3.5.41/tapps_agents/workflow/quality_artifact.py +0 -158
  1384. tapps_agents-3.5.41/tapps_agents/workflow/quality_loopback.py +0 -101
  1385. tapps_agents-3.5.41/tapps_agents/workflow/recommender.py +0 -387
  1386. tapps_agents-3.5.41/tapps_agents/workflow/remediation_loop.py +0 -166
  1387. tapps_agents-3.5.41/tapps_agents/workflow/result_aggregator.py +0 -300
  1388. tapps_agents-3.5.41/tapps_agents/workflow/review_artifact.py +0 -185
  1389. tapps_agents-3.5.41/tapps_agents/workflow/schema_validator.py +0 -522
  1390. tapps_agents-3.5.41/tapps_agents/workflow/session_handoff.py +0 -178
  1391. tapps_agents-3.5.41/tapps_agents/workflow/skill_invoker.py +0 -648
  1392. tapps_agents-3.5.41/tapps_agents/workflow/state_manager.py +0 -756
  1393. tapps_agents-3.5.41/tapps_agents/workflow/state_persistence_config.py +0 -331
  1394. tapps_agents-3.5.41/tapps_agents/workflow/status_monitor.py +0 -449
  1395. tapps_agents-3.5.41/tapps_agents/workflow/step_checkpoint.py +0 -314
  1396. tapps_agents-3.5.41/tapps_agents/workflow/step_details.py +0 -201
  1397. tapps_agents-3.5.41/tapps_agents/workflow/story_models.py +0 -147
  1398. tapps_agents-3.5.41/tapps_agents/workflow/streaming.py +0 -416
  1399. tapps_agents-3.5.41/tapps_agents/workflow/suggestion_engine.py +0 -552
  1400. tapps_agents-3.5.41/tapps_agents/workflow/testing_artifact.py +0 -186
  1401. tapps_agents-3.5.41/tapps_agents/workflow/timeline.py +0 -158
  1402. tapps_agents-3.5.41/tapps_agents/workflow/token_integration.py +0 -209
  1403. tapps_agents-3.5.41/tapps_agents/workflow/validation.py +0 -217
  1404. tapps_agents-3.5.41/tapps_agents/workflow/visual_feedback.py +0 -391
  1405. tapps_agents-3.5.41/tapps_agents/workflow/workflow_chain.py +0 -95
  1406. tapps_agents-3.5.41/tapps_agents/workflow/workflow_summary.py +0 -219
  1407. tapps_agents-3.5.41/tapps_agents/workflow/worktree_manager.py +0 -724
  1408. tapps_agents-3.5.41/tapps_agents.egg-info/SOURCES.txt +0 -759
  1409. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/agents/analyst/agent.py +0 -0
  1410. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/agents/enhancer/agent.py +0 -0
  1411. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/agents/reviewer/adaptive_scorer.py +0 -0
  1412. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/agents/reviewer/report_generator.py +0 -0
  1413. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/beads/__init__.py +0 -0
  1414. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/beads/client.py +0 -0
  1415. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/cli/commands/simple_mode.py +0 -0
  1416. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/cli/main.py +0 -0
  1417. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/cli/parsers/top_level.py +0 -0
  1418. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/cli/utils/status_reporter.py +0 -0
  1419. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/adaptive_scoring.py +0 -0
  1420. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/cache_router.py +0 -0
  1421. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/cleanup_tool.py +0 -0
  1422. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/doctor.py +0 -0
  1423. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/init_project.py +0 -0
  1424. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/iteration_reducer.py +0 -0
  1425. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/llm_communicator.py +0 -0
  1426. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/outcome_tracker.py +0 -0
  1427. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/predictive_gates.py +0 -0
  1428. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/prompt_quality.py +0 -0
  1429. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/session_manager.py +0 -0
  1430. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/core/unified_cache.py +0 -0
  1431. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/epic/orchestrator.py +0 -0
  1432. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/epic/parser.py +0 -0
  1433. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/adaptive_domain_detector.py +0 -0
  1434. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/adaptive_voting.py +0 -0
  1435. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/expert_suggester.py +0 -0
  1436. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge/agent-learning/adaptive-learning-patterns.md +0 -0
  1437. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md +0 -0
  1438. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge/code-quality-analysis/quality-gates.md +0 -0
  1439. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge/code-quality-analysis/static-analysis-patterns.md +0 -0
  1440. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge/development-workflow/ci-cd-patterns.md +0 -0
  1441. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/knowledge_enhancer.py +0 -0
  1442. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/experts/performance_tracker.py +0 -0
  1443. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/checkpoint_manager.py +0 -0
  1444. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/error_handling.py +0 -0
  1445. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/formatters/__init__.py +0 -0
  1446. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/formatters/optimization_report_formatter.py +0 -0
  1447. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/metrics/__init__.py +0 -0
  1448. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py +0 -0
  1449. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/orchestrators/todo_orchestrator.py +0 -0
  1450. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/orchestrators/validate_orchestrator.py +0 -0
  1451. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/prompt_analyzer.py +0 -0
  1452. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/workflow_selector.py +0 -0
  1453. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/workflow_suggester.py +0 -0
  1454. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/workflows/__init__.py +0 -0
  1455. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/workflows/quick_wins_workflow.py +0 -0
  1456. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/simple_mode/workflows/validation_workflow.py +0 -0
  1457. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/utils/project_cleanup_agent.py +0 -0
  1458. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/agent_handlers/enhancer_handler.py +0 -0
  1459. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/durable_state.py +0 -0
  1460. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/execution_metrics.py +0 -0
  1461. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/executor.py +0 -0
  1462. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/intent_detector.py +0 -0
  1463. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/metrics_enhancements.py +0 -0
  1464. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/parser.py +0 -0
  1465. {tapps_agents-3.5.41 → tapps_agents-3.6.0}/tapps_agents/workflow/rules_generator.py +0 -0
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tapps
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,48 @@
1
+ # Include package resources (required for runtime)
2
+ # Resources include Cursor Skills, Rules, and workflow presets needed by the framework
3
+ recursive-include tapps_agents/resources *
4
+ recursive-exclude tapps_agents/resources __pycache__ *
5
+
6
+ # Exclude development and test files
7
+ global-exclude *.pyc
8
+ global-exclude __pycache__
9
+ global-exclude *.pyo
10
+ global-exclude *.pyd
11
+ recursive-exclude tests *
12
+ recursive-exclude .claude *
13
+ recursive-exclude .cursor *
14
+ recursive-exclude .ruff_cache *
15
+ recursive-exclude billstest *
16
+ recursive-exclude docs *
17
+ recursive-exclude examples *
18
+ recursive-exclude scripts *
19
+ recursive-exclude workflows *
20
+ recursive-exclude requirements *
21
+ recursive-exclude templates *
22
+ recursive-exclude reports *
23
+ recursive-exclude htmlcov *
24
+ recursive-exclude .pytest_cache *
25
+ recursive-exclude .mypy_cache *
26
+ recursive-exclude *.egg-info *
27
+ recursive-exclude build *
28
+ recursive-exclude dist *
29
+ recursive-exclude .venv *
30
+ recursive-exclude venv *
31
+ recursive-exclude ENV *
32
+ recursive-exclude env *
33
+ # Exclude additional dot directories and files
34
+ recursive-exclude .git *
35
+ recursive-exclude .github *
36
+ recursive-exclude .tapps-agents *
37
+ global-exclude .cursorignore
38
+ global-exclude .cursorrules
39
+ global-exclude .env
40
+ global-exclude .env.*
41
+ global-exclude .gitignore
42
+ # Root-level docs and meta (not needed in sdist)
43
+ global-exclude AGENTS.md
44
+ global-exclude CHANGELOG.md
45
+ global-exclude CLAUDE.md
46
+ global-exclude CLAUDE.local.example.md
47
+ global-exclude CONTRIBUTING.md
48
+ global-exclude SECURITY.md