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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. tapps_agents/__init__.py +2 -2
  2. tapps_agents/agents/reviewer/scoring.py +1566 -1566
  3. tapps_agents/agents/reviewer/tools/__init__.py +41 -41
  4. tapps_agents/cli/commands/health.py +665 -665
  5. tapps_agents/cli/commands/top_level.py +3586 -3586
  6. tapps_agents/core/artifact_context_builder.py +293 -0
  7. tapps_agents/core/config.py +33 -0
  8. tapps_agents/health/orchestrator.py +271 -271
  9. tapps_agents/resources/__init__.py +5 -0
  10. tapps_agents/resources/claude/__init__.py +1 -0
  11. tapps_agents/resources/claude/commands/README.md +156 -0
  12. tapps_agents/resources/claude/commands/__init__.py +1 -0
  13. tapps_agents/resources/claude/commands/build-fix.md +22 -0
  14. tapps_agents/resources/claude/commands/build.md +77 -0
  15. tapps_agents/resources/claude/commands/debug.md +53 -0
  16. tapps_agents/resources/claude/commands/design.md +68 -0
  17. tapps_agents/resources/claude/commands/docs.md +53 -0
  18. tapps_agents/resources/claude/commands/e2e.md +22 -0
  19. tapps_agents/resources/claude/commands/fix.md +54 -0
  20. tapps_agents/resources/claude/commands/implement.md +53 -0
  21. tapps_agents/resources/claude/commands/improve.md +53 -0
  22. tapps_agents/resources/claude/commands/library-docs.md +64 -0
  23. tapps_agents/resources/claude/commands/lint.md +52 -0
  24. tapps_agents/resources/claude/commands/plan.md +65 -0
  25. tapps_agents/resources/claude/commands/refactor-clean.md +21 -0
  26. tapps_agents/resources/claude/commands/refactor.md +55 -0
  27. tapps_agents/resources/claude/commands/review.md +67 -0
  28. tapps_agents/resources/claude/commands/score.md +60 -0
  29. tapps_agents/resources/claude/commands/security-review.md +22 -0
  30. tapps_agents/resources/claude/commands/security-scan.md +54 -0
  31. tapps_agents/resources/claude/commands/tdd.md +24 -0
  32. tapps_agents/resources/claude/commands/test-coverage.md +21 -0
  33. tapps_agents/resources/claude/commands/test.md +54 -0
  34. tapps_agents/resources/claude/commands/update-codemaps.md +20 -0
  35. tapps_agents/resources/claude/commands/update-docs.md +21 -0
  36. tapps_agents/resources/claude/skills/__init__.py +1 -0
  37. tapps_agents/resources/claude/skills/analyst/SKILL.md +272 -0
  38. tapps_agents/resources/claude/skills/analyst/__init__.py +1 -0
  39. tapps_agents/resources/claude/skills/architect/SKILL.md +282 -0
  40. tapps_agents/resources/claude/skills/architect/__init__.py +1 -0
  41. tapps_agents/resources/claude/skills/backend-patterns/SKILL.md +30 -0
  42. tapps_agents/resources/claude/skills/backend-patterns/__init__.py +1 -0
  43. tapps_agents/resources/claude/skills/coding-standards/SKILL.md +29 -0
  44. tapps_agents/resources/claude/skills/coding-standards/__init__.py +1 -0
  45. tapps_agents/resources/claude/skills/debugger/SKILL.md +203 -0
  46. tapps_agents/resources/claude/skills/debugger/__init__.py +1 -0
  47. tapps_agents/resources/claude/skills/designer/SKILL.md +243 -0
  48. tapps_agents/resources/claude/skills/designer/__init__.py +1 -0
  49. tapps_agents/resources/claude/skills/documenter/SKILL.md +252 -0
  50. tapps_agents/resources/claude/skills/documenter/__init__.py +1 -0
  51. tapps_agents/resources/claude/skills/enhancer/SKILL.md +307 -0
  52. tapps_agents/resources/claude/skills/enhancer/__init__.py +1 -0
  53. tapps_agents/resources/claude/skills/evaluator/SKILL.md +204 -0
  54. tapps_agents/resources/claude/skills/evaluator/__init__.py +1 -0
  55. tapps_agents/resources/claude/skills/frontend-patterns/SKILL.md +29 -0
  56. tapps_agents/resources/claude/skills/frontend-patterns/__init__.py +1 -0
  57. tapps_agents/resources/claude/skills/implementer/SKILL.md +188 -0
  58. tapps_agents/resources/claude/skills/implementer/__init__.py +1 -0
  59. tapps_agents/resources/claude/skills/improver/SKILL.md +218 -0
  60. tapps_agents/resources/claude/skills/improver/__init__.py +1 -0
  61. tapps_agents/resources/claude/skills/ops/SKILL.md +281 -0
  62. tapps_agents/resources/claude/skills/ops/__init__.py +1 -0
  63. tapps_agents/resources/claude/skills/orchestrator/SKILL.md +390 -0
  64. tapps_agents/resources/claude/skills/orchestrator/__init__.py +1 -0
  65. tapps_agents/resources/claude/skills/planner/SKILL.md +254 -0
  66. tapps_agents/resources/claude/skills/planner/__init__.py +1 -0
  67. tapps_agents/resources/claude/skills/reviewer/SKILL.md +434 -0
  68. tapps_agents/resources/claude/skills/reviewer/__init__.py +1 -0
  69. tapps_agents/resources/claude/skills/security-review/SKILL.md +31 -0
  70. tapps_agents/resources/claude/skills/security-review/__init__.py +1 -0
  71. tapps_agents/resources/claude/skills/simple-mode/SKILL.md +695 -0
  72. tapps_agents/resources/claude/skills/simple-mode/__init__.py +1 -0
  73. tapps_agents/resources/claude/skills/tester/SKILL.md +219 -0
  74. tapps_agents/resources/claude/skills/tester/__init__.py +1 -0
  75. tapps_agents/resources/cursor/.cursorignore +35 -0
  76. tapps_agents/resources/cursor/__init__.py +1 -0
  77. tapps_agents/resources/cursor/commands/__init__.py +1 -0
  78. tapps_agents/resources/cursor/commands/build-fix.md +11 -0
  79. tapps_agents/resources/cursor/commands/build.md +11 -0
  80. tapps_agents/resources/cursor/commands/e2e.md +11 -0
  81. tapps_agents/resources/cursor/commands/fix.md +11 -0
  82. tapps_agents/resources/cursor/commands/refactor-clean.md +11 -0
  83. tapps_agents/resources/cursor/commands/review.md +11 -0
  84. tapps_agents/resources/cursor/commands/security-review.md +11 -0
  85. tapps_agents/resources/cursor/commands/tdd.md +11 -0
  86. tapps_agents/resources/cursor/commands/test-coverage.md +11 -0
  87. tapps_agents/resources/cursor/commands/test.md +11 -0
  88. tapps_agents/resources/cursor/commands/update-codemaps.md +10 -0
  89. tapps_agents/resources/cursor/commands/update-docs.md +11 -0
  90. tapps_agents/resources/cursor/rules/__init__.py +1 -0
  91. tapps_agents/resources/cursor/rules/agent-capabilities.mdc +687 -0
  92. tapps_agents/resources/cursor/rules/coding-style.mdc +31 -0
  93. tapps_agents/resources/cursor/rules/command-reference.mdc +2081 -0
  94. tapps_agents/resources/cursor/rules/cursor-mode-usage.mdc +125 -0
  95. tapps_agents/resources/cursor/rules/git-workflow.mdc +29 -0
  96. tapps_agents/resources/cursor/rules/performance.mdc +29 -0
  97. tapps_agents/resources/cursor/rules/project-context.mdc +163 -0
  98. tapps_agents/resources/cursor/rules/project-profiling.mdc +197 -0
  99. tapps_agents/resources/cursor/rules/quick-reference.mdc +630 -0
  100. tapps_agents/resources/cursor/rules/security.mdc +32 -0
  101. tapps_agents/resources/cursor/rules/simple-mode.mdc +500 -0
  102. tapps_agents/resources/cursor/rules/testing.mdc +31 -0
  103. tapps_agents/resources/cursor/rules/when-to-use.mdc +156 -0
  104. tapps_agents/resources/cursor/rules/workflow-presets.mdc +179 -0
  105. tapps_agents/resources/customizations/__init__.py +1 -0
  106. tapps_agents/resources/customizations/example-custom.yaml +83 -0
  107. tapps_agents/resources/hooks/__init__.py +1 -0
  108. tapps_agents/resources/hooks/templates/README.md +5 -0
  109. tapps_agents/resources/hooks/templates/__init__.py +1 -0
  110. tapps_agents/resources/hooks/templates/add-project-context.yaml +8 -0
  111. tapps_agents/resources/hooks/templates/auto-format-js.yaml +10 -0
  112. tapps_agents/resources/hooks/templates/auto-format-python.yaml +10 -0
  113. tapps_agents/resources/hooks/templates/git-commit-check.yaml +7 -0
  114. tapps_agents/resources/hooks/templates/notify-on-complete.yaml +8 -0
  115. tapps_agents/resources/hooks/templates/quality-gate.yaml +8 -0
  116. tapps_agents/resources/hooks/templates/security-scan-on-edit.yaml +10 -0
  117. tapps_agents/resources/hooks/templates/session-end-log.yaml +7 -0
  118. tapps_agents/resources/hooks/templates/show-beads-ready.yaml +8 -0
  119. tapps_agents/resources/hooks/templates/test-on-edit.yaml +10 -0
  120. tapps_agents/resources/hooks/templates/update-docs-on-complete.yaml +8 -0
  121. tapps_agents/resources/hooks/templates/user-prompt-log.yaml +7 -0
  122. tapps_agents/resources/scripts/__init__.py +1 -0
  123. tapps_agents/resources/scripts/set_bd_path.ps1 +51 -0
  124. tapps_agents/resources/workflows/__init__.py +1 -0
  125. tapps_agents/resources/workflows/presets/__init__.py +1 -0
  126. tapps_agents/resources/workflows/presets/brownfield-analysis.yaml +235 -0
  127. tapps_agents/resources/workflows/presets/fix.yaml +78 -0
  128. tapps_agents/resources/workflows/presets/full-sdlc.yaml +122 -0
  129. tapps_agents/resources/workflows/presets/quality.yaml +82 -0
  130. tapps_agents/resources/workflows/presets/rapid-dev.yaml +84 -0
  131. tapps_agents/simple_mode/orchestrators/base.py +185 -185
  132. tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2700 -2667
  133. tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -723
  134. tapps_agents/workflow/cursor_executor.py +2337 -2337
  135. tapps_agents/workflow/message_formatter.py +188 -188
  136. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/METADATA +6 -6
  137. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/RECORD +141 -18
  138. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/WHEEL +0 -0
  139. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/entry_points.txt +0 -0
  140. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/licenses/LICENSE +0 -0
  141. {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- tapps_agents/__init__.py,sha256=ZnBHeqZtNulBHToeSdRA1bK58J9YrYT2DvheuT3MrEQ,1180
1
+ tapps_agents/__init__.py,sha256=FvUEfWlYU7Mmk5U55sc1M8gGofq2pg4lS2xgI6mMePk,1178
2
2
  tapps_agents/agents/__init__.py,sha256=w0Aj0bEdmIoPY1OcVTK0KFRSkYeAk-66CM2zmGTLjW0,698
3
3
  tapps_agents/agents/analyst/__init__.py,sha256=zLFkB6j1PkcpeaOk8Vnx76oYzVYyUqdULWj-pOyfLZY,135
4
4
  tapps_agents/agents/analyst/agent.py,sha256=YgPvWOqdZfIA24jIrbmHSdj3EVGIrGpwVIv5ep9uc8U,32033
@@ -69,12 +69,12 @@ tapps_agents/agents/reviewer/report_generator.py,sha256=gVx8sLZj7UGzHnXTDqMI5sKG
69
69
  tapps_agents/agents/reviewer/score_constants.py,sha256=A1DSz-IEQpIqCWX3C9Zao0jVhgY08PbVoaPXdjMTAbY,7828
70
70
  tapps_agents/agents/reviewer/score_validator.py,sha256=Pl3Qr6XZZ0eOmtpTvjUCgWUroGrb2cCMHcIXRHrWCwg,22038
71
71
  tapps_agents/agents/reviewer/scorer_registry.py,sha256=16JrhqfFjphoiOiBVmKMmWqPB2DpraUt5sKwLToJlVE,14095
72
- tapps_agents/agents/reviewer/scoring.py,sha256=4Ccos31UuLbWlJSb8fr9k0FnTEa4y4R2p1qxe4KUm-U,62650
72
+ tapps_agents/agents/reviewer/scoring.py,sha256=sJNOF9Pt8rXI0IxudOo3s9CkF3zuaRE-tp8gXAslx4c,61084
73
73
  tapps_agents/agents/reviewer/service_discovery.py,sha256=S5k83CzN8Q-F3bIgfAXRjLy0LegRLn_3et8hs9qrxfY,18983
74
74
  tapps_agents/agents/reviewer/typescript_scorer.py,sha256=IHk_cSGrCCnM0oZ2Dx5GaATyjDLOZUhUn5_EHmNha6Y,45648
75
75
  tapps_agents/agents/reviewer/validation.py,sha256=xwXRt8wFd43OyHTFej2n944MK4rdqlnVyqZcMbpo6AI,6154
76
76
  tapps_agents/agents/reviewer/websocket_validator.py,sha256=9AWyBRU-y55ns4SJs2TkpLxvXt_PM--5AV2OnustTQY,4539
77
- tapps_agents/agents/reviewer/tools/__init__.py,sha256=NiKnW3MI7RJAvUXuBb-9qcyE9B66ik5xhgcezi99ZXM,839
77
+ tapps_agents/agents/reviewer/tools/__init__.py,sha256=FiiPwhDLn82xxrZsID_eEPeTJ3b-5VnhhSf1RNt7jv0,798
78
78
  tapps_agents/agents/reviewer/tools/parallel_executor.py,sha256=uDxuJZv5wzE7kUoKLwYKwS_jwen1gFTAeQrfnVEbtVg,19345
79
79
  tapps_agents/agents/reviewer/tools/ruff_grouping.py,sha256=nvQGKBb6DmIwa6SpwKxDIja8Q92nrVJyS83eyCM-F4g,8993
80
80
  tapps_agents/agents/reviewer/tools/scoped_mypy.py,sha256=EI6Hd6-PAbiIv5KhS3rRhDpHtQ3bgIOx2e_yLhCddTU,9973
@@ -121,7 +121,7 @@ tapps_agents/cli/commands/designer.py,sha256=OlfS1LDlLMdesXhWckTilJPALRJySB402ss
121
121
  tapps_agents/cli/commands/documenter.py,sha256=o1JwCwkuH4NqL75pEqxEdsOqUOodkZYyxo64Bw0mRto,5389
122
122
  tapps_agents/cli/commands/enhancer.py,sha256=EwrGZrAyx9muNSfj0lae-UTRo41NSauLf_kKOgJFvR8,4224
123
123
  tapps_agents/cli/commands/evaluator.py,sha256=eLtgr0mxDvR05XvIgMmnUmW7oYx5kImaWsQXxPPFVbY,11943
124
- tapps_agents/cli/commands/health.py,sha256=jrMKIMfg7q_5clw9dYGBz9SaRtlU9Kq1h3EOfcxdQkc,27599
124
+ tapps_agents/cli/commands/health.py,sha256=h_z8OT6K3WfVlUPjB5Uywz-AICgmdZwpVs5ERYcIhwI,26934
125
125
  tapps_agents/cli/commands/implementer.py,sha256=S90u3XFyA0MdpDZje0at_4RUtDQv0WgfqtDZBvxRlks,12991
126
126
  tapps_agents/cli/commands/improver.py,sha256=y9UF17WapZiuGJ_JWZu8c4u9FYSku3EZq24dnvTIsmU,3399
127
127
  tapps_agents/cli/commands/knowledge.py,sha256=LyycqdUL585guE5nVMcXDTxIkcFkSn7maLyvJj-Q6ho,3590
@@ -135,7 +135,7 @@ tapps_agents/cli/commands/simple_mode.py,sha256=JjuaaPKo0DZXOqMNyvFNNqz98sNE78EZ
135
135
  tapps_agents/cli/commands/status.py,sha256=XrkCnxdiaieZrXExAW0_YrCDlkVGa9iRIiJ74DwP_5o,10661
136
136
  tapps_agents/cli/commands/task.py,sha256=11mWEyAL-Mo3PzH6P1cg84o7Mn4xKuoCzzBCOy1IB5o,8445
137
137
  tapps_agents/cli/commands/tester.py,sha256=ZGwSw8O6wMOx1UO5kCgmawZUccC0MBL3kvRH-7dEic4,8481
138
- tapps_agents/cli/commands/top_level.py,sha256=dTh_rdoSiXrLgnDN04YIvlNITPnEnxoek7E8NusARho,149034
138
+ tapps_agents/cli/commands/top_level.py,sha256=-jVW1xLm4V3D9tbih1_Rw8Gn3dK9mJR9mQVKFnfVfMY,145448
139
139
  tapps_agents/cli/help/__init__.py,sha256=2hO-whwGhNM4efFc7fc7ihTmE5PmxFl7jaQ2H7ywUbA,147
140
140
  tapps_agents/cli/help/static_help.py,sha256=0hFiOgLqBT-vM0yHoeY_Ea5JOg_anc_5_rPR1GX1nqs,19560
141
141
  tapps_agents/cli/parsers/__init__.py,sha256=mtP0vrFd1P7i4V3N1B1wXKxM7ajCVLqNBul4998I5SI,35
@@ -207,6 +207,7 @@ tapps_agents/core/agent_learning.py,sha256=_6uYcZXtoh7HwQxsV35TmyXVqykwCy1KQI1y5
207
207
  tapps_agents/core/analytics_dashboard.py,sha256=OVaa6ky0bPdMxe61rE9YT8VjWN5882JgWbw40ZHBMQI,20031
208
208
  tapps_agents/core/analytics_enhancements.py,sha256=sTjGs9JAk28pVzKMYPjonrqb0cxpQOF1MdBLuH48z5I,22766
209
209
  tapps_agents/core/anonymization.py,sha256=ke_VjsQ767kK7vOxYGbb-6RCbA55D84Spk0sBYzW0kM,8709
210
+ tapps_agents/core/artifact_context_builder.py,sha256=aHyA0RX4ONroUOSJAGLwC8PHPJGm8OG_rLKHbAkUsPs,11050
210
211
  tapps_agents/core/ast_parser.py,sha256=DoPEhJvQ-DjZs5BJtvoPdB6-tOgIM6YJRIUfPdi84Zo,7138
211
212
  tapps_agents/core/async_file_ops.py,sha256=rLrebxurZhsovZKVGAhHWQBRPk8w7BHaEnYaVxOsAHs,12641
212
213
  tapps_agents/core/best_practice_consultant.py,sha256=0Gy0Sr3rB2tlXztW8b1ZTzR6Z7M-dauBJflT5_gVVmA,10158
@@ -221,7 +222,7 @@ tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm
221
222
  tapps_agents/core/code_generator.py,sha256=Ma-5NWZnr4PcfFvZEFFUtn6hDzv7zAOVaZrTwmRiOrU,9881
222
223
  tapps_agents/core/code_validator.py,sha256=SoP_zUBTzWEhfSuFNjawk_R6ytcgjJ8VClfCSILLKFE,8953
223
224
  tapps_agents/core/command_registry.py,sha256=Re07pBBjwtilp9kaXn5Qxdjp01liT5pj1S7KUsXwQIg,10192
224
- tapps_agents/core/config.py,sha256=2kCKCXb06MIr1avlkAEQPwD07dJWFd0z45WGjjQ0HOU,56291
225
+ tapps_agents/core/config.py,sha256=oTajM4l_MDzXBxwFxR-45UMHtVDUxCgaxSvoEvnKM_E,57505
225
226
  tapps_agents/core/context_manager.py,sha256=UCftn4UnGt6xf_LErC8Ty5fWP2u6mcyv5tqvoLvfK5s,8184
226
227
  tapps_agents/core/cursor_feedback_monitor.py,sha256=p0Ow-wktUyK745MKQwt9E7rWoelV9WacQ5HWk3iRQGM,5073
227
228
  tapps_agents/core/cursor_verification.py,sha256=kLMshs5E0-W-13rwT3TnNQ-YIjmW6v7AHI6kkiaBc7M,9905
@@ -536,7 +537,7 @@ tapps_agents/health/base.py,sha256=1R7V1a7hCKFkJ2DUuc4SAcHXgPZELaHhwCJhhdElcoo,1
536
537
  tapps_agents/health/collector.py,sha256=yTLBaqgvP7BFGo98Btaxb6MKaMOBym9jOBWNY8SPzsA,9582
537
538
  tapps_agents/health/dashboard.py,sha256=mCaERCimQimKyPCcIbxsMyAk86XXjz5NDDJDk67LRDE,4433
538
539
  tapps_agents/health/metrics.py,sha256=i8oKjD44UP4q_CCgH3niuppDlwx9Xbs9_h05KOkQwXw,4670
539
- tapps_agents/health/orchestrator.py,sha256=C35YWZLRbdaHMFCtps7O7mlPibsDk1WNwXoKfZd_s-A,10107
540
+ tapps_agents/health/orchestrator.py,sha256=OHWevEKKvd0MivTxKPp6274A9fyYGO_WIt3JVb6h4U8,9836
540
541
  tapps_agents/health/registry.py,sha256=ZBY7iuZJz3BXC9-eOPyxUQUOUWSQpx8TksBVZ1ObDSw,4882
541
542
  tapps_agents/health/checks/__init__.py,sha256=7pPbZULDePvdnM9Vc2zARBGLhSlyMqtVRt9x9Lc4bJs,600
542
543
  tapps_agents/health/checks/automation.py,sha256=BFel3D9VcXKTP5twZwhBQexCtxMjyQuhlJYuUdCP-9A,4950
@@ -578,6 +579,128 @@ tapps_agents/quality/gates/exceptions.py,sha256=vBcYDtaswDskl91wdCXimDsOsYRDRo_R
578
579
  tapps_agents/quality/gates/policy_gate.py,sha256=d4Pjoo4jrd42_nLjWnl5hkpzXoW0FHpiRcPGzW68YJI,7187
579
580
  tapps_agents/quality/gates/registry.py,sha256=j2VykyYKqxUfSxUv1-JYsovrQZ7DFOOB2vx_vChRnZg,7653
580
581
  tapps_agents/quality/gates/security_gate.py,sha256=7TvVoiWbZxoFYlISkWpO7Jy1L6G8rso3KbODTb5F1lk,6096
582
+ tapps_agents/resources/__init__.py,sha256=HukQESGBwE65OfA2Yd_TqzuJ1O2LTA8As256vjhs40A,199
583
+ tapps_agents/resources/claude/__init__.py,sha256=ToaFT-lL75TRmb2ixlpYzNRZiwUWSIaJz1Amh9q8aZY,45
584
+ tapps_agents/resources/claude/commands/README.md,sha256=jvgQgWQ3rCmWknCUxC2ulkccCNxfI7ranQGDdhB1VHI,5014
585
+ tapps_agents/resources/claude/commands/__init__.py,sha256=9plcoQ8XxqBDdRNfOSSildl-5Uc4N7TgdFFarsD96cQ,43
586
+ tapps_agents/resources/claude/commands/build-fix.md,sha256=t1G7VJv4NaUN9bRQO5T3TA7mTSXd7EwCJsUNtpQLITg,514
587
+ tapps_agents/resources/claude/commands/build.md,sha256=AWN_Pp0gSIzr87RT-D_zzPFOJaqYD2wAyuWtTQszYsQ,2475
588
+ tapps_agents/resources/claude/commands/debug.md,sha256=YtGWF1v_ZZw2voNhlEL_que8u6_oSlV9rVHqRdsBJII,1533
589
+ tapps_agents/resources/claude/commands/design.md,sha256=cM2JSGKOsShTM_8Xd7tlksdMynkR7rqUEBZ6MQpnQDU,1611
590
+ tapps_agents/resources/claude/commands/docs.md,sha256=Qkdv4a9QAzVnyjL3I0DxrTNsEUfqEnEh7Pr3Na1FuuI,1339
591
+ tapps_agents/resources/claude/commands/e2e.md,sha256=jWm39kJbOCuX_QPkAKth7h4ixuYzbOcOk5zII9Qji6Q,454
592
+ tapps_agents/resources/claude/commands/fix.md,sha256=tz1C0OGKepLHg9s55qWYbdf1-_8EjDuoU4O4bqnRlGw,1416
593
+ tapps_agents/resources/claude/commands/implement.md,sha256=RNI3EKfWfu13UoBRlLl9CbGbwrdA2cP_iVMSPfqFD2o,1684
594
+ tapps_agents/resources/claude/commands/improve.md,sha256=58OnqJ5omPl_Qq4-JGLfMDxqYWowRmEEU44D5pA7B7U,1593
595
+ tapps_agents/resources/claude/commands/library-docs.md,sha256=UQB4uLC-oWYww7VAnC8u3RH7f4efCFbS_HNgMAdF0Bw,1580
596
+ tapps_agents/resources/claude/commands/lint.md,sha256=_rn6qOoSpCFd7JPQNdfrYHdJS7Vr8A5bK09w47d6d60,1201
597
+ tapps_agents/resources/claude/commands/plan.md,sha256=6JaCgpAdHeQxvHqfGI4XEh87md_bqDw5vuFUaf7Acx0,1583
598
+ tapps_agents/resources/claude/commands/refactor-clean.md,sha256=5tu0vGebLQeoi-oWE0Z42JKq8GJMFK6mBq7NAZwKhYE,471
599
+ tapps_agents/resources/claude/commands/refactor.md,sha256=QE5_xE8qJDbBBHC3zmX600Eyj5FCwDl4LI2FPcJdbks,1757
600
+ tapps_agents/resources/claude/commands/review.md,sha256=OMAa_1gCUfzINVlFkP6WPAvqHiD1fmhshzjnSnJNjzI,1517
601
+ tapps_agents/resources/claude/commands/score.md,sha256=POd27GJN79AT8_SVYZk7U5d1mFxjg7NAIW7oNRmWjCM,1201
602
+ tapps_agents/resources/claude/commands/security-review.md,sha256=DUNjGvDXRQp4GhWz_ris7XwRSXDEp9PjkwEu7azD7DU,487
603
+ tapps_agents/resources/claude/commands/security-scan.md,sha256=tbFLJshk_G-1EfyxUphEImp-bicCeGw0AF2CaD742hQ,1443
604
+ tapps_agents/resources/claude/commands/tdd.md,sha256=3IJHvahh3R4Po33wfQ_oxqYLR4Rtml9t_MmrPduDDSI,564
605
+ tapps_agents/resources/claude/commands/test-coverage.md,sha256=SyLead9jUvpSigIxoslIyvm5ecR-TGWeZJqOkgelrvQ,495
606
+ tapps_agents/resources/claude/commands/test.md,sha256=SiFwSdppLRbjmGVzSy4qqaVb376GdX6He0qi80loIzE,1369
607
+ tapps_agents/resources/claude/commands/update-codemaps.md,sha256=DWJNNZQbTI0BUj1Y8uJR7147WCrGK1X0SiNY2i4eZwk,384
608
+ tapps_agents/resources/claude/commands/update-docs.md,sha256=y1ynQ1b5G4bouuj2_hNTISEcRVTIvs9oyfk_q3sezAI,370
609
+ tapps_agents/resources/claude/skills/__init__.py,sha256=UqlSBoIPpXwrKL4_Nwi74H0orW3OAj0vQLIRHpcN59k,41
610
+ tapps_agents/resources/claude/skills/analyst/SKILL.md,sha256=In1sJ_zdlbB4q3pB03ni9OYs5syKX4euUoevSRRVMAA,8812
611
+ tapps_agents/resources/claude/skills/analyst/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
612
+ tapps_agents/resources/claude/skills/architect/SKILL.md,sha256=uFZtQhAsD67MN9yfQ9rTrSh6T6K0CEHjnBnGwa-XR9c,9313
613
+ tapps_agents/resources/claude/skills/architect/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
614
+ tapps_agents/resources/claude/skills/backend-patterns/SKILL.md,sha256=sZKi0OrFIRBpSVE1VpfuEqsV6QJwxEI_99RU_YA8kb8,1368
615
+ tapps_agents/resources/claude/skills/backend-patterns/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
616
+ tapps_agents/resources/claude/skills/coding-standards/SKILL.md,sha256=lKPjh3tl8YNCfI3Qja8HoNlgZ8ngBwYuOefGLFcnjlA,1154
617
+ tapps_agents/resources/claude/skills/coding-standards/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
618
+ tapps_agents/resources/claude/skills/debugger/SKILL.md,sha256=lm_s-cjLw64uUUCUxvXRBqsbhRt_qHizfPaNTPMwwi0,7106
619
+ tapps_agents/resources/claude/skills/debugger/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
620
+ tapps_agents/resources/claude/skills/designer/SKILL.md,sha256=gYhJlQz2ZrfR397okbXaEUx4VQXlI19SjtGtXkN0pXE,7768
621
+ tapps_agents/resources/claude/skills/designer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
622
+ tapps_agents/resources/claude/skills/documenter/SKILL.md,sha256=aVzHeO7T0O1E9dbWu3wYUBF_i7eIBqa3O5huvEvt22w,7163
623
+ tapps_agents/resources/claude/skills/documenter/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
624
+ tapps_agents/resources/claude/skills/enhancer/SKILL.md,sha256=RWBkAPC0RCyJ3gLFOTjJgVTqVukbu8DcsuN4o1F7_N4,9541
625
+ tapps_agents/resources/claude/skills/enhancer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
626
+ tapps_agents/resources/claude/skills/evaluator/SKILL.md,sha256=6pzh4fLCgoIxaDBZzhS2kbV6q2Yvkx1I8gQoKJL4PKo,6489
627
+ tapps_agents/resources/claude/skills/evaluator/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
628
+ tapps_agents/resources/claude/skills/frontend-patterns/SKILL.md,sha256=0cTvFNmS_X2fZeUxyKy3ECKglBKBJFeVNGfyVapgbNo,1191
629
+ tapps_agents/resources/claude/skills/frontend-patterns/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
630
+ tapps_agents/resources/claude/skills/implementer/SKILL.md,sha256=J5wM_CUUAYWYj2aR8HxPuAIbfSmsku-4krpdxRaWO2A,7193
631
+ tapps_agents/resources/claude/skills/implementer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
632
+ tapps_agents/resources/claude/skills/improver/SKILL.md,sha256=6hXQLdy1etMSoZcIzPYKGxEHED54rMAoXRpJldMJYqU,7172
633
+ tapps_agents/resources/claude/skills/improver/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
634
+ tapps_agents/resources/claude/skills/ops/SKILL.md,sha256=77L3Gbap_9u6JipQJthH18eGa8-AWh-0cG1MSeQ-u_Y,9271
635
+ tapps_agents/resources/claude/skills/ops/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
636
+ tapps_agents/resources/claude/skills/orchestrator/SKILL.md,sha256=h8g4UehGXMp4nv25UUGCqZiRjuduGxgu846cwDiopKo,10348
637
+ tapps_agents/resources/claude/skills/orchestrator/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
638
+ tapps_agents/resources/claude/skills/planner/SKILL.md,sha256=pdsmRbR4I0C9YdwNT6VMn5QVBpJp8QXGQdjnjniZDAQ,7676
639
+ tapps_agents/resources/claude/skills/planner/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
640
+ tapps_agents/resources/claude/skills/reviewer/SKILL.md,sha256=o0pN2aL3rn2XWVZliQ4RrHMPjoNw1vefvuSwxRgW6N8,14381
641
+ tapps_agents/resources/claude/skills/reviewer/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
642
+ tapps_agents/resources/claude/skills/security-review/SKILL.md,sha256=Yw26Y3MxgSjRzx1RX7lfRFYo0UbZl9fipHL0_o1P5gM,1193
643
+ tapps_agents/resources/claude/skills/security-review/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
644
+ tapps_agents/resources/claude/skills/simple-mode/SKILL.md,sha256=IwLlsAAj5NFJkijOfbHCz6tbbImQhywYTojrrEscauo,21991
645
+ tapps_agents/resources/claude/skills/simple-mode/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
646
+ tapps_agents/resources/claude/skills/tester/SKILL.md,sha256=upkl-Za-Vw8ZZ6YD4ajQjmSvs2zdpeOXXLB5wJOyy_Q,6993
647
+ tapps_agents/resources/claude/skills/tester/__init__.py,sha256=UYPDBW6ehnCW4YR21SX_9aBTK_S5Teh7TV7i-JSRVls,24
648
+ tapps_agents/resources/cursor/.cursorignore,sha256=Ffpdc630_-2ou5tvGuWy-WiQMCnhBMZL1SpUHf3flvM,665
649
+ tapps_agents/resources/cursor/__init__.py,sha256=Be5_HzNOq5f5V10FhwuYhCqBkk-O71j-b40ajq6mJPA,41
650
+ tapps_agents/resources/cursor/commands/__init__.py,sha256=G2_fJLa98LIZre0Rrtefpd6VE2hxD8xBKOqs0hw0CPY,39
651
+ tapps_agents/resources/cursor/commands/build-fix.md,sha256=Z6eEhSnsJFdOovRbGgGYeizX6G4Ds2Odg5erAn0VcDc,518
652
+ tapps_agents/resources/cursor/commands/build.md,sha256=qMLaKEL6-nTOPz0XxcKrabEJJE-eI6DCF4Ibdc48MLA,396
653
+ tapps_agents/resources/cursor/commands/e2e.md,sha256=BzjCcxNGsiWu4cdU92vU1BCCL9G0bpPgCoO7Cb4XilE,400
654
+ tapps_agents/resources/cursor/commands/fix.md,sha256=kUNcDIUR_woKo83SD8wUfd5lAa8k-o2PfEIOcvqTweQ,345
655
+ tapps_agents/resources/cursor/commands/refactor-clean.md,sha256=jIkox15BjXkFs0-aRqnSx1lFiXHG9rSC3WRq3AJrIow,408
656
+ tapps_agents/resources/cursor/commands/review.md,sha256=p0ZPG9VaUSwPZ7nuoOS3kaKnHp27nVAHaUcqmUDw4RQ,274
657
+ tapps_agents/resources/cursor/commands/security-review.md,sha256=2dWPDYtUxVIB3U7PD4moOFANpVmtDd0tzqwrz5RlI2E,443
658
+ tapps_agents/resources/cursor/commands/tdd.md,sha256=KJ795ZY6ApjNmO1gA4_FarqhwwbRb5BqH-StsSzrzk0,458
659
+ tapps_agents/resources/cursor/commands/test-coverage.md,sha256=0ApeUrjSeNHLSl5hpM5QMcG4AbvS4SJ2b_J-y-RB_C8,493
660
+ tapps_agents/resources/cursor/commands/test.md,sha256=ftHNsTf-ubUeqAUfIs1GvPrsT9OgCgTSB31scMXfrro,255
661
+ tapps_agents/resources/cursor/commands/update-codemaps.md,sha256=r8R-SJSyqh2ytCm21UcndueKbQfF30XaC23R2jGx1pA,362
662
+ tapps_agents/resources/cursor/commands/update-docs.md,sha256=-qOrg3buY4q4D2n6t7w6-oKWi3GcRpJTKEjSxG4ykgY,419
663
+ tapps_agents/resources/cursor/rules/__init__.py,sha256=VRdfU9th4BTM16NRgmxhwlXs_8Toew0XT7LwRE02cMc,36
664
+ tapps_agents/resources/cursor/rules/agent-capabilities.mdc,sha256=nyK48WetxUFOjk4PUi64HEBmYv7oA1Ly7p8IPHPdPD8,21082
665
+ tapps_agents/resources/cursor/rules/coding-style.mdc,sha256=XHrpCfZFlhFiKKvHhFIYxVSxB9wcfpBDQ77T0o7HDsQ,1033
666
+ tapps_agents/resources/cursor/rules/command-reference.mdc,sha256=QN5QxBiJ9hagu-Dmv-WhzBlNOv5u5kPDYGTRzGmeoDQ,69869
667
+ tapps_agents/resources/cursor/rules/cursor-mode-usage.mdc,sha256=YTExL18GH98K1JVR2KLWoL99zDtPaP2IusLueIrtg34,3777
668
+ tapps_agents/resources/cursor/rules/git-workflow.mdc,sha256=poyYKoxFdO9e0q4b03r2b-1Om6CDRf50lH8Gw5XBqbc,1192
669
+ tapps_agents/resources/cursor/rules/performance.mdc,sha256=XmiT4B1Xe8Z1jcocGV1fgPgbZmmkJ4YzTRLDubmcSIY,1465
670
+ tapps_agents/resources/cursor/rules/project-context.mdc,sha256=2TV1vt94RhDJdrGMn9zlPoQOVg6DW6FrOK-Yk5qtexg,6854
671
+ tapps_agents/resources/cursor/rules/project-profiling.mdc,sha256=85rr1GChg_iKegizO-iSbqIxSWSfVhuL33dibrlbpK8,6659
672
+ tapps_agents/resources/cursor/rules/quick-reference.mdc,sha256=iBvW9BpG-geisEsPL_gM39_awMUM0rXXYnJQy9KXqpc,21074
673
+ tapps_agents/resources/cursor/rules/security.mdc,sha256=67X6LUbsuONOlXcXfPh6a5ozHunpnJcUXjVaqJ69Ry0,1284
674
+ tapps_agents/resources/cursor/rules/simple-mode.mdc,sha256=AcStGMlntBRAUruJRac3jZ9m3h0O1XpnTc4VDjAQAnk,19915
675
+ tapps_agents/resources/cursor/rules/testing.mdc,sha256=r6X2qimAx5updSLsh1kE340EnLGljCIghii6-t7il5Q,1118
676
+ tapps_agents/resources/cursor/rules/when-to-use.mdc,sha256=nixxLQKxRUPreJ3ZUN1AKVEkhyYHK3kLidJPrXPZ0tU,12927
677
+ tapps_agents/resources/cursor/rules/workflow-presets.mdc,sha256=_1uHK4KMAhe4amX2rbvR5Omb-lqjd53QQvF7DMtBFgw,5759
678
+ tapps_agents/resources/customizations/__init__.py,sha256=nFtjp6sYFsqTkVcD6yjbslZjoQ_ISx-Lnv1KmbWWxUI,32
679
+ tapps_agents/resources/customizations/example-custom.yaml,sha256=8efplEXW6nazLYcRZQfL81G1d5423kZmmW2PmNG3R_w,2507
680
+ tapps_agents/resources/hooks/__init__.py,sha256=iKkuFGcbpTKPkN-ZJBwuKGS9RY0SkOyKi6nL7TS0HKE,23
681
+ tapps_agents/resources/hooks/templates/README.md,sha256=5j5U9MH9aahu3jDJt4XhdbTLhyXPlyuCis9LxyTQJMY,368
682
+ tapps_agents/resources/hooks/templates/__init__.py,sha256=vOPX68bBxDt1lg5YujyRE54twqToDhlhfAbnoUZfBDY,34
683
+ tapps_agents/resources/hooks/templates/add-project-context.yaml,sha256=dQnd_-XTusgUCiWBHYC_afQ66mqP0kDaXTh6pYfglN8,377
684
+ tapps_agents/resources/hooks/templates/auto-format-js.yaml,sha256=jBCg7uEhLA0X-0tRkqCn6V1BS6CvaZrovh8uaXcDQAU,380
685
+ tapps_agents/resources/hooks/templates/auto-format-python.yaml,sha256=TVfw2Iva_SwAMY_73nhHATD8Wy6JAw7lq5c2dv1uq74,325
686
+ tapps_agents/resources/hooks/templates/git-commit-check.yaml,sha256=GfUmd9F03otLxkSibGdmHnvyvuNSQmQN6XTlHOwJG_s,230
687
+ tapps_agents/resources/hooks/templates/notify-on-complete.yaml,sha256=0pqZfmBCuMWB0o-EMGeZlU9WAqlpM_EZFE5MaSWg_ng,342
688
+ tapps_agents/resources/hooks/templates/quality-gate.yaml,sha256=jcW0vZ7-i_h_ynUIryihw5D27Vyh_XJVOkuvH3rl3NE,361
689
+ tapps_agents/resources/hooks/templates/security-scan-on-edit.yaml,sha256=2CpXi3iYc0Nb0Zy7qjjbNpwH3QCArR3JLkNAnKkOWQA,370
690
+ tapps_agents/resources/hooks/templates/session-end-log.yaml,sha256=kGeveNLOcWVXuvHkUtxi7PBZh1lHhQyG3SAMCJVQSFQ,202
691
+ tapps_agents/resources/hooks/templates/show-beads-ready.yaml,sha256=ZqSl_sUoThD3Kl8XGXVlfFb_BcHkebZsLZNvVZB734U,274
692
+ tapps_agents/resources/hooks/templates/test-on-edit.yaml,sha256=G7krTRU-Tv2mR24uMXtgL-hE_tP7XJz3eCm77o1iFsg,344
693
+ tapps_agents/resources/hooks/templates/update-docs-on-complete.yaml,sha256=k25DBWoAl70Pb19f-_gEHtBk9Ox9ZJGMjB5zyWdGhqA,308
694
+ tapps_agents/resources/hooks/templates/user-prompt-log.yaml,sha256=ebMPHtdNlv9t9ps1a46qjyZp-xJdSiZcJraVt6haxhU,256
695
+ tapps_agents/resources/scripts/__init__.py,sha256=4GBDOhdSXrLC2Rh83eG_RqIhDNVeNa3UFAyosHQDRUU,25
696
+ tapps_agents/resources/scripts/set_bd_path.ps1,sha256=0npzKRQRu9-pSbVinSCKP905pttOXesBo2zIqnzp_EU,1696
697
+ tapps_agents/resources/workflows/__init__.py,sha256=yG28haWs8ESaesnsB_hIJqNwnNAIooW3gAy_5n_1Wd0,27
698
+ tapps_agents/resources/workflows/presets/__init__.py,sha256=7bCDIlz82Niol3MB4L-1BkxMrlnzFrkhgRnjy85xVwU,39
699
+ tapps_agents/resources/workflows/presets/brownfield-analysis.yaml,sha256=Lhgg8TfIndy0f67M7qM5U5kl4AGxdUDHFoghsgPJ_8E,7187
700
+ tapps_agents/resources/workflows/presets/fix.yaml,sha256=-P-yZFGJLaJO5WEhyxfCbwytoiVryUdlLxSGO9srSxA,1642
701
+ tapps_agents/resources/workflows/presets/full-sdlc.yaml,sha256=M9ewGWJyJdihV88cF5bdnyMzCjMt9qgzwRQsFNL2KR8,2603
702
+ tapps_agents/resources/workflows/presets/quality.yaml,sha256=Hbkd-Y0lI5-bg2mkSatMb8THgI0BDAInmWsJnjXmxp8,1770
703
+ tapps_agents/resources/workflows/presets/rapid-dev.yaml,sha256=BzvNCmEdIGn97tBovRddzgSIXFUZkIRjz0cBQ4pbOVE,1809
581
704
  tapps_agents/session/__init__.py,sha256=B6HCY2scz0fT8Ss8-TMoUNcqH1Pqy-R4t0OUomAbT3Q,454
582
705
  tapps_agents/session/manager.py,sha256=4PuYAapCga5Hlevc3OTpY-ePNn6VkFtIssbGMYJse98,8762
583
706
  tapps_agents/simple_mode/__init__.py,sha256=B-UzNIImDVWBRCmnlZEz1V8SQu22gslNrNPb3p4PDBA,1821
@@ -610,15 +733,15 @@ tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthN
610
733
  tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
611
734
  tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
612
735
  tapps_agents/simple_mode/orchestrators/__init__.py,sha256=DM6TzDQ24mSJH7STMN1_47s-7nUsglfBYxj7MXZU21k,1315
613
- tapps_agents/simple_mode/orchestrators/base.py,sha256=xpd8mIxE0i1M9H83tDzwUKRf8JIso5klsHc1XdibW2I,5852
736
+ tapps_agents/simple_mode/orchestrators/base.py,sha256=bxSLMqL6p8uFrvyAL_ARJA1XCnzATc9LdOxNYl_-YzI,5667
614
737
  tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=ZaS8vfGPJrsT9Qfz_fRfcjkActQOjotQWbWTuqLyjXc,1790
615
738
  tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=m5jR5aru6U68sbgQPCuJSvSzW_-DJ6Suf4IUU8jeWBw,5149
616
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=5Hl4rCegx_BkFBwCLzCG6CxEum0qHW2MUzODJKSRw8U,122623
739
+ tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=rKKMUFdUGKUClrHcuZeiuW79yvDK4jLiiutft9lp7zk,121098
617
740
  tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=IMtxpzv1UscwCHp047Kx_qIeLU7_b407-yEAvS774-k,12574
618
741
  tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=xmcicWcUPMwDHOfm-nS_6rV62-10dPZf8etj_eNGCYg,2112
619
742
  tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=6rJ-g5R0GtsFaM90fCAhP26Ag3EKe71Cd1P-yUT0NHQ,4340
620
743
  tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=MWkGaQ1kMj5H1B5ryHZUssMjXWI3Di11U_aUgrPJldA,6764
621
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=sgLxSFbaGHFMFNtcuz0vHIp_lZF6-3VSWnS7VpvtyUw,33535
744
+ tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=jPnrLOKbcdn7BHoaeJsOvDvipBnuPR4NW6shL0Sr8lE,32812
622
745
  tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=aR0qMtJ6jlUx1T5dhVn-_sYg9YPN0Wl7044kD7jYF40,7266
623
746
  tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=1KPEBdAE2M163rwp367qRkrTGlRM1A53qIZmfM1kR5g,8603
624
747
  tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=bOEj9m67HqHqa2oLY4YEP5wKdN8Knk1rsds5XXGAcdk,8157
@@ -659,7 +782,7 @@ tapps_agents/workflow/confirmation_handler.py,sha256=iH6WCI08pDin5FBztzMYgRMWaO3
659
782
  tapps_agents/workflow/context_analyzer.py,sha256=-Nxq8okaqQD1rTAsOtNy0BNN_AcMQweM6KCxV8S6j34,8455
660
783
  tapps_agents/workflow/context_artifact.py,sha256=ps8sZgMXIemKNK1nADxpHfi5NQdFIVtmDMp48jDb5rI,8125
661
784
  tapps_agents/workflow/cursor_chat.py,sha256=e_2eXbr3yFYRdnu9iYcWIsuRgubd5-R68DsJrFN9buU,3180
662
- tapps_agents/workflow/cursor_executor.py,sha256=pdWZk3C4xMSD5JazEJFXwWK5SSSbB3363U__HYcKKEw,99476
785
+ tapps_agents/workflow/cursor_executor.py,sha256=too0HuFg1_fyEd6vVOlDAz7skxYD4QIFt1bKEBWbRNQ,97139
663
786
  tapps_agents/workflow/cursor_skill_helper.py,sha256=QZCNCIBpwdZiP5piH9qB2l3Fseh4bMulCg8QcHyAfVA,19481
664
787
  tapps_agents/workflow/dependency_resolver.py,sha256=f_2a0uUBADHPEgNvdOdA-tCs-qYXwKyMkbvep2mwlrI,8923
665
788
  tapps_agents/workflow/design_artifact.py,sha256=HgEyNndiItMBPTTalOtiUrB600LF3EwwIL557034w7k,5510
@@ -687,7 +810,7 @@ tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMr
687
810
  tapps_agents/workflow/logging_helper.py,sha256=x38gDL_ZdlQMnSoIb8aPSVc2hgCj8cgMSzua8o0Rplc,8982
688
811
  tapps_agents/workflow/manifest.py,sha256=D5v3E-fBoD0dEK5BNDj_VmVdJmUoT7rCQrJQSygeWRg,20341
689
812
  tapps_agents/workflow/marker_writer.py,sha256=2uaP86Fwm_QUPjqRCUdJcNlrHEAD6P7PRJBGpqUhxMo,8325
690
- tapps_agents/workflow/message_formatter.py,sha256=Pl5u_D7TGL1JVTgw6E6EPzCEt-IB9ayKgm-VHJJAUwU,6112
813
+ tapps_agents/workflow/message_formatter.py,sha256=T5ZdrxKSTpHOk52BmMLEhxRz3iVvwhU6KSF5fk6gYz4,5924
691
814
  tapps_agents/workflow/messaging.py,sha256=fzVDP7vvQXjJG3AGTS1mp1GiBPaK_NzkPNlxCWxfJ6A,11547
692
815
  tapps_agents/workflow/metadata_models.py,sha256=xsigrFQgIgFzLJn7qwCa242w49iEv-QwIrFGkGzL0Zg,2954
693
816
  tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
@@ -752,9 +875,9 @@ tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=9oVSsA6Lso5NncYPS
752
875
  tapps_agents/workflow/agent_handlers/registry.py,sha256=aYMU59da4SBgDgqMy4Basu1yL8CvDvdi929n6XM50ro,3613
753
876
  tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=D4spVUk4l9mJsSsDIKC88EL-2k43YObNz5v439EtDRc,4285
754
877
  tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=e44Eqn1CIpcqYqCrjaTK748yb4k7PlzGdK9zSne-SfY,2249
755
- tapps_agents-3.5.41.dist-info/licenses/LICENSE,sha256=xwT0RCg0KluJ63lZcgkSOiYkpEIEXYlIGqRtkGGsPe0,1085
756
- tapps_agents-3.5.41.dist-info/METADATA,sha256=WeP5io4GWolPJjOHH-c1GO6jHwqQ6YY-SJKF3hJvVO8,41413
757
- tapps_agents-3.5.41.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
758
- tapps_agents-3.5.41.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
759
- tapps_agents-3.5.41.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
760
- tapps_agents-3.5.41.dist-info/RECORD,,
878
+ tapps_agents-3.6.1.dist-info/licenses/LICENSE,sha256=xwT0RCg0KluJ63lZcgkSOiYkpEIEXYlIGqRtkGGsPe0,1085
879
+ tapps_agents-3.6.1.dist-info/METADATA,sha256=l9L9PoA3ejppZo0Vfaq0uWHcu_hn8VoktUArDvMTFk4,41411
880
+ tapps_agents-3.6.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
881
+ tapps_agents-3.6.1.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
882
+ tapps_agents-3.6.1.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
883
+ tapps_agents-3.6.1.dist-info/RECORD,,