tapps-agents 3.5.40__py3-none-any.whl → 3.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tapps_agents/__init__.py +2 -2
- tapps_agents/agents/__init__.py +22 -22
- tapps_agents/agents/analyst/__init__.py +5 -5
- tapps_agents/agents/architect/__init__.py +5 -5
- tapps_agents/agents/architect/agent.py +1033 -1033
- tapps_agents/agents/architect/pattern_detector.py +75 -75
- tapps_agents/agents/cleanup/__init__.py +7 -7
- tapps_agents/agents/cleanup/agent.py +445 -445
- tapps_agents/agents/debugger/__init__.py +7 -7
- tapps_agents/agents/debugger/agent.py +310 -310
- tapps_agents/agents/debugger/error_analyzer.py +437 -437
- tapps_agents/agents/designer/__init__.py +5 -5
- tapps_agents/agents/designer/agent.py +786 -786
- tapps_agents/agents/designer/visual_designer.py +638 -638
- tapps_agents/agents/documenter/__init__.py +7 -7
- tapps_agents/agents/documenter/agent.py +531 -531
- tapps_agents/agents/documenter/doc_generator.py +472 -472
- tapps_agents/agents/documenter/doc_validator.py +393 -393
- tapps_agents/agents/documenter/framework_doc_updater.py +493 -493
- tapps_agents/agents/enhancer/__init__.py +7 -7
- tapps_agents/agents/evaluator/__init__.py +7 -7
- tapps_agents/agents/evaluator/agent.py +443 -443
- tapps_agents/agents/evaluator/priority_evaluator.py +641 -641
- tapps_agents/agents/evaluator/quality_analyzer.py +147 -147
- tapps_agents/agents/evaluator/report_generator.py +344 -344
- tapps_agents/agents/evaluator/usage_analyzer.py +192 -192
- tapps_agents/agents/evaluator/workflow_analyzer.py +189 -189
- tapps_agents/agents/implementer/__init__.py +7 -7
- tapps_agents/agents/implementer/agent.py +798 -798
- tapps_agents/agents/implementer/auto_fix.py +1119 -1119
- tapps_agents/agents/implementer/code_generator.py +73 -73
- tapps_agents/agents/improver/__init__.py +1 -1
- tapps_agents/agents/improver/agent.py +753 -753
- tapps_agents/agents/ops/__init__.py +1 -1
- tapps_agents/agents/ops/agent.py +619 -619
- tapps_agents/agents/ops/dependency_analyzer.py +600 -600
- tapps_agents/agents/orchestrator/__init__.py +5 -5
- tapps_agents/agents/orchestrator/agent.py +522 -522
- tapps_agents/agents/planner/__init__.py +7 -7
- tapps_agents/agents/planner/agent.py +1127 -1127
- tapps_agents/agents/reviewer/__init__.py +24 -24
- tapps_agents/agents/reviewer/agent.py +3513 -3513
- tapps_agents/agents/reviewer/aggregator.py +213 -213
- tapps_agents/agents/reviewer/batch_review.py +448 -448
- tapps_agents/agents/reviewer/cache.py +443 -443
- tapps_agents/agents/reviewer/context7_enhancer.py +630 -630
- tapps_agents/agents/reviewer/context_detector.py +203 -203
- tapps_agents/agents/reviewer/docker_compose_validator.py +158 -158
- tapps_agents/agents/reviewer/dockerfile_validator.py +176 -176
- tapps_agents/agents/reviewer/error_handling.py +126 -126
- tapps_agents/agents/reviewer/feedback_generator.py +490 -490
- tapps_agents/agents/reviewer/influxdb_validator.py +316 -316
- tapps_agents/agents/reviewer/issue_tracking.py +169 -169
- tapps_agents/agents/reviewer/library_detector.py +295 -295
- tapps_agents/agents/reviewer/library_patterns.py +268 -268
- tapps_agents/agents/reviewer/maintainability_scorer.py +593 -593
- tapps_agents/agents/reviewer/metric_strategies.py +276 -276
- tapps_agents/agents/reviewer/mqtt_validator.py +160 -160
- tapps_agents/agents/reviewer/output_enhancer.py +105 -105
- tapps_agents/agents/reviewer/pattern_detector.py +241 -241
- tapps_agents/agents/reviewer/performance_scorer.py +357 -357
- tapps_agents/agents/reviewer/phased_review.py +516 -516
- tapps_agents/agents/reviewer/progressive_review.py +435 -435
- tapps_agents/agents/reviewer/react_scorer.py +331 -331
- tapps_agents/agents/reviewer/score_constants.py +228 -228
- tapps_agents/agents/reviewer/score_validator.py +507 -507
- tapps_agents/agents/reviewer/scorer_registry.py +373 -373
- tapps_agents/agents/reviewer/scoring.py +1566 -1566
- tapps_agents/agents/reviewer/service_discovery.py +534 -534
- tapps_agents/agents/reviewer/tools/__init__.py +41 -41
- tapps_agents/agents/reviewer/tools/parallel_executor.py +581 -581
- tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -250
- tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -284
- tapps_agents/agents/reviewer/typescript_scorer.py +1142 -1142
- tapps_agents/agents/reviewer/validation.py +208 -208
- tapps_agents/agents/reviewer/websocket_validator.py +132 -132
- tapps_agents/agents/tester/__init__.py +7 -7
- tapps_agents/agents/tester/accessibility_auditor.py +309 -309
- tapps_agents/agents/tester/agent.py +1080 -1080
- tapps_agents/agents/tester/batch_generator.py +54 -54
- tapps_agents/agents/tester/context_learner.py +51 -51
- tapps_agents/agents/tester/coverage_analyzer.py +386 -386
- tapps_agents/agents/tester/coverage_test_generator.py +290 -290
- tapps_agents/agents/tester/debug_enhancer.py +238 -238
- tapps_agents/agents/tester/device_emulator.py +241 -241
- tapps_agents/agents/tester/integration_generator.py +62 -62
- tapps_agents/agents/tester/network_recorder.py +300 -300
- tapps_agents/agents/tester/performance_monitor.py +320 -320
- tapps_agents/agents/tester/test_fixer.py +316 -316
- tapps_agents/agents/tester/test_generator.py +632 -632
- tapps_agents/agents/tester/trace_manager.py +234 -234
- tapps_agents/agents/tester/visual_regression.py +291 -291
- tapps_agents/analysis/pattern_detector.py +36 -36
- tapps_agents/beads/hydration.py +213 -213
- tapps_agents/beads/parse.py +32 -32
- tapps_agents/beads/specs.py +206 -206
- tapps_agents/cli/__init__.py +9 -9
- tapps_agents/cli/__main__.py +8 -8
- tapps_agents/cli/base.py +478 -478
- tapps_agents/cli/command_classifier.py +72 -72
- tapps_agents/cli/commands/__init__.py +2 -2
- tapps_agents/cli/commands/analyst.py +173 -173
- tapps_agents/cli/commands/architect.py +109 -109
- tapps_agents/cli/commands/cleanup_agent.py +92 -92
- tapps_agents/cli/commands/common.py +126 -126
- tapps_agents/cli/commands/debugger.py +90 -90
- tapps_agents/cli/commands/designer.py +112 -112
- tapps_agents/cli/commands/documenter.py +136 -136
- tapps_agents/cli/commands/enhancer.py +110 -110
- tapps_agents/cli/commands/evaluator.py +255 -255
- tapps_agents/cli/commands/health.py +665 -665
- tapps_agents/cli/commands/implementer.py +301 -301
- tapps_agents/cli/commands/improver.py +91 -91
- tapps_agents/cli/commands/knowledge.py +111 -111
- tapps_agents/cli/commands/learning.py +172 -172
- tapps_agents/cli/commands/observability.py +283 -283
- tapps_agents/cli/commands/ops.py +135 -135
- tapps_agents/cli/commands/orchestrator.py +116 -116
- tapps_agents/cli/commands/planner.py +237 -237
- tapps_agents/cli/commands/reviewer.py +1872 -1872
- tapps_agents/cli/commands/status.py +285 -285
- tapps_agents/cli/commands/task.py +227 -219
- tapps_agents/cli/commands/tester.py +191 -191
- tapps_agents/cli/commands/top_level.py +3586 -3586
- tapps_agents/cli/feedback.py +936 -936
- tapps_agents/cli/formatters.py +608 -608
- tapps_agents/cli/help/__init__.py +7 -7
- tapps_agents/cli/help/static_help.py +425 -425
- tapps_agents/cli/network_detection.py +110 -110
- tapps_agents/cli/output_compactor.py +274 -274
- tapps_agents/cli/parsers/__init__.py +2 -2
- tapps_agents/cli/parsers/analyst.py +186 -186
- tapps_agents/cli/parsers/architect.py +167 -167
- tapps_agents/cli/parsers/cleanup_agent.py +228 -228
- tapps_agents/cli/parsers/debugger.py +116 -116
- tapps_agents/cli/parsers/designer.py +182 -182
- tapps_agents/cli/parsers/documenter.py +134 -134
- tapps_agents/cli/parsers/enhancer.py +113 -113
- tapps_agents/cli/parsers/evaluator.py +213 -213
- tapps_agents/cli/parsers/implementer.py +168 -168
- tapps_agents/cli/parsers/improver.py +132 -132
- tapps_agents/cli/parsers/ops.py +159 -159
- tapps_agents/cli/parsers/orchestrator.py +98 -98
- tapps_agents/cli/parsers/planner.py +145 -145
- tapps_agents/cli/parsers/reviewer.py +462 -462
- tapps_agents/cli/parsers/tester.py +124 -124
- tapps_agents/cli/progress_heartbeat.py +254 -254
- tapps_agents/cli/streaming_progress.py +336 -336
- tapps_agents/cli/utils/__init__.py +6 -6
- tapps_agents/cli/utils/agent_lifecycle.py +48 -48
- tapps_agents/cli/utils/error_formatter.py +82 -82
- tapps_agents/cli/utils/error_recovery.py +188 -188
- tapps_agents/cli/utils/output_handler.py +59 -59
- tapps_agents/cli/utils/prompt_enhancer.py +319 -319
- tapps_agents/cli/validators/__init__.py +9 -9
- tapps_agents/cli/validators/command_validator.py +81 -81
- tapps_agents/context7/__init__.py +112 -112
- tapps_agents/context7/agent_integration.py +869 -869
- tapps_agents/context7/analytics.py +382 -382
- tapps_agents/context7/analytics_dashboard.py +299 -299
- tapps_agents/context7/async_cache.py +681 -681
- tapps_agents/context7/backup_client.py +958 -958
- tapps_agents/context7/cache_locking.py +194 -194
- tapps_agents/context7/cache_metadata.py +214 -214
- tapps_agents/context7/cache_prewarm.py +488 -488
- tapps_agents/context7/cache_structure.py +168 -168
- tapps_agents/context7/cache_warming.py +604 -604
- tapps_agents/context7/circuit_breaker.py +376 -376
- tapps_agents/context7/cleanup.py +461 -461
- tapps_agents/context7/commands.py +858 -858
- tapps_agents/context7/credential_validation.py +276 -276
- tapps_agents/context7/cross_reference_resolver.py +168 -168
- tapps_agents/context7/cross_references.py +424 -424
- tapps_agents/context7/doc_manager.py +225 -225
- tapps_agents/context7/fuzzy_matcher.py +369 -369
- tapps_agents/context7/kb_cache.py +404 -404
- tapps_agents/context7/language_detector.py +219 -219
- tapps_agents/context7/library_detector.py +725 -725
- tapps_agents/context7/lookup.py +738 -738
- tapps_agents/context7/metadata.py +258 -258
- tapps_agents/context7/refresh_queue.py +300 -300
- tapps_agents/context7/security.py +373 -373
- tapps_agents/context7/staleness_policies.py +278 -278
- tapps_agents/context7/tiles_integration.py +47 -47
- tapps_agents/continuous_bug_fix/__init__.py +20 -20
- tapps_agents/continuous_bug_fix/bug_finder.py +306 -306
- tapps_agents/continuous_bug_fix/bug_fix_coordinator.py +177 -177
- tapps_agents/continuous_bug_fix/commit_manager.py +178 -178
- tapps_agents/continuous_bug_fix/continuous_bug_fixer.py +322 -322
- tapps_agents/continuous_bug_fix/proactive_bug_finder.py +285 -285
- tapps_agents/core/__init__.py +298 -298
- tapps_agents/core/adaptive_cache_config.py +432 -432
- tapps_agents/core/agent_base.py +647 -647
- tapps_agents/core/agent_cache.py +466 -466
- tapps_agents/core/agent_learning.py +1865 -1865
- tapps_agents/core/analytics_dashboard.py +563 -563
- tapps_agents/core/analytics_enhancements.py +597 -597
- tapps_agents/core/anonymization.py +274 -274
- tapps_agents/core/artifact_context_builder.py +293 -0
- tapps_agents/core/ast_parser.py +228 -228
- tapps_agents/core/async_file_ops.py +402 -402
- tapps_agents/core/best_practice_consultant.py +299 -299
- tapps_agents/core/brownfield_analyzer.py +299 -299
- tapps_agents/core/brownfield_review.py +541 -541
- tapps_agents/core/browser_controller.py +513 -513
- tapps_agents/core/capability_registry.py +418 -418
- tapps_agents/core/change_impact_analyzer.py +190 -190
- tapps_agents/core/checkpoint_manager.py +377 -377
- tapps_agents/core/code_generator.py +329 -329
- tapps_agents/core/code_validator.py +276 -276
- tapps_agents/core/command_registry.py +327 -327
- tapps_agents/core/config.py +33 -0
- tapps_agents/core/context_gathering/__init__.py +2 -2
- tapps_agents/core/context_gathering/repository_explorer.py +28 -28
- tapps_agents/core/context_intelligence/__init__.py +2 -2
- tapps_agents/core/context_intelligence/relevance_scorer.py +24 -24
- tapps_agents/core/context_intelligence/token_budget_manager.py +27 -27
- tapps_agents/core/context_manager.py +240 -240
- tapps_agents/core/cursor_feedback_monitor.py +146 -146
- tapps_agents/core/cursor_verification.py +290 -290
- tapps_agents/core/customization_loader.py +280 -280
- tapps_agents/core/customization_schema.py +260 -260
- tapps_agents/core/customization_template.py +238 -238
- tapps_agents/core/debug_logger.py +124 -124
- tapps_agents/core/design_validator.py +298 -298
- tapps_agents/core/diagram_generator.py +226 -226
- tapps_agents/core/docker_utils.py +232 -232
- tapps_agents/core/document_generator.py +617 -617
- tapps_agents/core/domain_detector.py +30 -30
- tapps_agents/core/error_envelope.py +454 -454
- tapps_agents/core/error_handler.py +270 -270
- tapps_agents/core/estimation_tracker.py +189 -189
- tapps_agents/core/eval_prompt_engine.py +116 -116
- tapps_agents/core/evaluation_base.py +119 -119
- tapps_agents/core/evaluation_models.py +320 -320
- tapps_agents/core/evaluation_orchestrator.py +225 -225
- tapps_agents/core/evaluators/__init__.py +7 -7
- tapps_agents/core/evaluators/architectural_evaluator.py +205 -205
- tapps_agents/core/evaluators/behavioral_evaluator.py +160 -160
- tapps_agents/core/evaluators/performance_profile_evaluator.py +160 -160
- tapps_agents/core/evaluators/security_posture_evaluator.py +148 -148
- tapps_agents/core/evaluators/spec_compliance_evaluator.py +181 -181
- tapps_agents/core/exceptions.py +107 -107
- tapps_agents/core/expert_config_generator.py +293 -293
- tapps_agents/core/export_schema.py +202 -202
- tapps_agents/core/external_feedback_models.py +102 -102
- tapps_agents/core/external_feedback_storage.py +213 -213
- tapps_agents/core/fallback_strategy.py +314 -314
- tapps_agents/core/feedback_analyzer.py +162 -162
- tapps_agents/core/feedback_collector.py +178 -178
- tapps_agents/core/git_operations.py +445 -445
- tapps_agents/core/hardware_profiler.py +151 -151
- tapps_agents/core/instructions.py +324 -324
- tapps_agents/core/io_guardrails.py +69 -69
- tapps_agents/core/issue_manifest.py +249 -249
- tapps_agents/core/issue_schema.py +139 -139
- tapps_agents/core/json_utils.py +128 -128
- tapps_agents/core/knowledge_graph.py +446 -446
- tapps_agents/core/language_detector.py +296 -296
- tapps_agents/core/learning_confidence.py +242 -242
- tapps_agents/core/learning_dashboard.py +246 -246
- tapps_agents/core/learning_decision.py +384 -384
- tapps_agents/core/learning_explainability.py +578 -578
- tapps_agents/core/learning_export.py +287 -287
- tapps_agents/core/learning_integration.py +228 -228
- tapps_agents/core/llm_behavior.py +232 -232
- tapps_agents/core/long_duration_support.py +786 -786
- tapps_agents/core/mcp_setup.py +106 -106
- tapps_agents/core/memory_integration.py +396 -396
- tapps_agents/core/meta_learning.py +666 -666
- tapps_agents/core/module_path_sanitizer.py +199 -199
- tapps_agents/core/multi_agent_orchestrator.py +382 -382
- tapps_agents/core/network_errors.py +125 -125
- tapps_agents/core/nfr_validator.py +336 -336
- tapps_agents/core/offline_mode.py +158 -158
- tapps_agents/core/output_contracts.py +300 -300
- tapps_agents/core/output_formatter.py +300 -300
- tapps_agents/core/path_normalizer.py +174 -174
- tapps_agents/core/path_validator.py +322 -322
- tapps_agents/core/pattern_library.py +250 -250
- tapps_agents/core/performance_benchmark.py +301 -301
- tapps_agents/core/performance_monitor.py +184 -184
- tapps_agents/core/playwright_mcp_controller.py +771 -771
- tapps_agents/core/policy_loader.py +135 -135
- tapps_agents/core/progress.py +166 -166
- tapps_agents/core/project_profile.py +354 -354
- tapps_agents/core/project_type_detector.py +454 -454
- tapps_agents/core/prompt_base.py +223 -223
- tapps_agents/core/prompt_learning/__init__.py +2 -2
- tapps_agents/core/prompt_learning/learning_loop.py +24 -24
- tapps_agents/core/prompt_learning/project_prompt_store.py +25 -25
- tapps_agents/core/prompt_learning/skills_prompt_analyzer.py +35 -35
- tapps_agents/core/prompt_optimization/__init__.py +6 -6
- tapps_agents/core/prompt_optimization/ab_tester.py +114 -114
- tapps_agents/core/prompt_optimization/correlation_analyzer.py +160 -160
- tapps_agents/core/prompt_optimization/progressive_refiner.py +129 -129
- tapps_agents/core/prompt_optimization/prompt_library.py +37 -37
- tapps_agents/core/requirements_evaluator.py +431 -431
- tapps_agents/core/resource_aware_executor.py +449 -449
- tapps_agents/core/resource_monitor.py +343 -343
- tapps_agents/core/resume_handler.py +298 -298
- tapps_agents/core/retry_handler.py +197 -197
- tapps_agents/core/review_checklists.py +479 -479
- tapps_agents/core/role_loader.py +201 -201
- tapps_agents/core/role_template_loader.py +201 -201
- tapps_agents/core/runtime_mode.py +60 -60
- tapps_agents/core/security_scanner.py +342 -342
- tapps_agents/core/skill_agent_registry.py +194 -194
- tapps_agents/core/skill_integration.py +208 -208
- tapps_agents/core/skill_loader.py +492 -492
- tapps_agents/core/skill_template.py +341 -341
- tapps_agents/core/skill_validator.py +478 -478
- tapps_agents/core/stack_analyzer.py +35 -35
- tapps_agents/core/startup.py +174 -174
- tapps_agents/core/storage_manager.py +397 -397
- tapps_agents/core/storage_models.py +166 -166
- tapps_agents/core/story_evaluator.py +410 -410
- tapps_agents/core/subprocess_utils.py +170 -170
- tapps_agents/core/task_duration.py +296 -296
- tapps_agents/core/task_memory.py +582 -582
- tapps_agents/core/task_state.py +226 -226
- tapps_agents/core/tech_stack_priorities.py +208 -208
- tapps_agents/core/temp_directory.py +194 -194
- tapps_agents/core/template_merger.py +600 -600
- tapps_agents/core/template_selector.py +280 -280
- tapps_agents/core/test_generator.py +286 -286
- tapps_agents/core/tiered_context.py +253 -253
- tapps_agents/core/token_monitor.py +345 -345
- tapps_agents/core/traceability.py +254 -254
- tapps_agents/core/trajectory_tracker.py +50 -50
- tapps_agents/core/unicode_safe.py +143 -143
- tapps_agents/core/unified_cache_config.py +170 -170
- tapps_agents/core/unified_state.py +324 -324
- tapps_agents/core/validate_cursor_setup.py +237 -237
- tapps_agents/core/validation_registry.py +136 -136
- tapps_agents/core/validators/__init__.py +4 -4
- tapps_agents/core/validators/python_validator.py +87 -87
- tapps_agents/core/verification_agent.py +90 -90
- tapps_agents/core/visual_feedback.py +644 -644
- tapps_agents/core/workflow_validator.py +197 -197
- tapps_agents/core/worktree.py +367 -367
- tapps_agents/docker/__init__.py +10 -10
- tapps_agents/docker/analyzer.py +186 -186
- tapps_agents/docker/debugger.py +229 -229
- tapps_agents/docker/error_patterns.py +216 -216
- tapps_agents/epic/__init__.py +22 -22
- tapps_agents/epic/beads_sync.py +115 -115
- tapps_agents/epic/markdown_sync.py +105 -105
- tapps_agents/epic/models.py +96 -96
- tapps_agents/experts/__init__.py +163 -163
- tapps_agents/experts/agent_integration.py +243 -243
- tapps_agents/experts/auto_generator.py +331 -331
- tapps_agents/experts/base_expert.py +536 -536
- tapps_agents/experts/builtin_registry.py +261 -261
- tapps_agents/experts/business_metrics.py +565 -565
- tapps_agents/experts/cache.py +266 -266
- tapps_agents/experts/confidence_breakdown.py +306 -306
- tapps_agents/experts/confidence_calculator.py +336 -336
- tapps_agents/experts/confidence_metrics.py +236 -236
- tapps_agents/experts/domain_config.py +311 -311
- tapps_agents/experts/domain_detector.py +550 -550
- tapps_agents/experts/domain_utils.py +84 -84
- tapps_agents/experts/expert_config.py +113 -113
- tapps_agents/experts/expert_engine.py +465 -465
- tapps_agents/experts/expert_registry.py +744 -744
- tapps_agents/experts/expert_synthesizer.py +70 -70
- tapps_agents/experts/governance.py +197 -197
- tapps_agents/experts/history_logger.py +312 -312
- tapps_agents/experts/knowledge/README.md +180 -180
- tapps_agents/experts/knowledge/accessibility/accessible-forms.md +331 -331
- tapps_agents/experts/knowledge/accessibility/aria-patterns.md +344 -344
- tapps_agents/experts/knowledge/accessibility/color-contrast.md +285 -285
- tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md +332 -332
- tapps_agents/experts/knowledge/accessibility/screen-readers.md +282 -282
- tapps_agents/experts/knowledge/accessibility/semantic-html.md +355 -355
- tapps_agents/experts/knowledge/accessibility/testing-accessibility.md +369 -369
- tapps_agents/experts/knowledge/accessibility/wcag-2.1.md +296 -296
- tapps_agents/experts/knowledge/accessibility/wcag-2.2.md +211 -211
- tapps_agents/experts/knowledge/agent-learning/best-practices.md +715 -715
- tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md +282 -282
- tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md +320 -320
- tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md +90 -90
- tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md +260 -260
- tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md +309 -309
- tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +521 -521
- tapps_agents/experts/knowledge/api-design-integration/api-versioning.md +421 -421
- tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md +61 -61
- tapps_agents/experts/knowledge/api-design-integration/contract-testing.md +221 -221
- tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +489 -489
- tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md +360 -360
- tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md +262 -262
- tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md +582 -582
- tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md +499 -499
- tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md +455 -455
- tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md +507 -507
- tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md +618 -618
- tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md +480 -480
- tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md +175 -175
- tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md +261 -261
- tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md +222 -222
- tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md +122 -122
- tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md +153 -153
- tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md +285 -285
- tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md +187 -187
- tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md +253 -253
- tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md +155 -155
- tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md +200 -200
- tapps_agents/experts/knowledge/code-quality-analysis/README.md +16 -16
- tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md +137 -137
- tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md +181 -181
- tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md +191 -191
- tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md +313 -313
- tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md +255 -255
- tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md +282 -282
- tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md +275 -275
- tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md +297 -297
- tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md +383 -383
- tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md +285 -285
- tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md +344 -344
- tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md +385 -385
- tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md +280 -280
- tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md +164 -164
- tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md +182 -182
- tapps_agents/experts/knowledge/database-data-management/data-modeling.md +172 -172
- tapps_agents/experts/knowledge/database-data-management/database-design.md +187 -187
- tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md +342 -342
- tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md +432 -432
- tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md +442 -442
- tapps_agents/experts/knowledge/database-data-management/migration-strategies.md +216 -216
- tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md +259 -259
- tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md +184 -184
- tapps_agents/experts/knowledge/database-data-management/sql-optimization.md +175 -175
- tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md +444 -444
- tapps_agents/experts/knowledge/development-workflow/README.md +16 -16
- tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md +216 -216
- tapps_agents/experts/knowledge/development-workflow/build-strategies.md +198 -198
- tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md +205 -205
- tapps_agents/experts/knowledge/development-workflow/git-workflows.md +205 -205
- tapps_agents/experts/knowledge/documentation-knowledge-management/README.md +16 -16
- tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md +231 -231
- tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md +191 -191
- tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md +171 -171
- tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md +192 -192
- tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md +461 -461
- tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md +459 -459
- tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md +367 -367
- tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md +478 -478
- tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md +510 -510
- tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md +492 -492
- tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md +573 -573
- tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md +419 -419
- tapps_agents/experts/knowledge/performance/anti-patterns.md +284 -284
- tapps_agents/experts/knowledge/performance/api-performance.md +256 -256
- tapps_agents/experts/knowledge/performance/caching.md +327 -327
- tapps_agents/experts/knowledge/performance/database-performance.md +252 -252
- tapps_agents/experts/knowledge/performance/optimization-patterns.md +327 -327
- tapps_agents/experts/knowledge/performance/profiling.md +297 -297
- tapps_agents/experts/knowledge/performance/resource-management.md +293 -293
- tapps_agents/experts/knowledge/performance/scalability.md +306 -306
- tapps_agents/experts/knowledge/security/owasp-top10.md +209 -209
- tapps_agents/experts/knowledge/security/secure-coding-practices.md +207 -207
- tapps_agents/experts/knowledge/security/threat-modeling.md +220 -220
- tapps_agents/experts/knowledge/security/vulnerability-patterns.md +342 -342
- tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md +314 -314
- tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md +379 -379
- tapps_agents/experts/knowledge/software-architecture/service-communication.md +316 -316
- tapps_agents/experts/knowledge/testing/best-practices.md +310 -310
- tapps_agents/experts/knowledge/testing/coverage-analysis.md +293 -293
- tapps_agents/experts/knowledge/testing/mocking.md +256 -256
- tapps_agents/experts/knowledge/testing/test-automation.md +276 -276
- tapps_agents/experts/knowledge/testing/test-data.md +271 -271
- tapps_agents/experts/knowledge/testing/test-design-patterns.md +280 -280
- tapps_agents/experts/knowledge/testing/test-maintenance.md +236 -236
- tapps_agents/experts/knowledge/testing/test-strategies.md +311 -311
- tapps_agents/experts/knowledge/user-experience/information-architecture.md +325 -325
- tapps_agents/experts/knowledge/user-experience/interaction-design.md +363 -363
- tapps_agents/experts/knowledge/user-experience/prototyping.md +293 -293
- tapps_agents/experts/knowledge/user-experience/usability-heuristics.md +337 -337
- tapps_agents/experts/knowledge/user-experience/usability-testing.md +311 -311
- tapps_agents/experts/knowledge/user-experience/user-journeys.md +296 -296
- tapps_agents/experts/knowledge/user-experience/user-research.md +373 -373
- tapps_agents/experts/knowledge/user-experience/ux-principles.md +340 -340
- tapps_agents/experts/knowledge_freshness.py +321 -321
- tapps_agents/experts/knowledge_ingestion.py +438 -438
- tapps_agents/experts/knowledge_need_detector.py +93 -93
- tapps_agents/experts/knowledge_validator.py +382 -382
- tapps_agents/experts/observability.py +440 -440
- tapps_agents/experts/passive_notifier.py +238 -238
- tapps_agents/experts/proactive_orchestrator.py +32 -32
- tapps_agents/experts/rag_chunker.py +205 -205
- tapps_agents/experts/rag_embedder.py +152 -152
- tapps_agents/experts/rag_evaluation.py +299 -299
- tapps_agents/experts/rag_index.py +303 -303
- tapps_agents/experts/rag_metrics.py +293 -293
- tapps_agents/experts/rag_safety.py +263 -263
- tapps_agents/experts/report_generator.py +296 -296
- tapps_agents/experts/setup_wizard.py +441 -441
- tapps_agents/experts/simple_rag.py +431 -431
- tapps_agents/experts/vector_rag.py +354 -354
- tapps_agents/experts/weight_distributor.py +304 -304
- tapps_agents/health/__init__.py +24 -24
- tapps_agents/health/base.py +75 -75
- tapps_agents/health/checks/__init__.py +22 -22
- tapps_agents/health/checks/automation.py +127 -127
- tapps_agents/health/checks/context7_cache.py +210 -210
- tapps_agents/health/checks/environment.py +116 -116
- tapps_agents/health/checks/execution.py +170 -170
- tapps_agents/health/checks/knowledge_base.py +187 -187
- tapps_agents/health/checks/outcomes.py +324 -324
- tapps_agents/health/collector.py +280 -280
- tapps_agents/health/dashboard.py +137 -137
- tapps_agents/health/metrics.py +151 -151
- tapps_agents/health/orchestrator.py +271 -271
- tapps_agents/health/registry.py +166 -166
- tapps_agents/hooks/__init__.py +33 -33
- tapps_agents/hooks/config.py +140 -140
- tapps_agents/hooks/events.py +135 -135
- tapps_agents/hooks/executor.py +128 -128
- tapps_agents/hooks/manager.py +143 -143
- tapps_agents/integration/__init__.py +8 -8
- tapps_agents/integration/service_integrator.py +121 -121
- tapps_agents/integrations/__init__.py +10 -10
- tapps_agents/integrations/clawdbot.py +525 -525
- tapps_agents/integrations/memory_bridge.py +356 -356
- tapps_agents/mcp/__init__.py +18 -18
- tapps_agents/mcp/gateway.py +112 -112
- tapps_agents/mcp/servers/__init__.py +13 -13
- tapps_agents/mcp/servers/analysis.py +204 -204
- tapps_agents/mcp/servers/context7.py +198 -198
- tapps_agents/mcp/servers/filesystem.py +218 -218
- tapps_agents/mcp/servers/git.py +201 -201
- tapps_agents/mcp/tool_registry.py +115 -115
- tapps_agents/quality/__init__.py +54 -54
- tapps_agents/quality/coverage_analyzer.py +379 -379
- tapps_agents/quality/enforcement.py +82 -82
- tapps_agents/quality/gates/__init__.py +37 -37
- tapps_agents/quality/gates/approval_gate.py +255 -255
- tapps_agents/quality/gates/base.py +84 -84
- tapps_agents/quality/gates/exceptions.py +43 -43
- tapps_agents/quality/gates/policy_gate.py +195 -195
- tapps_agents/quality/gates/registry.py +239 -239
- tapps_agents/quality/gates/security_gate.py +156 -156
- tapps_agents/quality/quality_gates.py +369 -369
- tapps_agents/quality/secret_scanner.py +335 -335
- tapps_agents/session/__init__.py +19 -19
- tapps_agents/session/manager.py +256 -256
- tapps_agents/simple_mode/__init__.py +66 -66
- tapps_agents/simple_mode/agent_contracts.py +357 -357
- tapps_agents/simple_mode/beads_hooks.py +151 -151
- tapps_agents/simple_mode/code_snippet_handler.py +382 -382
- tapps_agents/simple_mode/documentation_manager.py +395 -395
- tapps_agents/simple_mode/documentation_reader.py +187 -187
- tapps_agents/simple_mode/file_inference.py +292 -292
- tapps_agents/simple_mode/framework_change_detector.py +268 -268
- tapps_agents/simple_mode/intent_parser.py +510 -510
- tapps_agents/simple_mode/learning_progression.py +358 -358
- tapps_agents/simple_mode/nl_handler.py +700 -700
- tapps_agents/simple_mode/onboarding.py +253 -253
- tapps_agents/simple_mode/orchestrators/__init__.py +38 -38
- tapps_agents/simple_mode/orchestrators/base.py +185 -185
- tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py +49 -49
- tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py +135 -135
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2700 -2667
- tapps_agents/simple_mode/orchestrators/deliverable_checklist.py +349 -349
- tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py +53 -53
- tapps_agents/simple_mode/orchestrators/epic_orchestrator.py +122 -122
- tapps_agents/simple_mode/orchestrators/explore_orchestrator.py +184 -184
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -723
- tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py +206 -206
- tapps_agents/simple_mode/orchestrators/pr_orchestrator.py +237 -237
- tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py +222 -222
- tapps_agents/simple_mode/orchestrators/requirements_tracer.py +262 -262
- tapps_agents/simple_mode/orchestrators/resume_orchestrator.py +210 -210
- tapps_agents/simple_mode/orchestrators/review_orchestrator.py +161 -161
- tapps_agents/simple_mode/orchestrators/test_orchestrator.py +82 -82
- tapps_agents/simple_mode/output_aggregator.py +340 -340
- tapps_agents/simple_mode/result_formatters.py +598 -598
- tapps_agents/simple_mode/step_dependencies.py +382 -382
- tapps_agents/simple_mode/step_results.py +276 -276
- tapps_agents/simple_mode/streaming.py +388 -388
- tapps_agents/simple_mode/variations.py +129 -129
- tapps_agents/simple_mode/visual_feedback.py +238 -238
- tapps_agents/simple_mode/zero_config.py +274 -274
- tapps_agents/suggestions/__init__.py +8 -8
- tapps_agents/suggestions/inline_suggester.py +52 -52
- tapps_agents/templates/__init__.py +8 -8
- tapps_agents/templates/microservice_generator.py +274 -274
- tapps_agents/utils/env_validator.py +291 -291
- tapps_agents/workflow/__init__.py +171 -171
- tapps_agents/workflow/acceptance_verifier.py +132 -132
- tapps_agents/workflow/agent_handlers/__init__.py +41 -41
- tapps_agents/workflow/agent_handlers/analyst_handler.py +75 -75
- tapps_agents/workflow/agent_handlers/architect_handler.py +107 -107
- tapps_agents/workflow/agent_handlers/base.py +84 -84
- tapps_agents/workflow/agent_handlers/debugger_handler.py +100 -100
- tapps_agents/workflow/agent_handlers/designer_handler.py +110 -110
- tapps_agents/workflow/agent_handlers/documenter_handler.py +94 -94
- tapps_agents/workflow/agent_handlers/implementer_handler.py +235 -235
- tapps_agents/workflow/agent_handlers/ops_handler.py +62 -62
- tapps_agents/workflow/agent_handlers/orchestrator_handler.py +43 -43
- tapps_agents/workflow/agent_handlers/planner_handler.py +98 -98
- tapps_agents/workflow/agent_handlers/registry.py +119 -119
- tapps_agents/workflow/agent_handlers/reviewer_handler.py +119 -119
- tapps_agents/workflow/agent_handlers/tester_handler.py +69 -69
- tapps_agents/workflow/analytics_accessor.py +337 -337
- tapps_agents/workflow/analytics_alerts.py +416 -416
- tapps_agents/workflow/analytics_dashboard_cursor.py +281 -281
- tapps_agents/workflow/analytics_dual_write.py +103 -103
- tapps_agents/workflow/analytics_integration.py +119 -119
- tapps_agents/workflow/analytics_query_parser.py +278 -278
- tapps_agents/workflow/analytics_visualizer.py +259 -259
- tapps_agents/workflow/artifact_helper.py +204 -204
- tapps_agents/workflow/audit_logger.py +263 -263
- tapps_agents/workflow/auto_execution_config.py +340 -340
- tapps_agents/workflow/auto_progression.py +586 -586
- tapps_agents/workflow/branch_cleanup.py +349 -349
- tapps_agents/workflow/checkpoint.py +256 -256
- tapps_agents/workflow/checkpoint_manager.py +178 -178
- tapps_agents/workflow/code_artifact.py +179 -179
- tapps_agents/workflow/common_enums.py +96 -96
- tapps_agents/workflow/confirmation_handler.py +130 -130
- tapps_agents/workflow/context_analyzer.py +222 -222
- tapps_agents/workflow/context_artifact.py +230 -230
- tapps_agents/workflow/cursor_chat.py +94 -94
- tapps_agents/workflow/cursor_executor.py +2337 -2196
- tapps_agents/workflow/cursor_skill_helper.py +516 -516
- tapps_agents/workflow/dependency_resolver.py +244 -244
- tapps_agents/workflow/design_artifact.py +156 -156
- tapps_agents/workflow/detector.py +751 -751
- tapps_agents/workflow/direct_execution_fallback.py +301 -301
- tapps_agents/workflow/docs_artifact.py +168 -168
- tapps_agents/workflow/enforcer.py +389 -389
- tapps_agents/workflow/enhancement_artifact.py +142 -142
- tapps_agents/workflow/error_recovery.py +806 -806
- tapps_agents/workflow/event_bus.py +183 -183
- tapps_agents/workflow/event_log.py +612 -612
- tapps_agents/workflow/events.py +63 -63
- tapps_agents/workflow/exceptions.py +43 -43
- tapps_agents/workflow/execution_graph.py +498 -498
- tapps_agents/workflow/execution_plan.py +126 -126
- tapps_agents/workflow/file_utils.py +186 -186
- tapps_agents/workflow/gate_evaluator.py +182 -182
- tapps_agents/workflow/gate_integration.py +200 -200
- tapps_agents/workflow/graph_visualizer.py +130 -130
- tapps_agents/workflow/health_checker.py +206 -206
- tapps_agents/workflow/logging_helper.py +243 -243
- tapps_agents/workflow/manifest.py +582 -582
- tapps_agents/workflow/marker_writer.py +250 -250
- tapps_agents/workflow/message_formatter.py +188 -188
- tapps_agents/workflow/messaging.py +325 -325
- tapps_agents/workflow/metadata_models.py +91 -91
- tapps_agents/workflow/metrics_integration.py +226 -226
- tapps_agents/workflow/migration_utils.py +116 -116
- tapps_agents/workflow/models.py +148 -111
- tapps_agents/workflow/nlp_config.py +198 -198
- tapps_agents/workflow/nlp_error_handler.py +207 -207
- tapps_agents/workflow/nlp_executor.py +163 -163
- tapps_agents/workflow/nlp_parser.py +528 -528
- tapps_agents/workflow/observability_dashboard.py +451 -451
- tapps_agents/workflow/observer.py +170 -170
- tapps_agents/workflow/ops_artifact.py +257 -257
- tapps_agents/workflow/output_passing.py +214 -214
- tapps_agents/workflow/parallel_executor.py +463 -463
- tapps_agents/workflow/planning_artifact.py +179 -179
- tapps_agents/workflow/preset_loader.py +285 -285
- tapps_agents/workflow/preset_recommender.py +270 -270
- tapps_agents/workflow/progress_logger.py +145 -145
- tapps_agents/workflow/progress_manager.py +303 -303
- tapps_agents/workflow/progress_monitor.py +186 -186
- tapps_agents/workflow/progress_updates.py +423 -423
- tapps_agents/workflow/quality_artifact.py +158 -158
- tapps_agents/workflow/quality_loopback.py +101 -101
- tapps_agents/workflow/recommender.py +387 -387
- tapps_agents/workflow/remediation_loop.py +166 -166
- tapps_agents/workflow/result_aggregator.py +300 -300
- tapps_agents/workflow/review_artifact.py +185 -185
- tapps_agents/workflow/schema_validator.py +522 -522
- tapps_agents/workflow/session_handoff.py +178 -178
- tapps_agents/workflow/skill_invoker.py +648 -648
- tapps_agents/workflow/state_manager.py +756 -756
- tapps_agents/workflow/state_persistence_config.py +331 -331
- tapps_agents/workflow/status_monitor.py +449 -449
- tapps_agents/workflow/step_checkpoint.py +314 -314
- tapps_agents/workflow/step_details.py +201 -201
- tapps_agents/workflow/story_models.py +147 -147
- tapps_agents/workflow/streaming.py +416 -416
- tapps_agents/workflow/suggestion_engine.py +552 -552
- tapps_agents/workflow/testing_artifact.py +186 -186
- tapps_agents/workflow/timeline.py +158 -158
- tapps_agents/workflow/token_integration.py +209 -209
- tapps_agents/workflow/validation.py +217 -217
- tapps_agents/workflow/visual_feedback.py +391 -391
- tapps_agents/workflow/workflow_chain.py +95 -95
- tapps_agents/workflow/workflow_summary.py +219 -219
- tapps_agents/workflow/worktree_manager.py +724 -724
- {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/METADATA +672 -672
- tapps_agents-3.6.0.dist-info/RECORD +758 -0
- {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/licenses/LICENSE +22 -22
- tapps_agents/health/checks/outcomes.backup_20260204_064058.py +0 -324
- tapps_agents/health/checks/outcomes.backup_20260204_064256.py +0 -324
- tapps_agents/health/checks/outcomes.backup_20260204_064600.py +0 -324
- tapps_agents-3.5.40.dist-info/RECORD +0 -760
- {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/WHEEL +0 -0
- {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/entry_points.txt +0 -0
- {tapps_agents-3.5.40.dist-info → tapps_agents-3.6.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+
tapps_agents/__init__.py,sha256=DCG4gcgx02XgBsbBBOZJ7V_hBxMJ1VmopTSa5xL3thc,1178
|
|
2
|
+
tapps_agents/agents/__init__.py,sha256=OSbiJmhJCR38kGT4JJKwObm2DZenWca0uZJgMMyP070,676
|
|
3
|
+
tapps_agents/agents/analyst/__init__.py,sha256=UIGxppnlGKUNyyIlvhfq1XMMw4xF9X3KC258Ff_uVxQ,130
|
|
4
|
+
tapps_agents/agents/analyst/agent.py,sha256=YgPvWOqdZfIA24jIrbmHSdj3EVGIrGpwVIv5ep9uc8U,32033
|
|
5
|
+
tapps_agents/agents/architect/__init__.py,sha256=niMtd0sCJzRmY3iQCY2TTWKqKAbOTq6tOlVr8Gk0iPM,130
|
|
6
|
+
tapps_agents/agents/architect/agent.py,sha256=hZCH7PaUyY5fvSyr90VZLA3qy_l_3PaY5QKTbPFtZgg,41474
|
|
7
|
+
tapps_agents/agents/architect/pattern_detector.py,sha256=meKws4-91MTV7JcihYuB8e92vdeVfrhQ3EsUtRKKiEU,2897
|
|
8
|
+
tapps_agents/agents/cleanup/__init__.py,sha256=_MMP3lwIcWTWVft_I7bNhNvUmeCu5teJUYmy-Xa_3ds,124
|
|
9
|
+
tapps_agents/agents/cleanup/agent.py,sha256=QLbaWtDIsPoEljWsZVFHadPw_FgvHqblQCaYqCE0bMo,16733
|
|
10
|
+
tapps_agents/agents/debugger/__init__.py,sha256=FtushuirpKRWt7cPhtIPJnGlhJ01WCkwHxgiNfoo7vo,123
|
|
11
|
+
tapps_agents/agents/debugger/agent.py,sha256=5TMs1LPtT8wcXj-IhTr5WBoBHvHa_sf5U2wH3VzZuQg,11590
|
|
12
|
+
tapps_agents/agents/debugger/error_analyzer.py,sha256=FLoQUqTS-XCPVHYd1M3rfQj28e0p8Jau_-LJiMVDhBQ,17662
|
|
13
|
+
tapps_agents/agents/designer/__init__.py,sha256=irhVo5j8_ivCPinPaeRTf-PJqz6MiOs8qJcqcxYgfW0,136
|
|
14
|
+
tapps_agents/agents/designer/agent.py,sha256=Ig3DV3G28FKZgIDjBYF-4TsYYDLVASrX0ygU3oWWkgA,31326
|
|
15
|
+
tapps_agents/agents/designer/visual_designer.py,sha256=jaDd8D0aRWeRH-ChfPdmzJOvBlX_JSoHSkamyYybgew,22571
|
|
16
|
+
tapps_agents/agents/documenter/__init__.py,sha256=SYJ-7TFEacam5F0MCI2fyksOPbPKEeGd9g6_QdZeWA4,118
|
|
17
|
+
tapps_agents/agents/documenter/agent.py,sha256=laZLkRagDDGPcHg1Rfw0MqoQBOJsUa-FeHZv1sCPvT4,21809
|
|
18
|
+
tapps_agents/agents/documenter/doc_generator.py,sha256=UY1WXL6Zj66UDtHfSkwTfWQ0gx8EjFu84-x5tiI57P0,17369
|
|
19
|
+
tapps_agents/agents/documenter/doc_validator.py,sha256=PCCOg3kNcwCM-KJY2j_UUq5umWNUpjnv7lNQn4874eg,13996
|
|
20
|
+
tapps_agents/agents/documenter/framework_doc_updater.py,sha256=s_iYo0hs98whT_Ugi_ffNoR0C42PydQ_DQd35AhoOHg,17945
|
|
21
|
+
tapps_agents/agents/enhancer/__init__.py,sha256=BbB0LaWfXp_M3rzqtnHyv1sGsFtUxaHF2QaPCHbAhQ4,115
|
|
22
|
+
tapps_agents/agents/enhancer/agent.py,sha256=GQrz0AiVaiwsLFfzr4CC8A0sn1hkOrYpkcIZS7pWYDw,119076
|
|
23
|
+
tapps_agents/agents/evaluator/__init__.py,sha256=cBVCZgxWeiTWZI7uw4RxpbPpO0OluZ8RQItNNddxbT0,144
|
|
24
|
+
tapps_agents/agents/evaluator/agent.py,sha256=gbuO2vFgTpLcZ6INhhfxlXI24gafKGDt6H2vKyTgmjg,15649
|
|
25
|
+
tapps_agents/agents/evaluator/priority_evaluator.py,sha256=BOmhbn3GmlDJNem2ObJnxh60RYD2dVgd5PpbymohWiI,22307
|
|
26
|
+
tapps_agents/agents/evaluator/quality_analyzer.py,sha256=qjlOJ7wUtntkqDjjh8Tia0w7kFpO2ENpW5hlzsaTSpI,4667
|
|
27
|
+
tapps_agents/agents/evaluator/report_generator.py,sha256=kWgzAWnSoEMXA_CpjB74SKVdePVwbkfw-xPYO58erkU,13250
|
|
28
|
+
tapps_agents/agents/evaluator/usage_analyzer.py,sha256=OiZmhZ-q1wYjipe-IKbH6speXDd-KpM80EvchIsWI3o,6650
|
|
29
|
+
tapps_agents/agents/evaluator/workflow_analyzer.py,sha256=82OBxWw7iJmGPqedAKDpxSNuzv0b8_beRA1K0WIa96Q,6910
|
|
30
|
+
tapps_agents/agents/implementer/__init__.py,sha256=iV5lwExJ-PPJGFljRFjI2wDP2DeqS7LtXy1Jbu5Rj9w,134
|
|
31
|
+
tapps_agents/agents/implementer/agent.py,sha256=odcoCQG9duvYZu4jAvBLWMqQgbSeaL-kmmZvz9qFDNE,31380
|
|
32
|
+
tapps_agents/agents/implementer/auto_fix.py,sha256=jCqwaKliUaSQ5MJ9drUJ1mPXNIM1ZGc_pknwX69i8ls,36488
|
|
33
|
+
tapps_agents/agents/implementer/code_generator.py,sha256=GBHludp_XfuNrWGD-HFrpiwu_WXExMQYJRdl97-yPkU,2459
|
|
34
|
+
tapps_agents/agents/improver/__init__.py,sha256=NtS_BCd4Zu6NEsGf6PiJhq_u5hMgozLGVHwFOwHlcJk,50
|
|
35
|
+
tapps_agents/agents/improver/agent.py,sha256=PIVLSDrZAS8bXRqcFVnoXQ5wamlPJVCF0guDvK-WfgY,29400
|
|
36
|
+
tapps_agents/agents/ops/__init__.py,sha256=MtbsxPbGJhtT5DzLGkc-GxKNavmVXWoHQNP7z1IOctQ,40
|
|
37
|
+
tapps_agents/agents/ops/agent.py,sha256=GNC3v_9dbyYaACEK8gNAr_0N1J_jL6pvniQ_U-kD0Vw,23100
|
|
38
|
+
tapps_agents/agents/ops/dependency_analyzer.py,sha256=6LhQC86FtviJxNoPFOUGYg46ZvmygUISJQsAgU2MxAA,23675
|
|
39
|
+
tapps_agents/agents/orchestrator/__init__.py,sha256=Yjtu_PC-g3hw7Pp1MrCNYIktcdF_UlV3QtVDxqe2R1g,140
|
|
40
|
+
tapps_agents/agents/orchestrator/agent.py,sha256=f3e70klgLqNsSNSrHZiDZzd6CJ3YkjpcyvXip8nC778,20548
|
|
41
|
+
tapps_agents/agents/planner/__init__.py,sha256=Jjd40kvubwfWKotC61HzwUkFgheLxu7s8HlzZejeZVY,126
|
|
42
|
+
tapps_agents/agents/planner/agent.py,sha256=UEaHZb9qpUlH7NvT21QNENihMbuGWOLSqjOfSIMxEjw,41660
|
|
43
|
+
tapps_agents/agents/reviewer/__init__.py,sha256=lqD-LWa-0V6sKo5r2NlL318VabYHsboSLwvTNG5viU0,535
|
|
44
|
+
tapps_agents/agents/reviewer/adaptive_scorer.py,sha256=IGqPTGkmxg6ed9ORa9bxYYmhcbkWzTgWCEwjgHyNM7o,4788
|
|
45
|
+
tapps_agents/agents/reviewer/agent.py,sha256=UKdTvQMbIW43sXQNwQyNeddvkx5khXILCG97SOUjC_g,155650
|
|
46
|
+
tapps_agents/agents/reviewer/aggregator.py,sha256=FHQtakf7Jbr0SEVxmvmShmynE28SQPRoaK2ddq3EqQw,7262
|
|
47
|
+
tapps_agents/agents/reviewer/batch_review.py,sha256=CThXFxuYpAOgc1CEp-NyNQ_YfqPjRppEjzE3wQCNGmA,16269
|
|
48
|
+
tapps_agents/agents/reviewer/cache.py,sha256=fjLzVFPXhSzomA6Yi4TjRLlzPFiBi7xthrAi4nGX9nk,14867
|
|
49
|
+
tapps_agents/agents/reviewer/context7_enhancer.py,sha256=ySMmHR2OfNwlaYsalFv3Vja8ppiyqhXeHSulEp1g4H4,22525
|
|
50
|
+
tapps_agents/agents/reviewer/context_detector.py,sha256=VJ6yGTkmTndQF3r06-nCnQvhW7iT_XVWuLy89p1osU8,6787
|
|
51
|
+
tapps_agents/agents/reviewer/docker_compose_validator.py,sha256=tmOwanImW-isS38nE_Hud0CdhsjmDByY86i3OjAPaj8,5335
|
|
52
|
+
tapps_agents/agents/reviewer/dockerfile_validator.py,sha256=xiHULybgje6VZfjApFyT7YFWB0yReD2YLw4p8ZTOLaI,6294
|
|
53
|
+
tapps_agents/agents/reviewer/error_handling.py,sha256=oL1_0_XNdTVPwcIrktt_ahF4sU3B5dniThZLO-eNk1E,4023
|
|
54
|
+
tapps_agents/agents/reviewer/feedback_generator.py,sha256=wuDmKlYRMjHagJ0DkeSjAAK8juP_1XuFtDAN3czbU7M,19196
|
|
55
|
+
tapps_agents/agents/reviewer/influxdb_validator.py,sha256=AbLyhqIx5N3ERO0W-kF-8xWoqUaA3VfQgpwet7I6hNs,11536
|
|
56
|
+
tapps_agents/agents/reviewer/issue_tracking.py,sha256=4Z1NK9lgI8tGNjAAD9hez2yhDbmzu2ihKB2PCxqqmmc,5901
|
|
57
|
+
tapps_agents/agents/reviewer/library_detector.py,sha256=MZa27Xk5dh6BzrFdtIU-axMkriXmLxRGeDEmwe5XNhA,11230
|
|
58
|
+
tapps_agents/agents/reviewer/library_patterns.py,sha256=HUVq3n_U912X19p-rRAjvGAOIOxd_V4Suyr-LP53pOQ,9384
|
|
59
|
+
tapps_agents/agents/reviewer/maintainability_scorer.py,sha256=fza18Jq61AlFqRQKrb26b6pTN4XJ8UcADDEH_Y7NHU4,23915
|
|
60
|
+
tapps_agents/agents/reviewer/metric_strategies.py,sha256=mnmgDifVkO5x61mx6cHbeezg2ROvrFTWpX9KKxFnSTU,8673
|
|
61
|
+
tapps_agents/agents/reviewer/mqtt_validator.py,sha256=NtgT8nMKBSKjr8_B1fFneI9H5k4Z9WtRBUvDlWB2H90,5100
|
|
62
|
+
tapps_agents/agents/reviewer/output_enhancer.py,sha256=LqIuxg_hmOo6xazqbVFN_EAsgBJ7DVrOsiSUqlKQJfw,3406
|
|
63
|
+
tapps_agents/agents/reviewer/pattern_detector.py,sha256=CtKu000kWio5Pc_ueKIGGBhT-eUUq4HGgKOIK5RLs50,8103
|
|
64
|
+
tapps_agents/agents/reviewer/performance_scorer.py,sha256=Y3Gmsy_uV4pUtNhmzIhCXQ83_UYKgRdIIvsEuo_YUzE,13066
|
|
65
|
+
tapps_agents/agents/reviewer/phased_review.py,sha256=KBZNpEQeSEmWWxiFKlTsn6GAnsZAqxnHILQ5mhaLTZ4,17815
|
|
66
|
+
tapps_agents/agents/reviewer/progressive_review.py,sha256=EU6l5Cjc4lm6dNm7Ir0eGFnoGjX7ZpqxJAKNKq66g4Y,13668
|
|
67
|
+
tapps_agents/agents/reviewer/react_scorer.py,sha256=19ywmbO3yXfTsR-Y1UFR_vcRf1KaMTVHY1K9ZiPFXw8,12188
|
|
68
|
+
tapps_agents/agents/reviewer/report_generator.py,sha256=gVx8sLZj7UGzHnXTDqMI5sKGXFvz5zhuJcTsc4PbwWQ,23893
|
|
69
|
+
tapps_agents/agents/reviewer/score_constants.py,sha256=AWBKYlJN9zOKub9Q8jXaYlr9ZCunB5THwlEe2oGQHe4,7600
|
|
70
|
+
tapps_agents/agents/reviewer/score_validator.py,sha256=qqu9bMi5yOwO1Ytn2zheh0-qK7bVGPpPxMngb0G_MDA,21531
|
|
71
|
+
tapps_agents/agents/reviewer/scorer_registry.py,sha256=Hc2uuyBubsWVvY3pSOsnExXRNO3APGybvAMvjC_cF3s,13722
|
|
72
|
+
tapps_agents/agents/reviewer/scoring.py,sha256=sJNOF9Pt8rXI0IxudOo3s9CkF3zuaRE-tp8gXAslx4c,61084
|
|
73
|
+
tapps_agents/agents/reviewer/service_discovery.py,sha256=x_CoyGLpebgVTCLycKeT2jOBAQXMSQ8i5Q-PNeontXs,18449
|
|
74
|
+
tapps_agents/agents/reviewer/typescript_scorer.py,sha256=ahS-pm-z5MGajZT3jrqio8tYvv8MJyuQk3PhRZi9Go8,44506
|
|
75
|
+
tapps_agents/agents/reviewer/validation.py,sha256=sDtzPIPktzKzh3krrLo9g2peP-kVtlgip-lg-0VwfVc,5946
|
|
76
|
+
tapps_agents/agents/reviewer/websocket_validator.py,sha256=HuPfo9z-PVSr8IsOwXuyzpAe-aUkD9rT1BTCPrp3K6k,4407
|
|
77
|
+
tapps_agents/agents/reviewer/tools/__init__.py,sha256=FiiPwhDLn82xxrZsID_eEPeTJ3b-5VnhhSf1RNt7jv0,798
|
|
78
|
+
tapps_agents/agents/reviewer/tools/parallel_executor.py,sha256=q15nDd7eXInjuGfBfudJrSm74nYDAsbWnihh_7Ct2Mc,18764
|
|
79
|
+
tapps_agents/agents/reviewer/tools/ruff_grouping.py,sha256=qIWKgOaOuwIA9h3sXyXOHx88N4MHxy20lK_je1lQNq4,8743
|
|
80
|
+
tapps_agents/agents/reviewer/tools/scoped_mypy.py,sha256=1YAbnaYTviiZYbedwl9RRZ7x2FS3r3oHJ_kTnEhhLZc,9689
|
|
81
|
+
tapps_agents/agents/tester/__init__.py,sha256=o12ka8edhuvxqt_VYPkjLD5lsISKSf12cm09FSG4xic,107
|
|
82
|
+
tapps_agents/agents/tester/accessibility_auditor.py,sha256=wXF1L3-6STfHNJRWdAuSK__UdXKgE24WHg1087wJNzo,11818
|
|
83
|
+
tapps_agents/agents/tester/agent.py,sha256=5gt3eJ0J8GepRBGum31DkBKdCLYT5cEmOGRWlI6FemQ,45533
|
|
84
|
+
tapps_agents/agents/tester/batch_generator.py,sha256=L-EOCj4wylvB4JZbmBv5dytntibos61-4QmFbrDx3Jw,1549
|
|
85
|
+
tapps_agents/agents/tester/context_learner.py,sha256=K_71lpuX4HYJgpotJOZT9RacFXkE7vUZpv_4pNJoLKc,1403
|
|
86
|
+
tapps_agents/agents/tester/coverage_analyzer.py,sha256=AewUxx4g7y-8xAGZx62mwof7OZBSp29LXrLgBgsIHs4,13102
|
|
87
|
+
tapps_agents/agents/tester/coverage_test_generator.py,sha256=h7vU5Gjbbd_rc_kbKUZvsR8UzlGwtaaW0QTw8TjMfHQ,9583
|
|
88
|
+
tapps_agents/agents/tester/debug_enhancer.py,sha256=Ho4C-E_IOm_0bg9yxgf1msn5xSg9vOLWj2aUa27y-iE,8133
|
|
89
|
+
tapps_agents/agents/tester/device_emulator.py,sha256=zOybuEzAqHx5v7TQ6GGkDY3CZCSCugRL0RHcSYRwOTs,7467
|
|
90
|
+
tapps_agents/agents/tester/integration_generator.py,sha256=yjyrQx5qo6AhbJ-RNFQLKVvoHh5x6HDvdtVnQtEktY8,1536
|
|
91
|
+
tapps_agents/agents/tester/network_recorder.py,sha256=-jK1GHq4y8ptlzjqxUj-uc9_m6T2taDAZyVG3k5eNUE,9239
|
|
92
|
+
tapps_agents/agents/tester/performance_monitor.py,sha256=RltDdAaCo7OysQGk0I2NMnh2bg299hkQF8qfL5vp8yI,11946
|
|
93
|
+
tapps_agents/agents/tester/test_fixer.py,sha256=l_zqN6Hrcn2rO74DLoTdd_GZ4C0-Exdn7WiUjngCfUc,10818
|
|
94
|
+
tapps_agents/agents/tester/test_generator.py,sha256=sMsm-5hUgAzlcbZacr_QxOZGkqiIn9r4kllR-IIb2E0,25901
|
|
95
|
+
tapps_agents/agents/tester/trace_manager.py,sha256=FIPUhcolzzf701SGuJaSBRo-pNkjdqCCKpPN-UCd4mA,7138
|
|
96
|
+
tapps_agents/agents/tester/visual_regression.py,sha256=p65w5Q3rqrZ598VTImIi5TRoSwtcUtTGKVUtIaKeIJY,9257
|
|
97
|
+
tapps_agents/analysis/pattern_detector.py,sha256=GtShPwTEtkykVl1uF1DNHAE1MMV653ha4KCZNwxhm7o,777
|
|
98
|
+
tapps_agents/beads/__init__.py,sha256=XaWHzRJFVy_r1XVxZNTFlVCD-TuOLAsIdYt-H96_Zko,867
|
|
99
|
+
tapps_agents/beads/client.py,sha256=ApltiDkxWjtMT14t0KU3c3GdqFm2qYXXQ3shebe74Cg,4255
|
|
100
|
+
tapps_agents/beads/hydration.py,sha256=zTO9S2UEqNcIEpCSJWIZ5PXJsE2QtsiFw-dAWuawQcQ,7272
|
|
101
|
+
tapps_agents/beads/parse.py,sha256=lkAvwdXS_dXZwsMLCprn83nxDsJu5IH8RCnt4Qb5Q-A,971
|
|
102
|
+
tapps_agents/beads/specs.py,sha256=i_wb8rF68qn4QapA-Obk5cCmKHu27mBTpXZLQH4Nuec,6429
|
|
103
|
+
tapps_agents/cli/__init__.py,sha256=W_5hf2crzwbAFhVVws3yD8r4LrkceKb-dYQSYzZbiuA,130
|
|
104
|
+
tapps_agents/cli/__main__.py,sha256=WLJHJZFQT2_GQj-PGgkkNo6VqyPeM8XaOcZgITbsh78,125
|
|
105
|
+
tapps_agents/cli/base.py,sha256=6hl9P7payUQfCsRjw5UiZOXW3Yo6Ffq3kDUqlCc_6ZI,16907
|
|
106
|
+
tapps_agents/cli/command_classifier.py,sha256=HasoU04Kp17pTusNHiI7oIpdHEb4beGq163sCUxPqic,2358
|
|
107
|
+
tapps_agents/cli/feedback.py,sha256=ArCkgyWJw1978m64NxN6JC6raJDwNYvhqXdBJ5py8ao,35716
|
|
108
|
+
tapps_agents/cli/formatters.py,sha256=4IcZTBC8Sq9BYH01twOkonmcrMMwEdvAGgkbiHYddhY,22599
|
|
109
|
+
tapps_agents/cli/main.py,sha256=gpfi3M676iy5sk_6mToH6bo_5qziBd5c-ROs6zs5_jY,23572
|
|
110
|
+
tapps_agents/cli/network_detection.py,sha256=OGTD4YaRYmJHY_47fshyVYJo9aiTpDsDYnCpDjgHj2c,3701
|
|
111
|
+
tapps_agents/cli/output_compactor.py,sha256=I5B37wMARKXvcCRU0JQDt10WMn9BriiG2q_MT8MhaRs,8705
|
|
112
|
+
tapps_agents/cli/progress_heartbeat.py,sha256=AyzBboqDCGeDk_HNUcLkueClp03IhL0r19JHq1_ijsA,8295
|
|
113
|
+
tapps_agents/cli/streaming_progress.py,sha256=x2nsdNaxYnfNq2yVeDyi_sA4kMsAKNhTFAuK0VjpbW8,11144
|
|
114
|
+
tapps_agents/cli/commands/__init__.py,sha256=JwyHfCb0ZTb46HT1su2AJCFK25TydbOjKc2kH0rQKlw,33
|
|
115
|
+
tapps_agents/cli/commands/analyst.py,sha256=WhWHp3VcfD8HbZ-kqNbxzx-AiYoKZrvREVgKoBJlG9M,8495
|
|
116
|
+
tapps_agents/cli/commands/architect.py,sha256=z5afPkZmDxn0E-Zsgpun_9flpsLgOD5zYq6wS0jiIDo,4355
|
|
117
|
+
tapps_agents/cli/commands/cleanup_agent.py,sha256=2m11KeI5hwNPb7bPtgC-HJ__Jnioq-c5-T4pwbbVYKw,3266
|
|
118
|
+
tapps_agents/cli/commands/common.py,sha256=vaHU8TAi_c5ojDJG2otA2ccF8pkUoWUiQf3CeR1dPrU,3237
|
|
119
|
+
tapps_agents/cli/commands/debugger.py,sha256=9EjQ0qFL1CeBCXHIwGIUsCaif6Xb3k92XCdOmNZ1yN4,3304
|
|
120
|
+
tapps_agents/cli/commands/designer.py,sha256=g8IxV7Jtgcsed1tjSDqTdeJhjNuaFQ_NULpXoEsPm1s,4857
|
|
121
|
+
tapps_agents/cli/commands/documenter.py,sha256=4YLp3ROEaINUAVRPLQUMwfKEecihTxJ4z9r_ObgoEIg,5253
|
|
122
|
+
tapps_agents/cli/commands/enhancer.py,sha256=jjLm9cCHD-YB8qpvqUA-uzUUc1lAtSUt0Mire6eHfa0,4114
|
|
123
|
+
tapps_agents/cli/commands/evaluator.py,sha256=V3Z4V0b81gwO5s30xpssmSACObEl4M47egPkPMiaAkk,11688
|
|
124
|
+
tapps_agents/cli/commands/health.py,sha256=h_z8OT6K3WfVlUPjB5Uywz-AICgmdZwpVs5ERYcIhwI,26934
|
|
125
|
+
tapps_agents/cli/commands/implementer.py,sha256=AEDZLPriceYaPgW9EyRpvLAGSj7-OZH_TM49aQ2zbLM,12690
|
|
126
|
+
tapps_agents/cli/commands/improver.py,sha256=ZQcUQFZXC3T7JAiamBLWaLJioVhCtZt_5zW3YW4Ty1g,3308
|
|
127
|
+
tapps_agents/cli/commands/knowledge.py,sha256=_nj0ZIFvOUZsLXUfynJv52y4RQGZAQg7W_xCYiTfYew,3479
|
|
128
|
+
tapps_agents/cli/commands/learning.py,sha256=8nF69DpStGI3ljDXm7Ox1_6Asigsg0XA6U1CgUcHqPY,6348
|
|
129
|
+
tapps_agents/cli/commands/observability.py,sha256=qxr7vsbd2NiEn6DQ76DKl1bUCC-Od_Jbj2ycxixZtAI,10797
|
|
130
|
+
tapps_agents/cli/commands/ops.py,sha256=loTU1cHD0Qp4j4chOD2m8I5MYaC89SQGrmDgBy9ew3g,5077
|
|
131
|
+
tapps_agents/cli/commands/orchestrator.py,sha256=qXMmTGlVWo2I1SjE25eTHaXcHupMbstyrOHIpL8HpFs,4675
|
|
132
|
+
tapps_agents/cli/commands/planner.py,sha256=KuHpsE2gDxUXdhM6XB0DrD1gP2Z8YGmKhhyrxqglLMc,9837
|
|
133
|
+
tapps_agents/cli/commands/reviewer.py,sha256=qLmcOOaC2DTkG5izEmE5aYeW2UfKr01X8GvoSphvuSs,76209
|
|
134
|
+
tapps_agents/cli/commands/simple_mode.py,sha256=JjuaaPKo0DZXOqMNyvFNNqz98sNE78EZFeMIcu77lOU,31820
|
|
135
|
+
tapps_agents/cli/commands/status.py,sha256=wr2k0fPXZ0hSh6G3pcpDKWDKyTVv07jr0tOIpFizjFg,10376
|
|
136
|
+
tapps_agents/cli/commands/task.py,sha256=o9v8IBI7EMwDyaXZBZKvlof7Eo6y8LU5rQc6RehVR6k,8218
|
|
137
|
+
tapps_agents/cli/commands/tester.py,sha256=qeBRadHO-_E8Cz4Q6RoJJbzLO9iANW-5MQrl2KQMYFc,8290
|
|
138
|
+
tapps_agents/cli/commands/top_level.py,sha256=-jVW1xLm4V3D9tbih1_Rw8Gn3dK9mJR9mQVKFnfVfMY,145448
|
|
139
|
+
tapps_agents/cli/help/__init__.py,sha256=7hBsI4A9FymSm0oK8CdKdl3NnYKssNbxZNG62T-QON8,140
|
|
140
|
+
tapps_agents/cli/help/static_help.py,sha256=zbtQ-TPqJqJ2V719zEo1aazNaq_t1dLq-V5mu4TXKTs,19135
|
|
141
|
+
tapps_agents/cli/parsers/__init__.py,sha256=TGpAQnAC-cs_YJnjfr0yDjB1a7l079XX0ojKKa_y5Zk,33
|
|
142
|
+
tapps_agents/cli/parsers/analyst.py,sha256=DLjV5oiXvE6xpx3LUK0KWp5tiG-XDTvgiuwm0oPU2bM,10133
|
|
143
|
+
tapps_agents/cli/parsers/architect.py,sha256=HnON4b3jtN_FTS4rFKG4mIdwKAK2v5F_tlf2axyxOCs,8904
|
|
144
|
+
tapps_agents/cli/parsers/cleanup_agent.py,sha256=qAa2o27xcnevNmXHKndWBaAbfLRNPe-qWJqDWhRSb8E,7389
|
|
145
|
+
tapps_agents/cli/parsers/debugger.py,sha256=y5FJX4RdGrDPJB-M2AKfYloBPggr248d79_3NbPTkBI,6204
|
|
146
|
+
tapps_agents/cli/parsers/designer.py,sha256=DivJAV4I3nMs_l-Y1ZtIoDOjNo32y27NrBhN-XEjxoQ,9598
|
|
147
|
+
tapps_agents/cli/parsers/documenter.py,sha256=eeRzFfAA5FKdQ7vSUkUxHAEkiBIqzyFWaU1q3PfWuM4,6195
|
|
148
|
+
tapps_agents/cli/parsers/enhancer.py,sha256=3efS85L2TeAoXd_8p5WWA3ggc7vlqXC3wyxT5Lv6N9s,5546
|
|
149
|
+
tapps_agents/cli/parsers/evaluator.py,sha256=W77vcRg5jR3Hww5YmpV_YEPlG3cq0uF6Eko96yt9wjI,7288
|
|
150
|
+
tapps_agents/cli/parsers/implementer.py,sha256=i68CfC3lKK0v6LY2BVlTqHGRUZoBvG35FkNg_SSKC7I,8485
|
|
151
|
+
tapps_agents/cli/parsers/improver.py,sha256=4-OS9K9ra0940ucllfSYuoyAe7kImDeyvwokpVPKLtY,6587
|
|
152
|
+
tapps_agents/cli/parsers/ops.py,sha256=_RMBpDfFK8PqW-mTq0w-R61iiyq8SbwjarBAUHBxyAQ,7264
|
|
153
|
+
tapps_agents/cli/parsers/orchestrator.py,sha256=vxKOkns-mjSaWoB_X7QjijvOz3oGdPYFttjY07nsqFg,4481
|
|
154
|
+
tapps_agents/cli/parsers/planner.py,sha256=m3uBVqH8gDQr_2SAobQZ_xIf71qL4f7pXnAvkHiJkRw,6882
|
|
155
|
+
tapps_agents/cli/parsers/reviewer.py,sha256=xDoxy_WXfjeSDnqH3jFOlaExXIwLHKucQZ0-FLYcS04,19286
|
|
156
|
+
tapps_agents/cli/parsers/tester.py,sha256=9H8Ab5tWAGHv6uNEqgHPD4oo5IzfLn0y6YCmAVxyyqY,6431
|
|
157
|
+
tapps_agents/cli/parsers/top_level.py,sha256=lkcmUi9yoWMMMXQ5G_ttvgGLJQPE6vkSFE-f7dwvGVo,84014
|
|
158
|
+
tapps_agents/cli/utils/__init__.py,sha256=4SYEa7-5aBzbpse95rJfFUUrjNgiyec9zfy8ThRmG5I,225
|
|
159
|
+
tapps_agents/cli/utils/agent_lifecycle.py,sha256=wtHyAa_GJQv7HGE79mEQiqeaAyei3c-VRWgXU3OCnW4,1303
|
|
160
|
+
tapps_agents/cli/utils/error_formatter.py,sha256=2pfFCWHVW2bVA4aKt7X3srBU9CvD3yXTACHoU-n1qDY,2556
|
|
161
|
+
tapps_agents/cli/utils/error_recovery.py,sha256=JLXmjmYpaZd1BJ4HNYS7X9Qv_5O-X7SjxMqqw_ui6Wo,6979
|
|
162
|
+
tapps_agents/cli/utils/output_handler.py,sha256=2vBNkwfzNuS5h9HKeYcqUlNDdFrpBxrA4xyqpkG0Xcs,1773
|
|
163
|
+
tapps_agents/cli/utils/prompt_enhancer.py,sha256=ZDUoIXPLuIOmcdH64y9qZF8xgFmCkgHkho7hFl-ElaU,10358
|
|
164
|
+
tapps_agents/cli/utils/status_reporter.py,sha256=87OR24EDs2GFJ-cSQ2v7MlslHHPNZp1NfcC0s5RHIg4,5263
|
|
165
|
+
tapps_agents/cli/validators/__init__.py,sha256=BPBWBc7z2LGMMQketK9KYXEwmgj9v3DLTV_neRSb_GA,247
|
|
166
|
+
tapps_agents/cli/validators/command_validator.py,sha256=Nu4N25ty-ZAlrwABxMid0D6jCUDBB_wivkxH7g3OFTQ,3202
|
|
167
|
+
tapps_agents/context7/__init__.py,sha256=E--MKTrnQ-8DwuPIwePkjYOGrFicxPxAy11mRnnq36M,3088
|
|
168
|
+
tapps_agents/context7/agent_integration.py,sha256=ZsftKWn9Ou30KW8YOpTXXgQFoAWDRUbGpFGHm4oHz28,35351
|
|
169
|
+
tapps_agents/context7/analytics.py,sha256=3j-HLC3zTGuVyc5u6zxpJS8nRL6UQRDPeFPsnCqx18U,13207
|
|
170
|
+
tapps_agents/context7/analytics_dashboard.py,sha256=fAPj45470hNLvFY1x4XxuZaUersbyNXLd3ONv43zbRI,10112
|
|
171
|
+
tapps_agents/context7/async_cache.py,sha256=qgoLSQ_ouwxm3BMweGR_DrvkCcq2dMwvKGo4rBlBq5s,23300
|
|
172
|
+
tapps_agents/context7/backup_client.py,sha256=Ht948GeUvxcGaPAnBhiGrpSLyMNvUwRmfemHIJMKaX0,40520
|
|
173
|
+
tapps_agents/context7/cache_locking.py,sha256=tGMBB6ZRwB3V0jTgXvGDERKrwqOvoz5UT5BKzorx7Aw,6746
|
|
174
|
+
tapps_agents/context7/cache_metadata.py,sha256=Of7bKJ1fvxLNn6QxuyNGlHAkJ5R3A2owIDc26Ze6Ci0,6216
|
|
175
|
+
tapps_agents/context7/cache_prewarm.py,sha256=4YLzI5jNH3bZ7BZXQ9Qb_seZBnl-V5lc_50NCNAGDms,18287
|
|
176
|
+
tapps_agents/context7/cache_structure.py,sha256=UkF46HazhoFqCRIC9Nqz-txcARFDZVCKOFHgStiCArI,5420
|
|
177
|
+
tapps_agents/context7/cache_warming.py,sha256=fL056oRNo5SOQhvn3WbSDHm4NKLpKKMdVhs9mcOajmU,20659
|
|
178
|
+
tapps_agents/context7/circuit_breaker.py,sha256=D4ms-fariv_N03As1gLyMHtkA9_VziLIlyXFVX_EonI,13196
|
|
179
|
+
tapps_agents/context7/cleanup.py,sha256=07tFO6BZ3kYZWwtROA85qRHw1JurxXezB-I4hueRGNs,17336
|
|
180
|
+
tapps_agents/context7/commands.py,sha256=3c5GG8G_K91wEWM_nds0_Ad43lN4suJmSWk6FzcnBz4,30811
|
|
181
|
+
tapps_agents/context7/credential_validation.py,sha256=Pec8L1XXxgiZT1TfbzSwdMVcFCUV4NdtEpayVxO5UZI,9939
|
|
182
|
+
tapps_agents/context7/cross_reference_resolver.py,sha256=URtolCYKqucLBgO-_s-hB3h7OCC1Y938ejFotjoacxc,5520
|
|
183
|
+
tapps_agents/context7/cross_references.py,sha256=SLpdgavy1GIf1QgGvxbIkVqKVVp2vgNloPiR9Dp0Qio,13973
|
|
184
|
+
tapps_agents/context7/doc_manager.py,sha256=l3WDaLLmPE6E2bvAn6O07qoe5HPQFXMrpPz7vCnmCLI,7210
|
|
185
|
+
tapps_agents/context7/fuzzy_matcher.py,sha256=b5QdEogaCOWoHffGCxcTTtWbEgvFLvqZKpRmbVB0q-w,12009
|
|
186
|
+
tapps_agents/context7/kb_cache.py,sha256=slg3WwljaX33idbdzudidMu7UcFSp4tQZKdxIPVhqMY,15244
|
|
187
|
+
tapps_agents/context7/language_detector.py,sha256=aw-rmeLZmHRzbIAgT_jQo-L5YCGcFYCWCAFeiWil9iA,6988
|
|
188
|
+
tapps_agents/context7/library_detector.py,sha256=iCTsuMN6HrJXQGjrFM1tIFjZY6_R7c6obal6myDvnrc,26134
|
|
189
|
+
tapps_agents/context7/lookup.py,sha256=b2ri_aLbDPrXqyoOTIXnQFpbq89fLXGnDH0ATvAuwAk,33522
|
|
190
|
+
tapps_agents/context7/metadata.py,sha256=xBCMWfGXmFdHBeSFKj3x-QLyqK7LCfTVdEVZ2rJRz-E,8133
|
|
191
|
+
tapps_agents/context7/refresh_queue.py,sha256=Lxrghpyer0YEFqaZz-Uh9IgQabWV7HRMwuvNnX31XHg,9515
|
|
192
|
+
tapps_agents/context7/security.py,sha256=8UgEkaETVcRuJHMZCASl0AjX0OcDjf4TwbK_xfX64fE,11461
|
|
193
|
+
tapps_agents/context7/staleness_policies.py,sha256=8-qitI7CN8qOGvlMWxqvILpckLa5CWuSpF37vGpcRNY,9385
|
|
194
|
+
tapps_agents/context7/tiles_integration.py,sha256=vMX5Ni-bK8_S4kfIz1vquvWlmOLHmPGVDjRxyHBlRjA,1148
|
|
195
|
+
tapps_agents/continuous_bug_fix/__init__.py,sha256=TpYZ20me3VxNxKmP3MLiztLXFAL0j-QJ3RaDenw-afY,487
|
|
196
|
+
tapps_agents/continuous_bug_fix/bug_finder.py,sha256=RNew3jhAz6HlEGiduH6fLyi_mrVl1OEHYMTYGbSTI0U,9845
|
|
197
|
+
tapps_agents/continuous_bug_fix/bug_fix_coordinator.py,sha256=qqKYZF_vUtp4zYewwq-TTyqjhaQcrF_qhVioNEjFCVE,6303
|
|
198
|
+
tapps_agents/continuous_bug_fix/commit_manager.py,sha256=D0OpeoOvTGCotA-8-QHgnMfcVsbiejMrRyaw8JZmL8k,5431
|
|
199
|
+
tapps_agents/continuous_bug_fix/continuous_bug_fixer.py,sha256=HZnZLGkQqziDW9DHeMPQ7KV-kxSPyc7kiAl5wXTDw2U,11475
|
|
200
|
+
tapps_agents/continuous_bug_fix/proactive_bug_finder.py,sha256=TzSFL_934TjXtca43WHJYJFTkUbVb_4IsfMzvki9tjA,9567
|
|
201
|
+
tapps_agents/core/__init__.py,sha256=2rcfzPEwOSQJ_ef_wI-f4efTE2pkXhtolg_6klonShs,7714
|
|
202
|
+
tapps_agents/core/adaptive_cache_config.py,sha256=pA3Y021BfP2WLjSQJSB2HF6j6EbZNuCvlvVq9_soyTg,17380
|
|
203
|
+
tapps_agents/core/adaptive_scoring.py,sha256=gJnjyqwtZ7634paaOJmCVMBLMHrPQw5088MalqOFP5M,9882
|
|
204
|
+
tapps_agents/core/agent_base.py,sha256=WioCIQIpOn2WMNqtzPXqb70Kp9YgSnb9aVRmTFDr4Zo,23799
|
|
205
|
+
tapps_agents/core/agent_cache.py,sha256=WhuAGIA_G5GG7PZOShOj2F2g3o4EN0TpudLKBbUT7G8,15361
|
|
206
|
+
tapps_agents/core/agent_learning.py,sha256=ySWebr43iedn-eW-8hiYrapDDslzJQvHFCW0VIFX2xQ,68345
|
|
207
|
+
tapps_agents/core/analytics_dashboard.py,sha256=WgXvEdkQpz5kbZJE65uKMlq18rmE8UmZLqmDWKGcn3w,19468
|
|
208
|
+
tapps_agents/core/analytics_enhancements.py,sha256=oCcceyKgwCiiKeUIs-ncfJ__8b6CEPo81_z9ovcNqUk,22169
|
|
209
|
+
tapps_agents/core/anonymization.py,sha256=DI4oYqfBBouNBBPRik_u2X_EWGCr3dD6eN-pnDcH4K8,8435
|
|
210
|
+
tapps_agents/core/artifact_context_builder.py,sha256=aHyA0RX4ONroUOSJAGLwC8PHPJGm8OG_rLKHbAkUsPs,11050
|
|
211
|
+
tapps_agents/core/ast_parser.py,sha256=S1-eiAxkurHci5hIAyWXKh-rPMX7X4IpBjKMdWA3eTc,6910
|
|
212
|
+
tapps_agents/core/async_file_ops.py,sha256=ZOEX0a2tUkLB8e6zGOGki37ObaoSfbLILNzcjfINT3g,12239
|
|
213
|
+
tapps_agents/core/best_practice_consultant.py,sha256=QIXfwwWwU7a15W8oYgeY89VaaUn6Nf71EOosT816r_k,9859
|
|
214
|
+
tapps_agents/core/brownfield_analyzer.py,sha256=GpON5bahAOVgVA6JCHptrpCepN5SG3CA1aVSpA5UFzI,10237
|
|
215
|
+
tapps_agents/core/brownfield_review.py,sha256=Q6uMPaiOwY_BrJzHra-IvK5TL1jLhAzu3GEwRSLjHMk,21725
|
|
216
|
+
tapps_agents/core/browser_controller.py,sha256=2cGcKJO8xeo9hNoe5ICrVRNRqGNjb7Y-qCJpMebSk44,16026
|
|
217
|
+
tapps_agents/core/cache_router.py,sha256=jnUt7W-ElxhhfSUhHS4oSrh_AljOX_S_vmMacWn77B0,11936
|
|
218
|
+
tapps_agents/core/capability_registry.py,sha256=5nJDJl8Aca7gxBbou3Qux-jf4td81qjTQDFCdG7gp1E,13739
|
|
219
|
+
tapps_agents/core/change_impact_analyzer.py,sha256=T3lzLJpW8xstRz8z05oYvWXoRkVnR2ocDDpnvw3eTBo,7606
|
|
220
|
+
tapps_agents/core/checkpoint_manager.py,sha256=SBV3CrowlNE6GYiB0fy37SrH9rmv9PCWTFUW9t_g8Yo,11925
|
|
221
|
+
tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm76yQ,19356
|
|
222
|
+
tapps_agents/core/code_generator.py,sha256=Oa-x22rocqhRXQ26yBHXYpvBYcT6OKV5mCKj2893g8I,9552
|
|
223
|
+
tapps_agents/core/code_validator.py,sha256=0MQw4fOgJsr0E1vClxGwHAdSC1v4bUuwx8m9MY_mrjk,8677
|
|
224
|
+
tapps_agents/core/command_registry.py,sha256=D2mmW61n-uyQJp4EaP9Rs8C4PBOWDhqVInDT10d_zho,9865
|
|
225
|
+
tapps_agents/core/config.py,sha256=oTajM4l_MDzXBxwFxR-45UMHtVDUxCgaxSvoEvnKM_E,57505
|
|
226
|
+
tapps_agents/core/context_manager.py,sha256=nVafrqc2MuGAnX2peFaWcivwsQNHxjI2407oyfJbMio,7944
|
|
227
|
+
tapps_agents/core/cursor_feedback_monitor.py,sha256=-O2g1mm5zjqODIc9fSdVlgNKluQhMwgWNLQU3yjqslc,4927
|
|
228
|
+
tapps_agents/core/cursor_verification.py,sha256=i65L0ggJDP35rJOg4oZL9417jWeeAJhh3qTru2rHd_U,9615
|
|
229
|
+
tapps_agents/core/customization_loader.py,sha256=cSs6dLN_dxfdnfUBSb2sVicVDJUDriiOMo3RMsaBfC8,8443
|
|
230
|
+
tapps_agents/core/customization_schema.py,sha256=5Gp2lmpZEKg98GQdZSblOFbPc3sSSf8wU5ECbGj9umw,9813
|
|
231
|
+
tapps_agents/core/customization_template.py,sha256=y9Tm_RHp-rEORc6rLntAICBPDg0FLcLf9NpFi-h0fkY,7003
|
|
232
|
+
tapps_agents/core/debug_logger.py,sha256=ls-kUi_tdxvlrbBjShkxVRiLY6FNNTB1IQLQBoiEuYo,3963
|
|
233
|
+
tapps_agents/core/design_validator.py,sha256=Jy6z2Gcv62zW2s2Id9UO_zM5pkDs3NftGwkwzMITNMs,12462
|
|
234
|
+
tapps_agents/core/diagram_generator.py,sha256=d0zkiP42CenXPinfJYI6oJyiPGVzRlpoHcwprzoox2w,7854
|
|
235
|
+
tapps_agents/core/docker_utils.py,sha256=z-WMwPfbeTAIVQsbqCmzGUALXGp22-ly49uZ6j0Qt7o,7192
|
|
236
|
+
tapps_agents/core/doctor.py,sha256=B1-tOycr0g6C3oqCsaselgPRd-1-S1lYyK_SNjXdKg0,46619
|
|
237
|
+
tapps_agents/core/document_generator.py,sha256=EwLWAKhzWso56LzXm_yfaST-tEj8alDwi7VOYsOCosE,14855
|
|
238
|
+
tapps_agents/core/domain_detector.py,sha256=IIf15L2jM7RhqIY7osW72jJYFdl2b7b38OX_2H2Z5wA,1078
|
|
239
|
+
tapps_agents/core/error_envelope.py,sha256=EgAFR_3jNT5OKcXht5_Um_7BdDapHPM8mRGaHqROPAw,16224
|
|
240
|
+
tapps_agents/core/error_handler.py,sha256=SPVujz5bnZ4hSfvkt5A6A0W2v6KdHgKAbynKY0fFJKk,8392
|
|
241
|
+
tapps_agents/core/estimation_tracker.py,sha256=pznKManNPdnKkHanMok4jggM_dA06K43sewVJe52l5M,6775
|
|
242
|
+
tapps_agents/core/eval_prompt_engine.py,sha256=MhoyrFmelQfVfkycSHcZbpVepDaMS_dGKYR4i7GjZlg,3776
|
|
243
|
+
tapps_agents/core/evaluation_base.py,sha256=x0OnptXj4C1Ygo13_8qJNKPRAMQklKdTvgv3VxZ5Qus,2988
|
|
244
|
+
tapps_agents/core/evaluation_models.py,sha256=W1u89mVKooI4iHwd3OeHAAu-cdYJqwxTwjbq7YM5WMg,10565
|
|
245
|
+
tapps_agents/core/evaluation_orchestrator.py,sha256=L-oxfjj9FB6Hu-iG_o3ea7TEd1UCt493IK31ESo7tAY,7633
|
|
246
|
+
tapps_agents/core/exceptions.py,sha256=j1lJ_7_0pCvgLhcW_-2YuOlr6skAw8B3HeyxGnf0G7E,1898
|
|
247
|
+
tapps_agents/core/expert_config_generator.py,sha256=JAmOAX0Q5bDYRbdlGmEHqwV4KUPWKTMiMqyGnxLw1-8,9780
|
|
248
|
+
tapps_agents/core/export_schema.py,sha256=yk-_It3gnvHzBaMbowpRdEoXHYxQ429Z04pYJ8vs7bw,6189
|
|
249
|
+
tapps_agents/core/external_feedback_models.py,sha256=jw4_arEQwem9QKnsistpHyo9mXeYMBI3p_XxRfZsVc4,4130
|
|
250
|
+
tapps_agents/core/external_feedback_storage.py,sha256=Fln-79arSJKNnMveH0yJi5LYFvtPCuSfr9lBUNXD0vw,6980
|
|
251
|
+
tapps_agents/core/fallback_strategy.py,sha256=1HWLqqvBnB4xdX8DT1WJFqfQtTr0T_MjUelolF--IkM,10300
|
|
252
|
+
tapps_agents/core/feedback_analyzer.py,sha256=9gmhaVUKHyDbXJ-aYpIXmEgABXbvtABGWNxYKHwytYQ,5514
|
|
253
|
+
tapps_agents/core/feedback_collector.py,sha256=cSi_O4p9nfOhAkQHq8e8YyZmQW6AhKoGpzxs8zCChWw,6040
|
|
254
|
+
tapps_agents/core/git_operations.py,sha256=VRAf0GHTLtnTI9kOiFt_DWjDGxvnthyNXRNiaznJaGo,13827
|
|
255
|
+
tapps_agents/core/hardware_profiler.py,sha256=JF2gcSSjBBlLpxgI3qNa4jaIEWbpkqHlcXf2ZuSWA_A,4161
|
|
256
|
+
tapps_agents/core/init_project.py,sha256=1VlaJlFcrxLPWm6DKYnJMXfYOUdPaSxQM6O5Ja-8Rmc,118099
|
|
257
|
+
tapps_agents/core/instructions.py,sha256=-juI6HRYd_7-kVxMGsV8EnUJ0EyQXQc7v0MHoTl9hBU,12720
|
|
258
|
+
tapps_agents/core/io_guardrails.py,sha256=kR5DcOD2Kv5-V8BR000UY7uXv8VEPVbgU-Clm8BCY6U,2137
|
|
259
|
+
tapps_agents/core/issue_manifest.py,sha256=_5RLCUY0UHzsnnLIcLiV_o4e2VnXeW9-QvzSjoukcOg,9771
|
|
260
|
+
tapps_agents/core/issue_schema.py,sha256=2ZQsofc2KbYRDvUdBSE_kSHVAi-7YJaXeA6pEvyHX2c,3958
|
|
261
|
+
tapps_agents/core/iteration_reducer.py,sha256=XvTGwJGNPtnCd4Th--TGEh2m7dhvJ5ulVhkvQNBHzUQ,6945
|
|
262
|
+
tapps_agents/core/json_utils.py,sha256=XW4HjaQ3cXQMtp3BHO31V1W3UvoJOywS70Vgbh6CXa0,4569
|
|
263
|
+
tapps_agents/core/knowledge_graph.py,sha256=AwlA2SNg4OJWQUGEYBnANPt1g0Wrk_ubSDZ79KVEins,13167
|
|
264
|
+
tapps_agents/core/language_detector.py,sha256=-FgUKBuGE9tDkJ75k4AgFoFRTzx0UNZsBB9gbjhum9k,10580
|
|
265
|
+
tapps_agents/core/learning_confidence.py,sha256=cOKQOxAlln0aAQHaR8Ml8VyPOYblLKZaoCQcJ558Dfk,8799
|
|
266
|
+
tapps_agents/core/learning_dashboard.py,sha256=YCKFibQGWhSauWEm5d2JdJgy1wzW47e6JRXaeZyzVJ0,8519
|
|
267
|
+
tapps_agents/core/learning_decision.py,sha256=Q-785WRWoknullRBM6n9gMk9UNXiHrAv4cR6_YmJaKk,13705
|
|
268
|
+
tapps_agents/core/learning_explainability.py,sha256=D-UrtL3spaWHv-zufqNnSYJmGHb6AhJs3PDZiavNCNk,18248
|
|
269
|
+
tapps_agents/core/learning_export.py,sha256=7SKPm5dJFtZcX-rz4Tav5rS4O5caW-6jf6sMOT_uRtU,9739
|
|
270
|
+
tapps_agents/core/learning_integration.py,sha256=3HbxoPh96vS9p2SMSrkpgasbfFKWhbe_ZSm2i3PLm-g,7075
|
|
271
|
+
tapps_agents/core/llm_behavior.py,sha256=HoZz9gBDus8i6ERX2g0ozyKaFOj4YzjWMnR8ehfXP38,7910
|
|
272
|
+
tapps_agents/core/llm_communicator.py,sha256=WuIuM5bDButBV208-DZlxzSHC5fkO8b1ITiWFbftPus,6066
|
|
273
|
+
tapps_agents/core/long_duration_support.py,sha256=cqb5rMabvz8sp6zNrHLjZBB5yKY3KPQKbJQCHibcuhU,25880
|
|
274
|
+
tapps_agents/core/mcp_setup.py,sha256=vohTeMlV440DrohWVEv7IFIelfYWIMe6opC46sidBX0,4114
|
|
275
|
+
tapps_agents/core/memory_integration.py,sha256=p9XNnP-R7MbuyKzD7BKndAIanIY6LXt3xQMd0PPw0Zc,11738
|
|
276
|
+
tapps_agents/core/meta_learning.py,sha256=wGTQsfHk9_t0_2VXGbiQr3AyW9ptEYKSnmSBLCC4Sl8,21199
|
|
277
|
+
tapps_agents/core/module_path_sanitizer.py,sha256=h4G9Bw9vAz40FHAH2vni5dovciFtRnJmylF0CobXGg4,7006
|
|
278
|
+
tapps_agents/core/multi_agent_orchestrator.py,sha256=cX9fOGL84m9Vcwl-7Z28OlxNW2xwzDhXeasdnvnE_40,13219
|
|
279
|
+
tapps_agents/core/network_errors.py,sha256=QUq6UZdR9KVRUjWa8EdtPIWTEv0qiwZaqz5pDCWgpnI,4074
|
|
280
|
+
tapps_agents/core/nfr_validator.py,sha256=-ybg7BtDHF114u8MsW266aVpIT7kqEbYlmAp7VYCXa0,13018
|
|
281
|
+
tapps_agents/core/offline_mode.py,sha256=2b27ttrkK6gYumXyOP8LRFTS-fqQmUD9KbA8rf80nr4,5275
|
|
282
|
+
tapps_agents/core/outcome_tracker.py,sha256=9FvGCgmkHt00HKDTGgFnh4UdEUx_JeJYtlVTMwvXKwA,9037
|
|
283
|
+
tapps_agents/core/output_contracts.py,sha256=7koiIKQy94J_Kj1BcJRm-eFusu8sxTI8FlnIyTY3wvU,9796
|
|
284
|
+
tapps_agents/core/output_formatter.py,sha256=9oKCy-qTmdHG-9Gw6x3DtGUW0CCDZN6Id2uhq2wXki0,9446
|
|
285
|
+
tapps_agents/core/path_normalizer.py,sha256=6WWAtYruRE0FVojNBBgONQWaPaE6cRIz3hQfmOgoAKo,5899
|
|
286
|
+
tapps_agents/core/path_validator.py,sha256=JcvUx6_Ss2IEBy651TxHvDW7wAz5KN4L3rtJC-QAF8U,10407
|
|
287
|
+
tapps_agents/core/pattern_library.py,sha256=Z9VxmrEe2QIqhA_IWYQViy_Iwe5lNljNMPtXIWLIC1Q,10682
|
|
288
|
+
tapps_agents/core/performance_benchmark.py,sha256=ChSqVkwHGVrH-pSnUzpcvk27IXDMpArvZSp511meZg0,9266
|
|
289
|
+
tapps_agents/core/performance_monitor.py,sha256=HAK4xTVq_jEONrHd2N2Gy4tFL0dBZoEGPV-VgLxXUFo,6000
|
|
290
|
+
tapps_agents/core/playwright_mcp_controller.py,sha256=xQhmQEH1lYqfJ8LDsS9ajlWOqKNR5HVqpsh2KLX4_FU,27108
|
|
291
|
+
tapps_agents/core/policy_loader.py,sha256=BZXGVtTs5HL0RepqN8Xk86ZuB6p7nMLK2yMNLyyzpvQ,4206
|
|
292
|
+
tapps_agents/core/predictive_gates.py,sha256=7XNx4-l8EwxmqhxxyFyDjPCgl6e7WWoOmNxky3acbT8,5154
|
|
293
|
+
tapps_agents/core/progress.py,sha256=KeLGlsREevQoQXI7tWRwSaq3Yw54ybF9H1A_L1Ft__4,4792
|
|
294
|
+
tapps_agents/core/project_profile.py,sha256=_4UsCzQW0B6X6_DtqJPQZfYt3KHi6OHDeCybntpYK78,12355
|
|
295
|
+
tapps_agents/core/project_type_detector.py,sha256=AhGRDtC5H0Fob484u8t1LKNJiOYqmoE3uHbSjcyBfDs,14842
|
|
296
|
+
tapps_agents/core/prompt_base.py,sha256=JXwlhlyQ0WM1qFCM3J89-aN52JuR2WZk20yZpyhtjW8,6805
|
|
297
|
+
tapps_agents/core/prompt_quality.py,sha256=DCbrh4ro2msRBd9AksDLy5yCLyW5q4RFanijSpx9BYU,8357
|
|
298
|
+
tapps_agents/core/requirements_evaluator.py,sha256=uOYErQCKuaBKUZxUe_ngGkPTQq7oY-V-EBRzXH_aDM0,14964
|
|
299
|
+
tapps_agents/core/resource_aware_executor.py,sha256=dOI1chbm0Kt5jAfiCAAC3k8oXmEaaZjnEw6vFqNXT30,15600
|
|
300
|
+
tapps_agents/core/resource_monitor.py,sha256=UIqemTISHkkSKvcfFr5siGjybsT7tfwvnW5UKxQzM2g,10884
|
|
301
|
+
tapps_agents/core/resume_handler.py,sha256=DadSlJUwAQ2ac2CiTDgEjg7GQk7FMvUq9FutmDUAvNQ,9555
|
|
302
|
+
tapps_agents/core/retry_handler.py,sha256=c7CieKufH_Ul41EF8Cx-tZWq-XfHAp83dLivHuMLPkQ,7138
|
|
303
|
+
tapps_agents/core/review_checklists.py,sha256=fzEJTIIBuUIRMq2cJ8wWqnbMXrZWP1ebu1eCIUSH2X0,24636
|
|
304
|
+
tapps_agents/core/role_loader.py,sha256=AMlM_VNBmYJ-hSo4Ue6OhcpBWaOpjFDchayUo8sdWPs,5706
|
|
305
|
+
tapps_agents/core/role_template_loader.py,sha256=oxwjUr7oLEgB8qgO34N8fZHCx0U680WDOFoSTLS_g7w,6585
|
|
306
|
+
tapps_agents/core/runtime_mode.py,sha256=5o1cljbJD1diNt4VIqUXbrRMBfTtSiE5MUnh2Oc8XJY,1573
|
|
307
|
+
tapps_agents/core/security_scanner.py,sha256=BQJKjx9nlq_SSQJJg2m0By9PWVHOU6SB3_4asmQ_25E,11521
|
|
308
|
+
tapps_agents/core/session_manager.py,sha256=hWJd4t-iguHdfyyxUdeDUtMyOTmblkJo6z-BPm2TMC8,18830
|
|
309
|
+
tapps_agents/core/skill_agent_registry.py,sha256=2LX65K1Mfv8HFQteFRAWYM44xW-OaKXstjqMFebK8AU,7173
|
|
310
|
+
tapps_agents/core/skill_integration.py,sha256=cwhGE_cqP6DG3LJ3DR2nwaCv7OwFJMo3m5aDb0f0dNs,6884
|
|
311
|
+
tapps_agents/core/skill_loader.py,sha256=ACS42zwAMoMYq0wFuuXQP23ShO3vsnta6HCMRpG78NQ,15801
|
|
312
|
+
tapps_agents/core/skill_template.py,sha256=JqdYjCS43YOeN4zuHiF2xeoyCCtpgvsfIyXra7N0c9c,11484
|
|
313
|
+
tapps_agents/core/skill_validator.py,sha256=H0U-DqoQoDSNdqYpU6SOxGYo3JHGocMvuhK3qRcsCOM,16717
|
|
314
|
+
tapps_agents/core/stack_analyzer.py,sha256=k7JeK0FxdNPHPsaYtbPPhZWF3fqZHkMC9YnFNkOqGQI,978
|
|
315
|
+
tapps_agents/core/startup.py,sha256=iNj4pSwstKmSzuAuKGkB86D8vftx6VRfxRdLaXihcVs,5646
|
|
316
|
+
tapps_agents/core/storage_manager.py,sha256=0i4BhCAO_d2_DX9SpUrkwUOkLpb7IMzowcEqtavMcUo,13411
|
|
317
|
+
tapps_agents/core/storage_models.py,sha256=VMKVWJvf-8Od8IQpEgOWhePJ6ZyJOhqR2Wi5Jf4gy74,5060
|
|
318
|
+
tapps_agents/core/story_evaluator.py,sha256=kAwLYQuwVv1o3nmjmHxONJ3XhiEWpXYxc3ofCQY4xNg,14307
|
|
319
|
+
tapps_agents/core/subprocess_utils.py,sha256=yhfS_xjCnd8dK-pjI5AtKojWZFrPA5cXfKAdeIFi7WY,5234
|
|
320
|
+
tapps_agents/core/task_duration.py,sha256=hQwRk2iYzBRXA8YhwJI-c0pjyoQLGwDOb0-QF-V9_ZU,9608
|
|
321
|
+
tapps_agents/core/task_memory.py,sha256=rONoO7HHbQRTeO4P88RE0tCOL-z4tUWmsdsYVbVhcg4,17572
|
|
322
|
+
tapps_agents/core/task_state.py,sha256=WVXUHH0p6I8XQmrT70szL8z8Tr2p_b5qvDFGnWsV0lI,6557
|
|
323
|
+
tapps_agents/core/tech_stack_priorities.py,sha256=dvlQEm5L8xey5bzjmQGYtZIHlCdrfe188dOZ0ewgYzg,6854
|
|
324
|
+
tapps_agents/core/temp_directory.py,sha256=888VstsASpErP5no_mVgCKjYLvL3DlVWkReRsb38AAA,5511
|
|
325
|
+
tapps_agents/core/template_merger.py,sha256=zCdfZuoUAAipVlvgSVajWotdKdJPYMXGwCIoQBoT81c,20112
|
|
326
|
+
tapps_agents/core/template_selector.py,sha256=yIskTeX9MMDGjPc05Ay-9RAMMnsZ3AN4h3Pjd4f8SXg,9737
|
|
327
|
+
tapps_agents/core/test_generator.py,sha256=FWSVPCnfWca2eNp23dSeuFPjUKY-uHJHm0yW0MCi5SE,9546
|
|
328
|
+
tapps_agents/core/tiered_context.py,sha256=IzwV5gfLddVexx4RIfWMuXPbn2w2sOkDmERPRHSnUuo,8433
|
|
329
|
+
tapps_agents/core/token_monitor.py,sha256=iLED14FIyWbn0DQ6kZvsAAudNc5zpzuGsWLrJ7J9Fys,10736
|
|
330
|
+
tapps_agents/core/traceability.py,sha256=3CO_scS-ySDqyq4JND2lC7h3tfiIk6mAmA1USRGpreA,10141
|
|
331
|
+
tapps_agents/core/trajectory_tracker.py,sha256=qzYda8ZxoLor7a8fJIXSItGYkwjGP74PRdqa2fwIGFU,1429
|
|
332
|
+
tapps_agents/core/unicode_safe.py,sha256=6SOMlARDxebNVIrJdIoSTZcUNfcyg70FSSpNWacDrBI,4124
|
|
333
|
+
tapps_agents/core/unified_cache.py,sha256=sQJXig3nM0cQiyBrOS0xEN-tix846HwZ84zXX4kjwi8,13677
|
|
334
|
+
tapps_agents/core/unified_cache_config.py,sha256=V3MuSXTiCILa4K_RiH1Eh9qe5ejkV7rLa6Bnl89GTAY,5794
|
|
335
|
+
tapps_agents/core/unified_state.py,sha256=xylBL17ViavM6CuGRz-S8TgDmTNL8WQguBnJGyhmCC4,10158
|
|
336
|
+
tapps_agents/core/validate_cursor_setup.py,sha256=pZtiJbG-0gjPPiunA5mT0QZEHxe4_LpFiN7K1Y3iMvk,8232
|
|
337
|
+
tapps_agents/core/validation_registry.py,sha256=VeLDoVoPvfPcKZymG8wTT4of-uLx9tpx_1daKJUUKg8,4329
|
|
338
|
+
tapps_agents/core/verification_agent.py,sha256=hROCTVNgSC3SHuYqyyrr1yAFceALLQQhL93JLigemxk,3347
|
|
339
|
+
tapps_agents/core/visual_feedback.py,sha256=qN0qkXXju88hgJQ4mfpQJEzbCS_8FB4ncMyTK4DEgdU,22577
|
|
340
|
+
tapps_agents/core/workflow_validator.py,sha256=YDY6DRrTkm7lqrjR4GEfkFB_28R5QlywX9YV_5YsM0o,7319
|
|
341
|
+
tapps_agents/core/worktree.py,sha256=s6xuwuYst4mqW2pmFb9FWLkPPFS0Tz-RJLeMAJBjJGA,13320
|
|
342
|
+
tapps_agents/core/context_gathering/__init__.py,sha256=HWGtWdWBcWpq7rlSAJvF_ft9Qc1vBuHStB7oxHDDDjM,61
|
|
343
|
+
tapps_agents/core/context_gathering/repository_explorer.py,sha256=5T9W04TjTyKGK2qgHTWNv4HuGm_TGLLeCXDexn-kBeM,744
|
|
344
|
+
tapps_agents/core/context_intelligence/__init__.py,sha256=gTcS8nZPdfyYMpf4R8eIqLdrePAdc2AfjrMqbtHiwjw,60
|
|
345
|
+
tapps_agents/core/context_intelligence/relevance_scorer.py,sha256=Bemz6bhFLQmGwLrZ2vgPUxGx7hVQyd_V8WXIHWJQ8Oc,668
|
|
346
|
+
tapps_agents/core/context_intelligence/token_budget_manager.py,sha256=oz75z372rkn1AFDr-8WQvE56DZ1xZ97_MLqaTfWsZSM,655
|
|
347
|
+
tapps_agents/core/evaluators/__init__.py,sha256=Vhkgk7_2r7NO5dGBs2M7EAYHWlBCIDl4W2GjQaE3iT8,215
|
|
348
|
+
tapps_agents/core/evaluators/architectural_evaluator.py,sha256=AV1i7BZinxr6zsZeu3eNiXAMO64sWY4Bccx9iXwJnLY,8173
|
|
349
|
+
tapps_agents/core/evaluators/behavioral_evaluator.py,sha256=y1TKIzfgUn9yIPEbe6b4eccIL4J6zYHoncnRWEXMXXQ,6132
|
|
350
|
+
tapps_agents/core/evaluators/performance_profile_evaluator.py,sha256=XvJoDbKvIxcmCL_8aX-cgKTI-2QaLJkS5_lPvrS6vdg,6580
|
|
351
|
+
tapps_agents/core/evaluators/security_posture_evaluator.py,sha256=rW4zeZ_ItEIMP_OJLVjQUZWUCl9hvVijUnAdaMzaS1Y,5949
|
|
352
|
+
tapps_agents/core/evaluators/spec_compliance_evaluator.py,sha256=_QB4K12J3d4au8sCopqFBTyg8nwX-kK-gI_CZQz1cuw,7509
|
|
353
|
+
tapps_agents/core/prompt_learning/__init__.py,sha256=l-ZMF2YPOBn_Bat4a8B3xIZvDifRN8EkLZ_c6iRJ8wE,61
|
|
354
|
+
tapps_agents/core/prompt_learning/learning_loop.py,sha256=oPLHXttRdl9DPr60xpP1puGx1FXFvwUMQXOghes0LzU,738
|
|
355
|
+
tapps_agents/core/prompt_learning/project_prompt_store.py,sha256=v6_Lflg_DgKHENsJZRTLlWOjkKLwl2YWNAOtb7BVJus,805
|
|
356
|
+
tapps_agents/core/prompt_learning/skills_prompt_analyzer.py,sha256=3u79Rdn2fwbQ4Zh1uE6knKjVK3ntoJHL4rJ2YYpOXm8,1098
|
|
357
|
+
tapps_agents/core/prompt_optimization/__init__.py,sha256=9ZR3fQz1MFljLDRWlXs68k8mPN1uc-lHg6vsPtoMSmo,143
|
|
358
|
+
tapps_agents/core/prompt_optimization/ab_tester.py,sha256=UQ79tVTqFeLSjAoa5uA37pspqx4Tor1dr2KC_jkxNqI,3511
|
|
359
|
+
tapps_agents/core/prompt_optimization/correlation_analyzer.py,sha256=AD1-JxWIVbRicS8h99QJrOltWPpq13oWOMdFTFGf18k,5436
|
|
360
|
+
tapps_agents/core/prompt_optimization/progressive_refiner.py,sha256=qMafsIfB9srO0ny9zgj1E8cEwcv9IkWiSUGfNKzocrs,4628
|
|
361
|
+
tapps_agents/core/prompt_optimization/prompt_library.py,sha256=pXtMg5eM6_W3IaGh0qoLA2DH5FrI8qpmyZR4MX6KVLE,748
|
|
362
|
+
tapps_agents/core/validators/__init__.py,sha256=Trq12H6uqUqy2FssCkfFro_NXRDZs1Slq4wUucNF2Xc,63
|
|
363
|
+
tapps_agents/core/validators/python_validator.py,sha256=4M9AQOBR5-GCERvFGWgiXbJpy2Gyt3-YW9bZ_lm5lco,3160
|
|
364
|
+
tapps_agents/docker/__init__.py,sha256=h4d-ctxP6Ezr1-QPOBXkw1Du0QfY1DueHGtfPBOlt-k,267
|
|
365
|
+
tapps_agents/docker/analyzer.py,sha256=SA-pFO95-zBQ-uKtw1YWREpPbmdQcCcPS4mfj_TOjCU,6433
|
|
366
|
+
tapps_agents/docker/debugger.py,sha256=-dZqYz4ve5bZZitR55U8qae2osC_RkHpFLo2zTa2uQk,8048
|
|
367
|
+
tapps_agents/docker/error_patterns.py,sha256=erSsFZZOhrIrFxoNXZZO5AsgZcaGdqhmChzLd12SIu4,6873
|
|
368
|
+
tapps_agents/epic/__init__.py,sha256=iidgJWnaKF-em99RfnWYQ_wbQtmMtAGX9evk35XPLeg,499
|
|
369
|
+
tapps_agents/epic/beads_sync.py,sha256=ivqTQXdm__MsJY-pKadLijlQIvNYKe3ILq0Ai7kpkTg,4188
|
|
370
|
+
tapps_agents/epic/markdown_sync.py,sha256=_DwwvQKuek-WrP3O70xm_8CauGbZ_fipEfaYTfNHsSI,3925
|
|
371
|
+
tapps_agents/epic/models.py,sha256=vLeB7Y-zSuwR2mXh66qy-IQf6ar04G0if2j-qNkIHmg,2919
|
|
372
|
+
tapps_agents/epic/orchestrator.py,sha256=Z1vplL7bb9y6kDTURpIFZr68SqQuacV3Dnmq4Lzxbuw,18795
|
|
373
|
+
tapps_agents/epic/parser.py,sha256=ymGUElnzzwU4__JJ2_wSE5_PWqJFVq2QXPr6jrdIWro,15244
|
|
374
|
+
tapps_agents/experts/__init__.py,sha256=gfgqTbL-Wgsg5GtQHh8mUW8R95tnZeyr-kE_2iIN-pE,4687
|
|
375
|
+
tapps_agents/experts/adaptive_domain_detector.py,sha256=hfIGsgM0lwfmlogyNboXiLQY9zvXg-4vC_8_F6OvZR4,12959
|
|
376
|
+
tapps_agents/experts/adaptive_voting.py,sha256=xHhUq62sjXquFn3_9Qd3I-kPpFbKbirjntMc4SLv4wg,9545
|
|
377
|
+
tapps_agents/experts/agent_integration.py,sha256=25iFBPfw8diCpLNCIbbfVo6byxH0lVyxmqZE-CH8InI,8630
|
|
378
|
+
tapps_agents/experts/auto_generator.py,sha256=2Bq-wWTs1YNW_3W4-L3Whk_tcaYqcWJUwnJO6hHsdmY,11368
|
|
379
|
+
tapps_agents/experts/base_expert.py,sha256=sS-XlG5Xohrw7n9haHfUwlhI0-frst2cXRCTY8ZxyV0,19696
|
|
380
|
+
tapps_agents/experts/builtin_registry.py,sha256=JrgtIF1ZIJirrxbVrpj1jE3npMPL6cN0I1JexVMSHMA,8941
|
|
381
|
+
tapps_agents/experts/business_metrics.py,sha256=ZL59VZCmbiY7VJd_5LvVFm691R4RJkRNzD2NX91WEPk,20309
|
|
382
|
+
tapps_agents/experts/cache.py,sha256=bRJXR0OqeW5ZRH1E2B9R_S4ebbO21kkq259nnOqczdo,8216
|
|
383
|
+
tapps_agents/experts/confidence_breakdown.py,sha256=6gUrYTmiByArndN0ZMbtRF3Et9dhKlLxqOssVJik5d4,11046
|
|
384
|
+
tapps_agents/experts/confidence_calculator.py,sha256=g7swjS8_o48oq0WLgbK-O_-ThXTurjpgYXYpUvx4Hk4,11683
|
|
385
|
+
tapps_agents/experts/confidence_metrics.py,sha256=7EiY_7vgS-ahOzrgCvlBzDkKCMYtrpL8nY7S8uIixFQ,7217
|
|
386
|
+
tapps_agents/experts/domain_config.py,sha256=SeNYfFJhQoo4HuBzYBHc7hFndclfE5JUorhFUrSra00,9549
|
|
387
|
+
tapps_agents/experts/domain_detector.py,sha256=dVSnaHQXxIUPb1FKqyuhcn_VB87v2Ld5Xk-uS248D4I,20495
|
|
388
|
+
tapps_agents/experts/domain_utils.py,sha256=fSVKNH_bWdrWhamXkDZZGvlictpQd6zbyYVzgWJXn-A,2903
|
|
389
|
+
tapps_agents/experts/expert_config.py,sha256=Bo6nuo8BxnZ84Av_zyAm5GNvScXKTP9Eqto8gDxPjCs,3490
|
|
390
|
+
tapps_agents/experts/expert_engine.py,sha256=IcvCqaGPSOBdxCXqgXjdQzSkgVAFBtyN8rpV8a2Tik4,16245
|
|
391
|
+
tapps_agents/experts/expert_registry.py,sha256=GxTQ9K-5lL8uDVrN9NiJB7o5bBhnjsHbD-3KkEOoyQI,28755
|
|
392
|
+
tapps_agents/experts/expert_suggester.py,sha256=xZ8J2XxyGEqFuLODwzEssTcC-Ph-7_4GrKP7jvlB3i8,9409
|
|
393
|
+
tapps_agents/experts/expert_synthesizer.py,sha256=PnsQ8Jezk2e3rS5Kmji0dUZL1CaafefDoTEBS37QPN8,2632
|
|
394
|
+
tapps_agents/experts/governance.py,sha256=H0BSVo7y5c7cZHROvhRlTs1cafOGXjtWhzMnsb4TrjY,6499
|
|
395
|
+
tapps_agents/experts/history_logger.py,sha256=V_44kgjfVObSu3Zd7lFwLQY_IEl1hhS4-hEyWQ6F4s0,9403
|
|
396
|
+
tapps_agents/experts/knowledge_enhancer.py,sha256=Douq6F4ioMW3wZL7hnXOMyJYamdpl8X4lFWEjZy80w0,8984
|
|
397
|
+
tapps_agents/experts/knowledge_freshness.py,sha256=bJ-cfdh2dbGGDpSpXLGFPaSAAf7NaVM5CD9_-JvjqzQ,10145
|
|
398
|
+
tapps_agents/experts/knowledge_ingestion.py,sha256=T_RC54iDJR7MaYED9SvtsQlat-Qy_vQDpGZkO2KiHJA,16927
|
|
399
|
+
tapps_agents/experts/knowledge_need_detector.py,sha256=P6o4AG-8f_taH7NRbZZN25iWcnol0HiMUoNzbEGr-z4,3362
|
|
400
|
+
tapps_agents/experts/knowledge_validator.py,sha256=5bszPOXOAAoyXck8v4lSBZT1bD_pYcd_zQaWTgdx4C4,12921
|
|
401
|
+
tapps_agents/experts/observability.py,sha256=uMuQ1t2UOAfU7WbrQ54s6fJPPNT3ssZsVtTePN6uKo4,13690
|
|
402
|
+
tapps_agents/experts/passive_notifier.py,sha256=h0o7oJhcJQ_5OaCBNVE47yVBF6l6fRKsxzDRZdYKRx8,7078
|
|
403
|
+
tapps_agents/experts/performance_tracker.py,sha256=vMzK_zC02JQqltLMftgL17L_lJOQk9G2D80dIGinuDM,9027
|
|
404
|
+
tapps_agents/experts/proactive_orchestrator.py,sha256=8mJL12GRB3hq4kJE4pEalHjQjQkafPGD1rbVkIrZY94,994
|
|
405
|
+
tapps_agents/experts/rag_chunker.py,sha256=lWH4qLbQBpvTgxBH4d3J6bSKASMcRoWijaGylcoZOVc,6487
|
|
406
|
+
tapps_agents/experts/rag_embedder.py,sha256=5GIOY599xzre-Vqus9dhUKeubY4g_o3_Udr1AaaJIf0,4468
|
|
407
|
+
tapps_agents/experts/rag_evaluation.py,sha256=Df3p262bnqtZOziMQoSv9-LzfRzwWsS7Dm7jrRZvjQM,10516
|
|
408
|
+
tapps_agents/experts/rag_index.py,sha256=uaOXDRqlpZKJwnrE0aSAsNdDHn7Yg75cz0zpkVXQnhY,9899
|
|
409
|
+
tapps_agents/experts/rag_metrics.py,sha256=ZCLTZYO80261ONcw0wFD8ewUo2duDJnApsf_5N8uwSQ,9316
|
|
410
|
+
tapps_agents/experts/rag_safety.py,sha256=sl4xRI7t9j1bIuyru4aEPuh5I2J0MXJedmTz6WlxmuE,8195
|
|
411
|
+
tapps_agents/experts/report_generator.py,sha256=BFajKQw81ytGTjxyXAty9OePMmXtOh4_w8nRmOeqTNE,11309
|
|
412
|
+
tapps_agents/experts/setup_wizard.py,sha256=Rg3f9CwxpEXC7fGfPz637yucz2VZTIHlb8uSNovdzxc,15568
|
|
413
|
+
tapps_agents/experts/simple_rag.py,sha256=wiclpbgVQ7fy74TadKSIMDJD7p3ElFBVwM4TTTpnPaQ,15596
|
|
414
|
+
tapps_agents/experts/vector_rag.py,sha256=Wngaqigw1M9MmE4eyYngY8nzKKlMzzxNR4qNHnxCGrs,12816
|
|
415
|
+
tapps_agents/experts/weight_distributor.py,sha256=_-1HhEf9PeEi7bRhVU8RAK9h1vhBVDRsOEGa1WedXvA,10721
|
|
416
|
+
tapps_agents/experts/knowledge/README.md,sha256=JXGkIifZnt963PI_XiwkCTJ_kJWIiKqwncZHK6Aii2w,6928
|
|
417
|
+
tapps_agents/experts/knowledge/accessibility/accessible-forms.md,sha256=IH4Q-pXzmyObGO2E22elfmXpQchKiuaQdP6bGkgPDu8,7339
|
|
418
|
+
tapps_agents/experts/knowledge/accessibility/aria-patterns.md,sha256=L99ETS-SsgDhtRL4yK9V1lPYj7CLFBghfreO5oVssnc,8354
|
|
419
|
+
tapps_agents/experts/knowledge/accessibility/color-contrast.md,sha256=mBATTLuRSLichf07cHgfAdFnWDPCMB5tLi_JjJqimj0,6173
|
|
420
|
+
tapps_agents/experts/knowledge/accessibility/keyboard-navigation.md,sha256=H-VQqe-1vb_6zi22YgDi3KsnzBnNAbPKrYGbw4sPPvA,7095
|
|
421
|
+
tapps_agents/experts/knowledge/accessibility/screen-readers.md,sha256=tUMDr51yteQl-VkKrn_jY7PVyiEoB4oJe1GsXEpEiDw,6673
|
|
422
|
+
tapps_agents/experts/knowledge/accessibility/semantic-html.md,sha256=0CwIgtMy7XuAGSUyPsfnK6O_-zKKxpfWN3FQQKcouu8,6978
|
|
423
|
+
tapps_agents/experts/knowledge/accessibility/testing-accessibility.md,sha256=yFAlk4ixowJ-RqzwZ9DqgyWWpnwdaYG3Xx6uVYX2qWM,7062
|
|
424
|
+
tapps_agents/experts/knowledge/accessibility/wcag-2.1.md,sha256=-f2iRw2r7AowwKDDDL6P9MTQdL74PoROK0JnVwmhD80,10399
|
|
425
|
+
tapps_agents/experts/knowledge/accessibility/wcag-2.2.md,sha256=rDrC5F28M85_Alj6M5O1By75A7iGI07skULfSfqQ2HE,8116
|
|
426
|
+
tapps_agents/experts/knowledge/agent-learning/adaptive-learning-patterns.md,sha256=wUC-CG14iBtfUH1eAoM2DYPN3vHRjiBnuc7c262EXv4,7095
|
|
427
|
+
tapps_agents/experts/knowledge/agent-learning/best-practices.md,sha256=466sbs29rcgX4K0c3Rko0XONx6E0_rvgAQ5i3iZ_M2A,18990
|
|
428
|
+
tapps_agents/experts/knowledge/agent-learning/pattern-extraction.md,sha256=5Fo4dVIaxqNcjORjNMrctFkS_3122tJYRPhDJIQ8H3A,6352
|
|
429
|
+
tapps_agents/experts/knowledge/agent-learning/prompt-optimization.md,sha256=k7BdxmXRBa8TuCsLnUEW6IaAbeTyj3xV4XARd3EqAfs,7152
|
|
430
|
+
tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md,sha256=cAKDgwmlaVg8PjvrWV4z-8IQQWxj-P_CRI_-FQ4ny8E,5023
|
|
431
|
+
tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md,sha256=TXJ5Ecs72p4gXzLlbJ7E5Nec0bkT89DIjy79YIgJCfo,2072
|
|
432
|
+
tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md,sha256=SrFbNlH9eKp0T_hcr4XPeWvEJ_x2Gr8mlfBPYlNdceA,6496
|
|
433
|
+
tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md,sha256=hKHPdEiwCXqHQDr6kR-CKycXUbu-ugYN77kxWqrgTtI,6839
|
|
434
|
+
tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md,sha256=w4WZAqnspAPdSIitAvOlEmt5fw6H-LN8jbLooTk1NVQ,14331
|
|
435
|
+
tapps_agents/experts/knowledge/api-design-integration/api-versioning.md,sha256=jToexJI1wI3voVZwJgAhxizwQmik-6i55MVH6_-qGVQ,8384
|
|
436
|
+
tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md,sha256=3QxVHfUM-I1abQddLGHxP_Rkbzo_TKXxM7UZhzZxSz4,1506
|
|
437
|
+
tapps_agents/experts/knowledge/api-design-integration/contract-testing.md,sha256=Uox3At4lZBYyaPDLmTxmCllFgzAQT4obE8zkmmHOsRY,5195
|
|
438
|
+
tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md,sha256=UP87MhpMMw-DveMIZ9uuh48hQgPDTOk5My2KcmBRnaI,14763
|
|
439
|
+
tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md,sha256=YuC8iL_C4QDd5k1tPiIkrrxmTPWNkohcDPJn0klm7jE,8236
|
|
440
|
+
tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md,sha256=WcKR9gbfjw8uzKS4g-qVNJ__340JicTUwpQqegNtysY,5655
|
|
441
|
+
tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md,sha256=eip94tpU0TEmdKhXFP2izUZNVZ_hUTVn8_17MBvfFGk,9541
|
|
442
|
+
tapps_agents/experts/knowledge/api-design-integration/grpc-best-practices.md,sha256=_5bu0drMLL1QTYdVgQgVUDHtpVMeYd7L7f3Ciibei5c,11426
|
|
443
|
+
tapps_agents/experts/knowledge/api-design-integration/mqtt-patterns.md,sha256=-wUJJdy1eUAbFf1yQwbFkeZ2JB6k6Io5Z3_ZrXwkTUw,12428
|
|
444
|
+
tapps_agents/experts/knowledge/api-design-integration/rate-limiting.md,sha256=sIasmFb0y7NW4aU_iWtK1TImr64gGNrVDPXloZ5WHtI,12665
|
|
445
|
+
tapps_agents/experts/knowledge/api-design-integration/restful-api-design.md,sha256=rjbSZn9ax1I9Gi7kwmQCp0qr5TjLxbKHJ15tOjMlJy4,11623
|
|
446
|
+
tapps_agents/experts/knowledge/api-design-integration/websocket-patterns.md,sha256=f9ukwxba8XBJyBvBYi93sCF5PEsMJNcE0bZyHzuQq70,14391
|
|
447
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/cloud-native-patterns.md,sha256=QZ3lDxKqV65c5S5YnJY-kthkWYj_opUFHK-1X6dAfOw,3976
|
|
448
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/container-health-checks.md,sha256=P3Ts3WztMQpTFoq8dVfBDbKJUu5HG6USewY3WPXy7OI,6089
|
|
449
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/containerization.md,sha256=69SvrvFS0H9tMDRupaM2x5CqajBDgmV8l6s0hSK5iQo,4305
|
|
450
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/cost-optimization.md,sha256=0Q8KbCEOShAUi1W2M7373EcWrnkU0a5CENFhyATS0-Y,2567
|
|
451
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/disaster-recovery.md,sha256=3Qzqyk4bTc-cHsFq1PgQ-98mAJ3Pnn9i1zE4Wlhim2k,2866
|
|
452
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/dockerfile-patterns.md,sha256=ZdZ00Icn6Q4ILGQZH_SPgEkERInsCtrdlByXNVsiOAQ,5303
|
|
453
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/infrastructure-as-code.md,sha256=fNgOMOKa9IzE8BEpDP_VrHwOiYNKCyYRB8TY23Bnhic,3353
|
|
454
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/kubernetes-patterns.md,sha256=PglT6UY7FeXaYYY2Ak0H0YrH1nzTKdvWRlYOYdmALhM,4344
|
|
455
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/multi-cloud-strategies.md,sha256=8NZeSSuhe_zeMp0wT0p8C3He5ogaAvla3VHnif23QSc,3113
|
|
456
|
+
tapps_agents/experts/knowledge/cloud-infrastructure/serverless-architecture.md,sha256=eanH93JYFQQiKk4_yxwG1CJ9eIFtavoK-w2NHaOG-jw,4111
|
|
457
|
+
tapps_agents/experts/knowledge/code-quality-analysis/README.md,sha256=X-KnJI0YwcEs-l99OwK2klQqUsAOxLC_3ZwQ1gp87xM,435
|
|
458
|
+
tapps_agents/experts/knowledge/code-quality-analysis/code-metrics.md,sha256=wHUmSE5A7FVUE853WrJ2jMjviGT87DX6bUUtJCLaJEA,3571
|
|
459
|
+
tapps_agents/experts/knowledge/code-quality-analysis/complexity-analysis.md,sha256=7DvxMNRnoPiZITqgkD2I1aM1WIzT3CF44-UNZ4Y7H8U,4479
|
|
460
|
+
tapps_agents/experts/knowledge/code-quality-analysis/quality-gates.md,sha256=bClraAtPON6u1sdcT2FNmOZDmIymC5kD8KMYbtRHykM,3597
|
|
461
|
+
tapps_agents/experts/knowledge/code-quality-analysis/static-analysis-patterns.md,sha256=4e9Lf2bmsoAu7UK0pEKFhqPE6Q6BtcBzdLG9o7paj-A,2920
|
|
462
|
+
tapps_agents/experts/knowledge/code-quality-analysis/technical-debt-patterns.md,sha256=qfwV6WoIWIb2vgemEE95VCnriaW-jeSE6OpqSnYvc7I,4477
|
|
463
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/anonymization.md,sha256=iGRoCZpIx-1LoAVmvc5Y6KPsMdFRwEjfTQbyTJ2PuuI,7528
|
|
464
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/ccpa.md,sha256=yCWPgWcHvY81ZCXVUpIS5nI3b1y_OcQbZe31ZeFGIgc,8176
|
|
465
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/consent-management.md,sha256=oI6llYYOQ3npmkgFCfTde2n-r6-_pOzqe7vyxuPSHh8,6671
|
|
466
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/data-minimization.md,sha256=wkh5uBxMrgOPmbPCF9t1A90zB6CTa-I0RUk4rrKX0TE,6875
|
|
467
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/data-retention.md,sha256=905yguMkaQyVPRNUTsqmkLxIU6hHye1JeNctvpLbEm4,6910
|
|
468
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/data-subject-rights.md,sha256=nxGiDl17Zz_DkPtoucgS9wsGMG6KlnVBXE2pYkJcTG8,9215
|
|
469
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/encryption-privacy.md,sha256=PUIRP2JMU-UrgJjSvHtfkm-bOs2-RkTU7QUDu7lAesE,7187
|
|
470
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/gdpr.md,sha256=7brovfKmkMKx4Vp71i5ZLjr1hQXlVv7G-lBDMdawp98,10310
|
|
471
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/hipaa.md,sha256=PBPrthpEjYe_Nn0kGKSxVFsZY8X4iKtPc57UGPawd98,11081
|
|
472
|
+
tapps_agents/experts/knowledge/data-privacy-compliance/privacy-by-design.md,sha256=fcwZWLjEmSSHOCXMyqZrYyw08AFQ1uRTTJms4UeSkbg,7289
|
|
473
|
+
tapps_agents/experts/knowledge/database-data-management/acid-vs-cap.md,sha256=CmX4BNADorF4uAc2XRzmZCc9mx3mOgn2SWuVnZjanDY,3896
|
|
474
|
+
tapps_agents/experts/knowledge/database-data-management/backup-and-recovery.md,sha256=PPe-kRyijr6wPL1ntees8U399rbF8zPHoR0V2oMQ_Hk,3435
|
|
475
|
+
tapps_agents/experts/knowledge/database-data-management/data-modeling.md,sha256=ZDKIkjqex7O8J4_MkTQweeJNG8xUyWHj1Ks7reGQhfw,3025
|
|
476
|
+
tapps_agents/experts/knowledge/database-data-management/database-design.md,sha256=1bQG6g_U2DHTNWFWBtH_hHOEV6Z6M6pVR2HVRNFI5rY,3595
|
|
477
|
+
tapps_agents/experts/knowledge/database-data-management/flux-query-optimization.md,sha256=am9ix7EBbgNmDuaWrbadUDcbVb67CJHZL59nHjUbESo,9477
|
|
478
|
+
tapps_agents/experts/knowledge/database-data-management/influxdb-connection-patterns.md,sha256=RsoBDYk6Mf-ob-c9cx7fFyeCmDq-AwF_KK8GDcl-nFQ,10638
|
|
479
|
+
tapps_agents/experts/knowledge/database-data-management/influxdb-patterns.md,sha256=s_bilhsNzG_VkNjRl3u2LiTA5JuNGnRwqhvTtqhiQRw,10580
|
|
480
|
+
tapps_agents/experts/knowledge/database-data-management/migration-strategies.md,sha256=XjH7mkWS2Xe6zlWc-Ma4XvxVt7peASB6IAdNKdTDFVw,4406
|
|
481
|
+
tapps_agents/experts/knowledge/database-data-management/nosql-patterns.md,sha256=CALf5anxE0fh0UwkpP6WHFckRYnO_HoxI0ZZWhTPBBg,5327
|
|
482
|
+
tapps_agents/experts/knowledge/database-data-management/scalability-patterns.md,sha256=K7gUNr4fy9qpd6c46223R8mkn6XGBBHulsRzFJUKQyM,3368
|
|
483
|
+
tapps_agents/experts/knowledge/database-data-management/sql-optimization.md,sha256=sRMzIMtxpl9B2lzNVLkK8njMmF3tncyH7fr0mPyccVA,3604
|
|
484
|
+
tapps_agents/experts/knowledge/database-data-management/time-series-modeling.md,sha256=X6BOdPpIbvDdOXaq20DicJUo95edLBkLKgm38WjNBPs,10249
|
|
485
|
+
tapps_agents/experts/knowledge/development-workflow/README.md,sha256=gz9SP484tSwlJpSZC9F9vodJkn1-uEFcqj-cskRzuOc,456
|
|
486
|
+
tapps_agents/experts/knowledge/development-workflow/automation-best-practices.md,sha256=Ha9Xsgf2XQWtd-gtmxOnksRWO797FIEORnPesSDNHrQ,3842
|
|
487
|
+
tapps_agents/experts/knowledge/development-workflow/build-strategies.md,sha256=RD1NDkA4pbM842YkD82HgONSpDhym7YwWYHffhfPxYc,4215
|
|
488
|
+
tapps_agents/experts/knowledge/development-workflow/ci-cd-patterns.md,sha256=ayRLrOeOg5R_ayWudPRA2t0X5oyThy3v1Bd--8qmkKE,4429
|
|
489
|
+
tapps_agents/experts/knowledge/development-workflow/deployment-patterns.md,sha256=FuoJbxERDy4B0TmTQZRvzcx5INCo1452nutBkvLFVlE,4644
|
|
490
|
+
tapps_agents/experts/knowledge/development-workflow/git-workflows.md,sha256=a9VcEYjfJka9xhlDwxm_tr28htA5x4HSs4QyqRFUnVk,4316
|
|
491
|
+
tapps_agents/experts/knowledge/documentation-knowledge-management/README.md,sha256=bWhNTY0xummmyEn29DqmmoZAkDoG7Jj0mDi8BDimrPo,481
|
|
492
|
+
tapps_agents/experts/knowledge/documentation-knowledge-management/api-documentation-patterns.md,sha256=j0ee1-T5hOlXzbvn1GMudUkEZnB-l4peYpK0UJSc69Q,4762
|
|
493
|
+
tapps_agents/experts/knowledge/documentation-knowledge-management/documentation-standards.md,sha256=F6bsZQI6o-SHYE5gWer-RZJO1G1c5cw9fYPWi-HGu-E,4629
|
|
494
|
+
tapps_agents/experts/knowledge/documentation-knowledge-management/knowledge-management.md,sha256=3pOok7e6OZVkrXRzE3sQGjRsQUzbDkNRKrZmizfsASk,4469
|
|
495
|
+
tapps_agents/experts/knowledge/documentation-knowledge-management/technical-writing-guide.md,sha256=gUg3550Y5Q500Otf4QB3El7y4sh381yWG2r0ua5PO3I,4253
|
|
496
|
+
tapps_agents/experts/knowledge/observability-monitoring/alerting-patterns.md,sha256=mZJlte_v94c9tyBrxNcVMquwJ_espjmlzzbJxhHUhMo,9299
|
|
497
|
+
tapps_agents/experts/knowledge/observability-monitoring/apm-tools.md,sha256=NC90bzpWsv9sLnq9vYlJqwNx72Tb08lE2uUnnsx5ZeA,8627
|
|
498
|
+
tapps_agents/experts/knowledge/observability-monitoring/distributed-tracing.md,sha256=JbSh1EVr8pnAtAge7xkd3vW8_9Ue2ryPoeVx7hDyNnc,9622
|
|
499
|
+
tapps_agents/experts/knowledge/observability-monitoring/logging-strategies.md,sha256=dXnWVOmVJo8lulPOnvQFH8FxGAMre-M4BJGYGwIo7iY,10551
|
|
500
|
+
tapps_agents/experts/knowledge/observability-monitoring/metrics-and-monitoring.md,sha256=OSsl4mBnpZkkZsUQlMOBnyPLvRXHFEpMeWaZwN-eIfM,11140
|
|
501
|
+
tapps_agents/experts/knowledge/observability-monitoring/observability-best-practices.md,sha256=bbFj1uHbqQ8iZPbbe_fp7hFU1C1NPra6FYTjQRyE_zI,10336
|
|
502
|
+
tapps_agents/experts/knowledge/observability-monitoring/open-telemetry.md,sha256=YcssXeCb2TII1QKbhND02-5gR2AhamTciBQEfsxPuwg,12136
|
|
503
|
+
tapps_agents/experts/knowledge/observability-monitoring/slo-sli-sla.md,sha256=2Yo004n-eBlcsbSRVmIagybkLMegzQNB_fR1s0B5xwY,10180
|
|
504
|
+
tapps_agents/experts/knowledge/performance/anti-patterns.md,sha256=T5r4ibRZzlMeMfs86MzhXT_U4uw4_k-sB9dYeEoeGl8,4742
|
|
505
|
+
tapps_agents/experts/knowledge/performance/api-performance.md,sha256=55J-2TzXZBqgWFcgIkcXJ1zOpeps4Sr3irBgdS0-aOI,4955
|
|
506
|
+
tapps_agents/experts/knowledge/performance/caching.md,sha256=0yrux32yDShpYznUSW1ecPFQjRmCSCq7stD-oZdGTqA,5598
|
|
507
|
+
tapps_agents/experts/knowledge/performance/database-performance.md,sha256=UTts7x3l7t8cYypmPaUkdbcwlvIabH3v6HerCViECl8,4824
|
|
508
|
+
tapps_agents/experts/knowledge/performance/optimization-patterns.md,sha256=3JqPQ7hlfdL6YefpQ7Au54KbSClCpWJaLXik_80jvdM,7101
|
|
509
|
+
tapps_agents/experts/knowledge/performance/profiling.md,sha256=tj7-IE_Y85fjCfvbRk4wxHvwnE_KSWIQmlUxFk_wxCo,5355
|
|
510
|
+
tapps_agents/experts/knowledge/performance/resource-management.md,sha256=-ySjsn29AxUQut1YtAWvf5d2ghnm-ozdLRNS9Mzo6Pg,6193
|
|
511
|
+
tapps_agents/experts/knowledge/performance/scalability.md,sha256=qyvZld54tp2hurrRLfZ4E1xtkDJyqjxnZgmsqXMR8No,6268
|
|
512
|
+
tapps_agents/experts/knowledge/security/owasp-top10.md,sha256=obV_kno5_A6Epu7gkxTT-a0HjMzboPLS1rpxM7C0GAc,8514
|
|
513
|
+
tapps_agents/experts/knowledge/security/secure-coding-practices.md,sha256=MqPMfMrPO_pB0aF48fKpSIn0iuu7UsgsMTNvIdl2_Hw,6538
|
|
514
|
+
tapps_agents/experts/knowledge/security/threat-modeling.md,sha256=69PD4Nm6yDRCKIUUexQafSPpyEBXccQVAxBmU2Wp_qI,5565
|
|
515
|
+
tapps_agents/experts/knowledge/security/vulnerability-patterns.md,sha256=Rvj6xfEKZZrX62YWjyxuVUF821jgXf8c7al1Z99ytAg,7488
|
|
516
|
+
tapps_agents/experts/knowledge/software-architecture/docker-compose-patterns.md,sha256=iPEJspEEVEc7l88mXHk5l1Qfvn_RbVlfUSEo1pxFPac,5593
|
|
517
|
+
tapps_agents/experts/knowledge/software-architecture/microservices-patterns.md,sha256=CZsIuLqKS97YD2A4I_yCLA0T2b4p3MBuQqJlqEUh6Xc,10146
|
|
518
|
+
tapps_agents/experts/knowledge/software-architecture/service-communication.md,sha256=DP8Dc4F0lMtw1hEZidmolvNrvNGsmly-y8sV3wOp26c,8055
|
|
519
|
+
tapps_agents/experts/knowledge/testing/best-practices.md,sha256=BPPO368zMkUO6PU7qrhKBTld1W5l1HkrB4iJ3aiWI8c,5994
|
|
520
|
+
tapps_agents/experts/knowledge/testing/coverage-analysis.md,sha256=SLf-Q6P_-e1AbRQSLMLbK4JymuPVO4uMZCHqbNN0yo8,5427
|
|
521
|
+
tapps_agents/experts/knowledge/testing/mocking.md,sha256=iI_8I0tSOItW0LyvIUFLWpqWXLWJWDbkAPurIFFw7uY,4939
|
|
522
|
+
tapps_agents/experts/knowledge/testing/test-automation.md,sha256=43XsjgsS5ykch5yLOBtWNdIWUegIexNAzddsoX4xI0I,5060
|
|
523
|
+
tapps_agents/experts/knowledge/testing/test-data.md,sha256=4RJcD5khrhzPKQJiOeEh3Dgarmb3IdvoSFLiqMRARUg,5266
|
|
524
|
+
tapps_agents/experts/knowledge/testing/test-design-patterns.md,sha256=kyfMbNiMFZdjbRC-UXbpT9Weaylrweo6_iRVyVeKKcA,5781
|
|
525
|
+
tapps_agents/experts/knowledge/testing/test-maintenance.md,sha256=1J4nc-K60bJpJXeqfRWCWyco_ZNQNax-pjzYY9lqzk4,4592
|
|
526
|
+
tapps_agents/experts/knowledge/testing/test-strategies.md,sha256=0Qc0hZ5YVXyY74m8IaIYp5pneGucCMYg2WlFquEO-3I,5887
|
|
527
|
+
tapps_agents/experts/knowledge/user-experience/information-architecture.md,sha256=I5jbpPLq5adXzcNrtE6wmu0f01pwPPi4XAfau-CZpnw,5561
|
|
528
|
+
tapps_agents/experts/knowledge/user-experience/interaction-design.md,sha256=ByUniJYdKNawKKGmsH0yOY_YspwEf4bNPw_2ciI0Tpo,6275
|
|
529
|
+
tapps_agents/experts/knowledge/user-experience/prototyping.md,sha256=JrKeWvWGTIjc_iWbXv1FiZQXBFta6CJA6idR07x8qOk,5242
|
|
530
|
+
tapps_agents/experts/knowledge/user-experience/usability-heuristics.md,sha256=bG2MRBKSjwO7I78SR8lJWuyN1zgZgRbIGVDeg0UwoNM,7750
|
|
531
|
+
tapps_agents/experts/knowledge/user-experience/usability-testing.md,sha256=aw49-EwLXQC00tFZkqGJsrDNLkYaFzikz0VrlPJSpWU,5393
|
|
532
|
+
tapps_agents/experts/knowledge/user-experience/user-journeys.md,sha256=8CU51hdXdKtneKzsAydulYEsAKLNPkDKkE9Op4ioYAw,4741
|
|
533
|
+
tapps_agents/experts/knowledge/user-experience/user-research.md,sha256=WhYUxz2UhLW7MDCVJS09fWCYG3ERTKwOfFW7b4h7Kok,6322
|
|
534
|
+
tapps_agents/experts/knowledge/user-experience/ux-principles.md,sha256=WvhO23R4iuyPEbu8COOdEpMpduh4_gknWmlJP-A7vBM,6185
|
|
535
|
+
tapps_agents/health/__init__.py,sha256=4WoGiHvBAhJzii8KFUmn9Ot8sks7Qf-eGpaTffhQD5Q,621
|
|
536
|
+
tapps_agents/health/base.py,sha256=WZWruQf1yMvGwlJ2dGlRSqlgsyZYvXVU-C8e2cLBKnI,1828
|
|
537
|
+
tapps_agents/health/collector.py,sha256=UbR0a18XSkrEYCjyQEZcXySMKF86EQfk69zD0wLgWac,9302
|
|
538
|
+
tapps_agents/health/dashboard.py,sha256=-eGwz51EpExvNz_tzwY1jGqitbIsdq_JtvO08b8JnZs,4296
|
|
539
|
+
tapps_agents/health/metrics.py,sha256=Tt74QZPNrho72UczxCjJlOyU6KFYYbhHUYKcICb7J0E,4519
|
|
540
|
+
tapps_agents/health/orchestrator.py,sha256=OHWevEKKvd0MivTxKPp6274A9fyYGO_WIt3JVb6h4U8,9836
|
|
541
|
+
tapps_agents/health/registry.py,sha256=pBBfu6hEnBhICCdwo3mWtIyqda_c23gdxiaGe8vh780,4716
|
|
542
|
+
tapps_agents/health/checks/__init__.py,sha256=BNaJwsle0XQBCXe1M9Lxo-Po99TpFPPhGfMtvOpKl6w,578
|
|
543
|
+
tapps_agents/health/checks/automation.py,sha256=gl6W3X8oS0xCpESINUkC1eNNn3Ncm_owVg--oKOm6Dg,4823
|
|
544
|
+
tapps_agents/health/checks/context7_cache.py,sha256=ar3abHGQDZ22w2Vg_WF2iCJhNMCNPsmq5RGLqfCapKk,8551
|
|
545
|
+
tapps_agents/health/checks/environment.py,sha256=V84V_2f3n5xOnmkmKmdBLDByDZ6fPoq2YQg6pSWOmII,4006
|
|
546
|
+
tapps_agents/health/checks/execution.py,sha256=b0-o3NYi5iQgvlq_2wAu6AeUFX2V-P3US2VYVzC697U,6711
|
|
547
|
+
tapps_agents/health/checks/knowledge_base.py,sha256=sGebo4wkYUMXKZ9kylXh_rVkyctt9MwxkPmV8sDZKyM,7131
|
|
548
|
+
tapps_agents/health/checks/outcomes.py,sha256=u8lwkomaIwl6Eb6jhV7mjBxbSAsHu76G8acRywJRpmY,13611
|
|
549
|
+
tapps_agents/hooks/__init__.py,sha256=VnBPRkkVUPNDT4tPnzGc-7Kvuu-8PME5xiBFD1ay2Ys,789
|
|
550
|
+
tapps_agents/hooks/config.py,sha256=jInZzcvqq04JOp3rdNC7HyQvlZqOMmcaCVU3ZU69UOg,4278
|
|
551
|
+
tapps_agents/hooks/events.py,sha256=KhLIn9m2eDmzAiNFn_zaIAI6NK93eu0Dsz-nHood9SU,3921
|
|
552
|
+
tapps_agents/hooks/executor.py,sha256=VIRKwKODngZKNAXk008xU2BdTL6LdQebOtSApr3zktc,4177
|
|
553
|
+
tapps_agents/hooks/manager.py,sha256=3Wg7oewr2iAMuBZ6pxGmTMjblW_--RlfCcXwpwLziy8,4895
|
|
554
|
+
tapps_agents/integration/__init__.py,sha256=j4Yz6TsiQ1GEd6-agrwE64rmcIkTJIKOIieqaYlKwyM,124
|
|
555
|
+
tapps_agents/integration/service_integrator.py,sha256=mznBhrx3YmMr0jkN4ypL3IZrbH6Q5YeVCZKzliOYEAA,3891
|
|
556
|
+
tapps_agents/integrations/__init__.py,sha256=wTpMBo30VJDW3FndfIyNSViDXWaf5usZdOneoyVQVfg,236
|
|
557
|
+
tapps_agents/integrations/clawdbot.py,sha256=Ux3kdxm18blrO2m00Zgi6ub_qnceApUL3vWHm39YweI,17886
|
|
558
|
+
tapps_agents/integrations/memory_bridge.py,sha256=vRDOlkxgwvwmhT0lgGl2GZx2OkukgYu2Sil2Q6Sa_LQ,12180
|
|
559
|
+
tapps_agents/mcp/__init__.py,sha256=eEmrcLrO4F8tHAwn91l5v-sVDgTACSl6pGAPiBRnQjo,493
|
|
560
|
+
tapps_agents/mcp/gateway.py,sha256=e985qbYLExIoPGkJiq55ounTR5UBAN-cvf0bl5KMGCk,3257
|
|
561
|
+
tapps_agents/mcp/tool_registry.py,sha256=_MBa-XsbJGo9ZQYH9wHyBIhGy3xDfLwRIl09_jZeHRI,2965
|
|
562
|
+
tapps_agents/mcp/servers/__init__.py,sha256=YT-OYVRAYnNtnemG2HegytMqUYEgXMBR6SQhhfa5mM0,301
|
|
563
|
+
tapps_agents/mcp/servers/analysis.py,sha256=LQNXk2XeSn6bb0j00YvDKHfkHtqfthVJ-JD184QO-Ck,6714
|
|
564
|
+
tapps_agents/mcp/servers/context7.py,sha256=Z66a_o8yvKbLdSN5b1OhHSDQ54cJ6srRrry5VF2FYsQ,7123
|
|
565
|
+
tapps_agents/mcp/servers/filesystem.py,sha256=WUa-aGmog77YmiQGPuVUvmDmhZSITNpRpHGtEzQSx-s,7199
|
|
566
|
+
tapps_agents/mcp/servers/git.py,sha256=2v3ojERSQDlYAm_KOxhUVGrXkxIShuWdASOFbe7_STU,6688
|
|
567
|
+
tapps_agents/quality/__init__.py,sha256=S4g07F5w0p_yJSFphW48CX0_UCqu2O4PxFXN1ik65zQ,958
|
|
568
|
+
tapps_agents/quality/coverage_analyzer.py,sha256=UmcbAMckz22ECce-X_Ocbk-5nGoLnMYlLz1wKZQk_Y4,12743
|
|
569
|
+
tapps_agents/quality/enforcement.py,sha256=OeMNG7rPZL7Ql1KI2rHlzBGFHRH6XXq_vvgNciButYM,2276
|
|
570
|
+
tapps_agents/quality/quality_gates.py,sha256=StOuZRb9Ejizk04DewXXWvfvn5BtXS8jDXwBGGiPpSs,14041
|
|
571
|
+
tapps_agents/quality/secret_scanner.py,sha256=Uig3vodfu36vrOu9SHnGBuMzpj95H5CJrlKTHersMOg,11286
|
|
572
|
+
tapps_agents/quality/gates/__init__.py,sha256=3N5a6ICUZwpP3X3-06qzvSUR2ZmGi5MsFSTOVSX9CJE,873
|
|
573
|
+
tapps_agents/quality/gates/approval_gate.py,sha256=BBNkklM4hCWQUM0bfFJeQpo1d9eLjSSW16Nlx3ptnVo,9472
|
|
574
|
+
tapps_agents/quality/gates/base.py,sha256=xQtmaiqL2ZuSDWDIWd4hxIZLugy-HhiU2mZegRGRXUw,1947
|
|
575
|
+
tapps_agents/quality/gates/exceptions.py,sha256=NKaPmz3eVBKsQaJXiJLT3rM0TYD59gUrQ318WEb0DTA,913
|
|
576
|
+
tapps_agents/quality/gates/policy_gate.py,sha256=PzYZq0uK3xoB_m7UXaCyAqlnolaKtT3bsFyeWrJ6bww,6992
|
|
577
|
+
tapps_agents/quality/gates/registry.py,sha256=unufnOAroKVDC7e8BO5jFKv1-SP7ek386FiHb7xtpjA,7414
|
|
578
|
+
tapps_agents/quality/gates/security_gate.py,sha256=5w65dN43d3FB_bZmon9wDQy9BwXkmUJDiI-xm4XjCrk,5940
|
|
579
|
+
tapps_agents/session/__init__.py,sha256=KxiRQU6MmJvH67eb-xe98vMa850eOBUiA1glxkTI1E0,435
|
|
580
|
+
tapps_agents/session/manager.py,sha256=lzDBZI3AC6Rq9zpbyreCKTBAdI6s6GBb5jYI8PDXVRk,8506
|
|
581
|
+
tapps_agents/simple_mode/__init__.py,sha256=coA6ObZLUVmN2WFTFNr05z7ZYL1eHIOdA3k6os0rWZg,1755
|
|
582
|
+
tapps_agents/simple_mode/agent_contracts.py,sha256=Yp9IeCrJAMmXWgGSyJjdAJHBkUtPl6c5Xo0k-bS0Cic,11524
|
|
583
|
+
tapps_agents/simple_mode/beads_hooks.py,sha256=qNfhRpTHDpy6UcYmFiLZfNTeQ8aZBu80qjGSbErB1yQ,4964
|
|
584
|
+
tapps_agents/simple_mode/checkpoint_manager.py,sha256=_z2iJ2Qv6oK4lsINbcTqXWsq88BkXwYJhvhLCyKgMUo,42152
|
|
585
|
+
tapps_agents/simple_mode/code_snippet_handler.py,sha256=nSzgZdS911ZFkf2gdwcgm4PphQa_RMCzh94wstZ172I,10853
|
|
586
|
+
tapps_agents/simple_mode/documentation_manager.py,sha256=bPDHlOQtaIZUQvxP7eUXuFQE5aH89ykVS_uYSi9bi0g,12941
|
|
587
|
+
tapps_agents/simple_mode/documentation_reader.py,sha256=QjRskhN6ec8NTVKSwDDMts4tjbLZa9855TJcZY0hroY,5718
|
|
588
|
+
tapps_agents/simple_mode/error_handling.py,sha256=4ncWUrFHw22TYRQRRxldxeGmcCFh_ebrHPDWeCPMRE8,10740
|
|
589
|
+
tapps_agents/simple_mode/file_inference.py,sha256=5iL2PClmnOVe_fnEpwvcr6hDBN2YCjT06RMxz5YiOY4,10467
|
|
590
|
+
tapps_agents/simple_mode/framework_change_detector.py,sha256=QWUGUxqlJV9bYOr3Pn_gA9ZNHCwyH4YYGjpGk5r1d2Q,9528
|
|
591
|
+
tapps_agents/simple_mode/intent_parser.py,sha256=vQ1PqHrhEroZFLl8oHZitIOFfBy9Is41Szgjmn9ynJk,17087
|
|
592
|
+
tapps_agents/simple_mode/learning_progression.py,sha256=R3vq5TNWlnd3adWUyA2f2fF6mtiJTrjcKIk1eaYf2o8,13180
|
|
593
|
+
tapps_agents/simple_mode/nl_handler.py,sha256=38o-39AVDLIzxG3jQGPuroTosZLMFftdv0ZPZ91iAyQ,27105
|
|
594
|
+
tapps_agents/simple_mode/onboarding.py,sha256=EETlG6F-GRm5-WRwZZyyqdIN0y7OTjNwUD8eZn3AR_k,9436
|
|
595
|
+
tapps_agents/simple_mode/output_aggregator.py,sha256=9apI9EOahRud7axpZuV7x9QAH6Shi3sSQL5WHi8L2oo,14017
|
|
596
|
+
tapps_agents/simple_mode/prompt_analyzer.py,sha256=uS99XPlX6u6gI78cYabl1quuBCGZc5WIl_-Ptpd5lQE,14251
|
|
597
|
+
tapps_agents/simple_mode/result_formatters.py,sha256=DU5q3Qq-LiH9zJGFVCQCysh9nwhWKmdYO0hxmm3kGC8,17145
|
|
598
|
+
tapps_agents/simple_mode/step_dependencies.py,sha256=VVLugc5JO4Ny7Ut1C8xoXgWR9juPhUpjUsm5iJPu0Sk,11474
|
|
599
|
+
tapps_agents/simple_mode/step_results.py,sha256=3gkSE3jVRomvv_Vl7sRXzYEQSGrUf33DVYJE22Gj7KI,9042
|
|
600
|
+
tapps_agents/simple_mode/streaming.py,sha256=01UymwImWEPxCL9fQQ2unl0FEWN4yYTPK204JtWtwi4,13219
|
|
601
|
+
tapps_agents/simple_mode/variations.py,sha256=zCgWmDAVtURtygjhGXYR1Bd1T5Gvp5U76IgDVAcgbjQ,2671
|
|
602
|
+
tapps_agents/simple_mode/visual_feedback.py,sha256=HYvy7pwJeugaOqyf5OXX4b-JGOamTQ0vxkJAm-eNKHI,8109
|
|
603
|
+
tapps_agents/simple_mode/workflow_selector.py,sha256=EBKpkMBeFS6WfIuRhMyTL8nnKRpj52MpnE7rpgHt0Zs,5288
|
|
604
|
+
tapps_agents/simple_mode/workflow_suggester.py,sha256=2KJaNyvOIk4GtENRynpkTLDBqzcg6aAZ80co3x2u7iU,23030
|
|
605
|
+
tapps_agents/simple_mode/zero_config.py,sha256=4TJiKGs5459rOmX9Lk_rCfokdYRwXa0PkjXPqNj5m_o,10705
|
|
606
|
+
tapps_agents/simple_mode/formatters/__init__.py,sha256=xgAR0OZcKZiDaGLTOCCfvOI7gdBArnKyTcxVMfAE4Pc,167
|
|
607
|
+
tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthNEMZywWZMV4WYlEbk1SiqPhBsYsRVqrsQrAH3GIQ,5940
|
|
608
|
+
tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
|
|
609
|
+
tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
|
|
610
|
+
tapps_agents/simple_mode/orchestrators/__init__.py,sha256=9W40F5bXPbsq3zkkB_K_yj8Cqm0Hqfbm1C0ME4tZj88,1277
|
|
611
|
+
tapps_agents/simple_mode/orchestrators/base.py,sha256=bxSLMqL6p8uFrvyAL_ARJA1XCnzATc9LdOxNYl_-YzI,5667
|
|
612
|
+
tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=Gkjrx4VL08bLVqFjItueWHOznPLSv60QX6BB0QfxfA8,1741
|
|
613
|
+
tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=aQ3wj65QSJnAgbR84sUbxf_SyKB6Bgff-no1vGBMDXQ,5014
|
|
614
|
+
tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=rKKMUFdUGKUClrHcuZeiuW79yvDK4jLiiutft9lp7zk,121098
|
|
615
|
+
tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=2h4F2bGLFoAMJpE3BGimScud2pMq_UTW_4TIX6VQwI0,12225
|
|
616
|
+
tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=Ljf8iBSIjTuhr28cZgapG_VQBjbnvrTclW99p6vp5QI,2059
|
|
617
|
+
tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=MWPPZ-zgqvuFqgV2y1qSaQxjmbTnw-RzMCI0YavmISY,4218
|
|
618
|
+
tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=kMQu70amOs-sqk6utJ4b96vDz8S2mWjwwTq3z-hTf9c,6580
|
|
619
|
+
tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=jPnrLOKbcdn7BHoaeJsOvDvipBnuPR4NW6shL0Sr8lE,32812
|
|
620
|
+
tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=-qdE0iKfcqXdTXuS9zx4_ALv8htyfD3V8VCX-gbMkiI,7060
|
|
621
|
+
tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=YC6-OATdSvA2HVWfUpRQQsaypyaNhD6mArO8fRTVhps,8366
|
|
622
|
+
tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=-MRy9IXRZGdyRGGdQDDm7Ix_h3Y9d8NEU896n-EaI9s,7935
|
|
623
|
+
tapps_agents/simple_mode/orchestrators/requirements_tracer.py,sha256=YwjDMZOYMo3RqBWUIXZSgs5gPTRBdsRwsj7GgDl6iWs,8895
|
|
624
|
+
tapps_agents/simple_mode/orchestrators/resume_orchestrator.py,sha256=iy51RXJE_Y_tYCbPxSsiVc9-oSwJE0UBb82b4nWHoW0,7111
|
|
625
|
+
tapps_agents/simple_mode/orchestrators/review_orchestrator.py,sha256=V9qce7z7Kn3vCPxUy_aL9ATFGhe70e4niWf7yLeEeok,6602
|
|
626
|
+
tapps_agents/simple_mode/orchestrators/test_orchestrator.py,sha256=owlkoy1cM8_E1RzlwCP1UuM0YewSFQsnlVvjGK3WUws,2432
|
|
627
|
+
tapps_agents/simple_mode/orchestrators/todo_orchestrator.py,sha256=chLqedGDy8VO87lvObxMPqNtFxbbNnP3Ik6MXPGyQ3A,1820
|
|
628
|
+
tapps_agents/simple_mode/orchestrators/validate_orchestrator.py,sha256=n7zdv5aP0aeZ9OHopTcgH6ebNW0Bp69SrjxIuqa4fDM,8168
|
|
629
|
+
tapps_agents/simple_mode/workflows/__init__.py,sha256=G0m5BdxhKO3g0IEuNHRWrEBBKiVLVdHzlE1aw-9cITI,338
|
|
630
|
+
tapps_agents/simple_mode/workflows/quick_wins_workflow.py,sha256=baoGvmXG07fAmk2f4wtR-B-t3wlz0kYNrXl2rpVwTwA,10834
|
|
631
|
+
tapps_agents/simple_mode/workflows/validation_workflow.py,sha256=t54TeoDI60gGJsK7OUVB0wdnYl9bdm_BWHd3AEd56LI,14049
|
|
632
|
+
tapps_agents/suggestions/__init__.py,sha256=xrjWRAR90CPoGr_fdLS8S9t237K1C3rh9Nz29G-c7hs,113
|
|
633
|
+
tapps_agents/suggestions/inline_suggester.py,sha256=QjdcZcbaoHF815YwLBitG_WLGuAtoF1w72DSV35jc_Q,1318
|
|
634
|
+
tapps_agents/templates/__init__.py,sha256=R95H4btz-JmZU1Bj_s3DEuW6VVujNEbx-_FwX24yIPg,156
|
|
635
|
+
tapps_agents/templates/microservice_generator.py,sha256=M4XImz0qKwwXSJjNTmowgcqqY3-InMUHZuvxLN10iz4,7928
|
|
636
|
+
tapps_agents/utils/env_validator.py,sha256=pfook0ff-C8wYR0Gm3Tfs4mPTIDbJi2hKcAzQr86qtg,8719
|
|
637
|
+
tapps_agents/utils/project_cleanup_agent.py,sha256=n6bXfBFeU67nrFBAhn79wcmEZ3RjhETyV1VODUUKMHk,47692
|
|
638
|
+
tapps_agents/workflow/__init__.py,sha256=A6GzJnVMF6IdYglOPck36EYxrAEFTprK2LodSIWL_x4,4688
|
|
639
|
+
tapps_agents/workflow/acceptance_verifier.py,sha256=EqEiNt9X9Ur13VqvkuBqCzzVtM0vQjOSkwJGaC1Oelw,4598
|
|
640
|
+
tapps_agents/workflow/analytics_accessor.py,sha256=XTz3YeJ6PXnZom-xPcDCB4saTcUL0d9IsydswiOKRpI,11152
|
|
641
|
+
tapps_agents/workflow/analytics_alerts.py,sha256=16-S1VIg1fkFwRe7JsJjM6eryB4s_ATnMrA_g9EL9SE,13516
|
|
642
|
+
tapps_agents/workflow/analytics_dashboard_cursor.py,sha256=hJAHYsvsWcdl5D_xG8hQ_79mmge1vl5AyHdnYDMsSvM,11442
|
|
643
|
+
tapps_agents/workflow/analytics_dual_write.py,sha256=Qdgn5SbkTf3PzuXO9-yN98n9MnPRparn3qoT30BzBv8,3277
|
|
644
|
+
tapps_agents/workflow/analytics_integration.py,sha256=XhJHm823Mr9aVD2xjJjLTTuXbX1wBerAtBFC-a3TocM,3705
|
|
645
|
+
tapps_agents/workflow/analytics_query_parser.py,sha256=unUgoCtUXzzDWxYa4YbdssiZ1MqgXAN-O8Bg2pB221M,9319
|
|
646
|
+
tapps_agents/workflow/analytics_visualizer.py,sha256=b0s6hSDn-89tV4NtC1nRZTG2MJwCj7ll5P-op7TWI94,7766
|
|
647
|
+
tapps_agents/workflow/artifact_helper.py,sha256=ZSilzGCiMosmmi-8jEVoWo7K_gFoINvi2TneMIRjaZc,7696
|
|
648
|
+
tapps_agents/workflow/audit_logger.py,sha256=oMlPK-Chn_53ymbmfrskKzYuW_VwEtNMgc16KMCrnd0,7973
|
|
649
|
+
tapps_agents/workflow/auto_execution_config.py,sha256=Tl5qDn3UWQt0pxE9ls_EWdoj_7eM9kRO5X7t1yiDm1g,12133
|
|
650
|
+
tapps_agents/workflow/auto_progression.py,sha256=imzy8OpmP_3OCNk2dU5TQuOXXtzGkoHfGiwRBmIpG0M,21300
|
|
651
|
+
tapps_agents/workflow/branch_cleanup.py,sha256=1V3TmZI8prOUlCtWj8vALxSUCYLOjMMruI6RJKPn_zE,11441
|
|
652
|
+
tapps_agents/workflow/checkpoint.py,sha256=yQzcmVX-5bKe1q-hpL2vVBdLKUcsTFpeM_q8iN35n2k,8300
|
|
653
|
+
tapps_agents/workflow/checkpoint_manager.py,sha256=3qolvlCEhSIRt3vdVFDcAONTBifgHEgaKIBizKwAu_g,5455
|
|
654
|
+
tapps_agents/workflow/code_artifact.py,sha256=2CKuqHYCgnbtqdpuw26J-DkQvUIZo_EZtL4ncVB7lHg,6083
|
|
655
|
+
tapps_agents/workflow/common_enums.py,sha256=kv2Jwqn121RG7xiASLLNP9sSHO7TG-c7iDpYyC9Iloo,2266
|
|
656
|
+
tapps_agents/workflow/confirmation_handler.py,sha256=98DOY0uoptjMEsdV_ClDhlzr_Q96pSlARhaoCiSMJhY,4155
|
|
657
|
+
tapps_agents/workflow/context_analyzer.py,sha256=vIw7MIDGdA0SK3n8EJ1jwitvxDL2MwW7doqhwx9hQnE,8233
|
|
658
|
+
tapps_agents/workflow/context_artifact.py,sha256=a3HPh-puqHp9sWtvt87EHZS67ScsRsFvTFtNbvL0Um4,7895
|
|
659
|
+
tapps_agents/workflow/cursor_chat.py,sha256=846z0DflGcLsGEbVIYBUR5f3P0EwTjyqQ-omCsrOkeU,3086
|
|
660
|
+
tapps_agents/workflow/cursor_executor.py,sha256=too0HuFg1_fyEd6vVOlDAz7skxYD4QIFt1bKEBWbRNQ,97139
|
|
661
|
+
tapps_agents/workflow/cursor_skill_helper.py,sha256=lyH6S2bNIrboDZ0EwHZwIEntQ47g0yKUrr--qPdb7no,18965
|
|
662
|
+
tapps_agents/workflow/dependency_resolver.py,sha256=VVXNc0mEc16g6RDmA3cTPHFTSRSilsYUr6XGvC3uGlY,8679
|
|
663
|
+
tapps_agents/workflow/design_artifact.py,sha256=kLNBTyIhFHgGwSsa1Wzx4tmv96z2RwOmT6TQ0KNQFIY,5354
|
|
664
|
+
tapps_agents/workflow/detector.py,sha256=wgmYPJ5jpX8oekGtiJmGM8mHUYT-IjwVp_hvtvWJpgo,27172
|
|
665
|
+
tapps_agents/workflow/direct_execution_fallback.py,sha256=b3Y8AbtYrvTFMBYpuyo8CPIDhLja1ym7kL8381LLW4M,11349
|
|
666
|
+
tapps_agents/workflow/docs_artifact.py,sha256=j9pOaN_RHkAuK-SgpA1haPPO1jDgmYdqgrzzv-_rJ1A,5534
|
|
667
|
+
tapps_agents/workflow/durable_state.py,sha256=qGjVp5FXSQsKuLtBBWlwwyo9CbKKjU1OwS1jBmDMjJY,24882
|
|
668
|
+
tapps_agents/workflow/enforcer.py,sha256=l2Z3AbP6pYvk1elJeIIYXRVgT0vnF-u_wMGc8imoIog,14819
|
|
669
|
+
tapps_agents/workflow/enhancement_artifact.py,sha256=u5iRONxiE-ZoBipLYd79P7gfMeF3DyNq26uTs0JoyL8,4688
|
|
670
|
+
tapps_agents/workflow/error_recovery.py,sha256=4Yn1ZGRv_gLsVLYgcq0YWyxfUJLC69x8wuVdyCLw9d8,28687
|
|
671
|
+
tapps_agents/workflow/event_bus.py,sha256=o-nGqKMwrhuWhcbGvkuGc8jqlr71tqwKqPqzWEgswdQ,5687
|
|
672
|
+
tapps_agents/workflow/event_log.py,sha256=8WSb0KU9yQgdRFEUjGCEUCmK6BPiSdz3agWTrYKxpYU,22474
|
|
673
|
+
tapps_agents/workflow/events.py,sha256=VKGV-Z0pUTe3jqfFfeLDT43cEb5w5OhnXgj5U_z1vLU,1788
|
|
674
|
+
tapps_agents/workflow/exceptions.py,sha256=dUDNEyz38ocMLoYlhUpQTQpxMzQh926xSwQSyYKTRug,952
|
|
675
|
+
tapps_agents/workflow/execution_graph.py,sha256=8HFGm0ccL3uyTdfGeMUtB4QZvy6bFnlQHUOyey0dvy8,17071
|
|
676
|
+
tapps_agents/workflow/execution_metrics.py,sha256=nvftWr2DIUOm76d7zJLJcMD8m9T9LJRNaAYkZ90lDf8,11714
|
|
677
|
+
tapps_agents/workflow/execution_plan.py,sha256=5ii-SxJJVS6v98Q_VCd4BWEGLeCdTvwBMjkI3zOLyfo,4263
|
|
678
|
+
tapps_agents/workflow/executor.py,sha256=bXlsLL_0KzMK7t3uqNQFOSm_bf7vQcxBK3JG996LIUY,90845
|
|
679
|
+
tapps_agents/workflow/file_utils.py,sha256=ivQUY2VO9JIWF2WwTlSJF7zHVJFqj-BIQqraPusaXr0,5558
|
|
680
|
+
tapps_agents/workflow/gate_evaluator.py,sha256=w0SWBRXhu7ZiZKE7W19Wz2bP3wgGb9Lk3ZEwY8hYfnI,6167
|
|
681
|
+
tapps_agents/workflow/gate_integration.py,sha256=kGqbpkSDr33j8Sa0tNv5uMpEJLtFb5ja65BCDI66JfY,6623
|
|
682
|
+
tapps_agents/workflow/graph_visualizer.py,sha256=StgwaYg8vQWoou2kFgvJG9wiJQhBFP9lvA7wQFx8B18,3686
|
|
683
|
+
tapps_agents/workflow/health_checker.py,sha256=VKK4jeOESnCd0jk7UsR3MfdS6cbRe3suHx4ht534DVQ,7161
|
|
684
|
+
tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMrGSSTAwNmKkU,20538
|
|
685
|
+
tapps_agents/workflow/logging_helper.py,sha256=dJ6knQ575k7PZLxlzyVT6Ewx3-6-XnOlijOC16Zw4zk,8739
|
|
686
|
+
tapps_agents/workflow/manifest.py,sha256=G0IvY5QyFu4zOAwEQdevJH2IRZ0cJS9tu3xNJG_cAk4,19759
|
|
687
|
+
tapps_agents/workflow/marker_writer.py,sha256=fuksJrWzLdE9WqaNZhpgIKX0sWE9zZKDVQRb0CqoX6o,8075
|
|
688
|
+
tapps_agents/workflow/message_formatter.py,sha256=T5ZdrxKSTpHOk52BmMLEhxRz3iVvwhU6KSF5fk6gYz4,5924
|
|
689
|
+
tapps_agents/workflow/messaging.py,sha256=OMq5-eSNT5Yp_QYy8v9uAOx7vHqw0T7AyYUIYbBGTps,11222
|
|
690
|
+
tapps_agents/workflow/metadata_models.py,sha256=YPnSn6HMy7zfu790YMp1XIN1jkX0M-kqexroMkzkFAA,2863
|
|
691
|
+
tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
|
|
692
|
+
tapps_agents/workflow/metrics_integration.py,sha256=kNrb3KfYAsaUE4QMeuzKdlLMeJOlQuDvqcXzFDAVgZ0,7285
|
|
693
|
+
tapps_agents/workflow/migration_utils.py,sha256=Ef28R7k93DiB6-a6ci2zsVZPMcT_EfG3jVxG2-ArRbU,3761
|
|
694
|
+
tapps_agents/workflow/models.py,sha256=Sgs23M4GgfxQHUL7kSPDgjHLP1gvy0RKj1GyTqk3N0c,4087
|
|
695
|
+
tapps_agents/workflow/nlp_config.py,sha256=pFJwNw698nnCVx9hyguhFNUtY-OXZqQrhDAMMR7yLiQ,6592
|
|
696
|
+
tapps_agents/workflow/nlp_error_handler.py,sha256=-mLjjfO-Nr-LD2tiQAn2JC6yZNEoMGOWBil5VYt0yuM,7145
|
|
697
|
+
tapps_agents/workflow/nlp_executor.py,sha256=fmdVmG8PMpbqhEJNMHxchhHlxJbJe4kYolGQUbIMe1Q,6643
|
|
698
|
+
tapps_agents/workflow/nlp_parser.py,sha256=1SMSoe7-3PxzVqlLaKu9QHz9lwp3Y31K3wBQe9AJlq4,18903
|
|
699
|
+
tapps_agents/workflow/observability_dashboard.py,sha256=jcEWNqlkJbEmYlz8FhdwBY3ocrwYY89tSDyJ2EueWKM,16474
|
|
700
|
+
tapps_agents/workflow/observer.py,sha256=sULy4POgZMadMQsev03ss_J7-eQFJSu63GlYgg4hZbc,5879
|
|
701
|
+
tapps_agents/workflow/ops_artifact.py,sha256=So61qvl3F2ANvMzQ1ZZ4ya5wMlFHIiXUxR4mdLquiiE,9020
|
|
702
|
+
tapps_agents/workflow/output_passing.py,sha256=zhtJP-7V5_hBtrgu2mDs4LimdBLo79Zl9vUTJ_Pu7-8,7208
|
|
703
|
+
tapps_agents/workflow/parallel_executor.py,sha256=-Due0ynZfslPS6pEMbilLCzBtg9nWB1I-i0QTVSfPyU,18437
|
|
704
|
+
tapps_agents/workflow/parser.py,sha256=r2T9XGhzY6iyzLBKxDAcmYHqthD_uZ0rKwza_1HExWs,15258
|
|
705
|
+
tapps_agents/workflow/planning_artifact.py,sha256=4fJhE7E9mgbGK1tHY9b3PvCVOuDehLaYc68d0GLKOy4,6259
|
|
706
|
+
tapps_agents/workflow/preset_loader.py,sha256=k40C85a6gyAEvVV_HRj4mRDoBTcZv7UdK-AX9IFXNQY,10957
|
|
707
|
+
tapps_agents/workflow/preset_recommender.py,sha256=8OeEM5TV-XIg6lrUwPoHY4z3rr3iopq7tCqQd4WV0_4,8438
|
|
708
|
+
tapps_agents/workflow/progress_logger.py,sha256=ZBiFo9y4TmdEgBd21nWK73gdNnyHvpL8Aft1cOSSELI,4610
|
|
709
|
+
tapps_agents/workflow/progress_manager.py,sha256=Y677UuKqmceYCc9IVMS2xoCzoemMQzFQr8kRbtmg9sw,10198
|
|
710
|
+
tapps_agents/workflow/progress_monitor.py,sha256=igD8PGYEzhj56eOo5OFBbz7GqeajnDyVnRUkXmPhrHw,6620
|
|
711
|
+
tapps_agents/workflow/progress_updates.py,sha256=tNcf5yS29FMH5_Kx7GgwGPTAAZ-vRXKrDiSJ9NM_rhg,13692
|
|
712
|
+
tapps_agents/workflow/quality_artifact.py,sha256=2XR47Elzyso8DD1n_fBPeCGwvn78Sgttj677_4p7qyU,5106
|
|
713
|
+
tapps_agents/workflow/quality_loopback.py,sha256=MlxfxSbrKnV1yeukKFBC9A0AAQ0YBTnR2IasnK60WbM,3418
|
|
714
|
+
tapps_agents/workflow/recommender.py,sha256=6tyqCAFzgWUaOuCD5-gm0xhvGxrg_xgkQpm1oJRd7l8,15416
|
|
715
|
+
tapps_agents/workflow/remediation_loop.py,sha256=9CRcqsyVdMtc9UbU2zlCi7Tc4lrlq4Zscm21EUy8Fao,5356
|
|
716
|
+
tapps_agents/workflow/result_aggregator.py,sha256=WepAspMKhaUvcSfR0CyjEUIxs1_GXapmVIz7Vk-f6jQ,10908
|
|
717
|
+
tapps_agents/workflow/review_artifact.py,sha256=d8pjIFndQ8Xw9Vwxq683yLne46BwOFAZS3oGBHo7D7U,6601
|
|
718
|
+
tapps_agents/workflow/rules_generator.py,sha256=aYfG8PMf56CIlm5uPk47A05vuB59X-eLGPeg0J9_ptg,13366
|
|
719
|
+
tapps_agents/workflow/schema_validator.py,sha256=i3aVah_Jr0kZ5be6zlLr-MFUvAGaj1uygEl4EOQITQo,18348
|
|
720
|
+
tapps_agents/workflow/session_handoff.py,sha256=MIxJgBkcdMWUE7XAisBUGbZ788g7PyXEj7LiJ14WdvM,5368
|
|
721
|
+
tapps_agents/workflow/skill_invoker.py,sha256=9wvdL06emzkH2qHQHNNwx9q6Jy6G44oG61OlPw10I7A,24118
|
|
722
|
+
tapps_agents/workflow/state_manager.py,sha256=-M8emsu_U6z-BaB8x_3AYztx6kzxNMqDtnchaufMR7U,29611
|
|
723
|
+
tapps_agents/workflow/state_persistence_config.py,sha256=Pz6dW95atBMoYqzLTviOw9B8N8cvoBexAyj3aODQAn4,12370
|
|
724
|
+
tapps_agents/workflow/status_monitor.py,sha256=fgHyKkCY-KdIhOi9Fhh_xnOg1h158qf6yakmMNbdNtM,17807
|
|
725
|
+
tapps_agents/workflow/step_checkpoint.py,sha256=WaeEFHzGAyBPye9GV-MCLC_73GbvtbwKMDT59PM0Bkk,9749
|
|
726
|
+
tapps_agents/workflow/step_details.py,sha256=SVAaij390oLjBeh6cqQqKpzzZkxgB7ORtlne_vopZSI,5551
|
|
727
|
+
tapps_agents/workflow/story_models.py,sha256=aNj-c3JyiAaT2PqyWuMsmTqLQoTZ09U7lCyi6zDV3fI,4742
|
|
728
|
+
tapps_agents/workflow/streaming.py,sha256=jIZmTDKFzNNy6fStggPIbQfCKMyAnXzIawsoX9Bpxzk,14536
|
|
729
|
+
tapps_agents/workflow/suggestion_engine.py,sha256=6Da74J9OBwl5r95Rk9cJnGDzkWI-HjvsGejQeYlyq1w,20662
|
|
730
|
+
tapps_agents/workflow/testing_artifact.py,sha256=BHYsrjm0VFEA8lMRmYaRTeKBJlQncESs2OZu4Ks1tRU,5890
|
|
731
|
+
tapps_agents/workflow/timeline.py,sha256=qJgQC01DU4gRZrBUmEbf5VPtkxcl70ej4QhqTFNr1Xs,5413
|
|
732
|
+
tapps_agents/workflow/token_integration.py,sha256=EaguqGlJL7TUex7_TP9Oum4EPx6utcrbgNTpVJ4IB_E,7138
|
|
733
|
+
tapps_agents/workflow/validation.py,sha256=jd588jE9A3WiJzgHbYSR-HjTqObxzcxjPM1yjhbLpO0,7734
|
|
734
|
+
tapps_agents/workflow/visual_feedback.py,sha256=ePDbkrU-Ze73c8__AhigbSiyrTBVkXOZ3FTHP8uAatY,13485
|
|
735
|
+
tapps_agents/workflow/workflow_chain.py,sha256=YkeLQm9AheGmQBAHUctzjvTllG6Iu9ED-1oem3tLglo,3034
|
|
736
|
+
tapps_agents/workflow/workflow_summary.py,sha256=XL5TxQKY0GpjA_dCYbyKGDRiy6j_jzilxL_pfW6zcYE,7117
|
|
737
|
+
tapps_agents/workflow/worktree_manager.py,sha256=XX7WGpSqVuAuuJVGJ0z5esObB6wZdzCPhu6ZcuAhMwQ,25054
|
|
738
|
+
tapps_agents/workflow/agent_handlers/__init__.py,sha256=SBrEptwbooD4odk4BqLfszTz_vUL_PPmWL3ji5JZVQg,1204
|
|
739
|
+
tapps_agents/workflow/agent_handlers/analyst_handler.py,sha256=xXd4m4suPzz1sq9iC9Di4dNMPMc429X16HRsgFIhGqY,2476
|
|
740
|
+
tapps_agents/workflow/agent_handlers/architect_handler.py,sha256=71xb3xXuwEMCrw4e0swM6W-Wo4j6nJpxaZ3qNUXJpI4,4002
|
|
741
|
+
tapps_agents/workflow/agent_handlers/base.py,sha256=I-zSP1_RgO_gW3bk0JeaM73Ofyxn_mdr9CJig1R3LfE,2204
|
|
742
|
+
tapps_agents/workflow/agent_handlers/debugger_handler.py,sha256=_hw2jOX9-ZjmwmjCs0bygJf4AHWIzyYizDfCYmI8tW8,3140
|
|
743
|
+
tapps_agents/workflow/agent_handlers/designer_handler.py,sha256=4xwLz5FKPAMZb6uSUmGlUDsQ86tI158owAs2lIoIYcA,3844
|
|
744
|
+
tapps_agents/workflow/agent_handlers/documenter_handler.py,sha256=fFN_dWXKuI_9kA9SdN-EUQvOLbqDXIW_ttA0H9T_FB0,3199
|
|
745
|
+
tapps_agents/workflow/agent_handlers/enhancer_handler.py,sha256=FYny7CpHZ4ERxFmomsTZg_Jj3k-mtjmQOXhlRiWiARU,4775
|
|
746
|
+
tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=MIkCz3Wnwc_ao-ZwSDJqivnSQuXis_rh5YGNv5hOlDo,9451
|
|
747
|
+
tapps_agents/workflow/agent_handlers/ops_handler.py,sha256=i9hZSlHcDPgHJxMtTEBqBFEK_ObSWsOCG-xEGw9gOH0,1759
|
|
748
|
+
tapps_agents/workflow/agent_handlers/orchestrator_handler.py,sha256=O-enHmbWyv6fyolmOsO2qSrh0uybtTn0dVAUacwMgVk,1237
|
|
749
|
+
tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=C4eSHqYibdffQFDN413SCxukPlF1mBAzA9FESDVBvW0,3351
|
|
750
|
+
tapps_agents/workflow/agent_handlers/registry.py,sha256=f0SP88aF4TOHCHHvA3ulWov0lXxsNSyo4Lb_V6WtBqo,3494
|
|
751
|
+
tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=uE_t8D8n3EX3sZLJkDI_mU4BGXQjC-RVQ04E4dFtP8I,4166
|
|
752
|
+
tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=jz9h2QaqgzLCTxo6EmbMs5mR9NrVhhfAI77ELh-mcrI,2180
|
|
753
|
+
tapps_agents-3.6.0.dist-info/licenses/LICENSE,sha256=11SbOWSlND6mixUEch0XrGX0OTILhT1CQeg6wzGFqKo,1063
|
|
754
|
+
tapps_agents-3.6.0.dist-info/METADATA,sha256=JB01RvKJ-YYvkD8YZO69MHChndExqU394aakhKelTeQ,40739
|
|
755
|
+
tapps_agents-3.6.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
756
|
+
tapps_agents-3.6.0.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
|
|
757
|
+
tapps_agents-3.6.0.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
|
|
758
|
+
tapps_agents-3.6.0.dist-info/RECORD,,
|