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
|
@@ -1,672 +1,672 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tapps-agents
|
|
3
|
-
Version: 3.
|
|
4
|
-
Summary: A specification framework for defining, configuring, and orchestrating coding agents
|
|
5
|
-
Author: Tapps
|
|
6
|
-
Maintainer: Tapps
|
|
7
|
-
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/wtthornton/TappsCodingAgents
|
|
9
|
-
Project-URL: Repository, https://github.com/wtthornton/TappsCodingAgents
|
|
10
|
-
Project-URL: Documentation, https://github.com/wtthornton/TappsCodingAgents
|
|
11
|
-
Project-URL: Issues, https://github.com/wtthornton/TappsCodingAgents/issues
|
|
12
|
-
Keywords: ai,agents,coding,workflow,automation
|
|
13
|
-
Classifier: Development Status :: 4 - Beta
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
-
Requires-Python: >=3.12
|
|
20
|
-
Description-Content-Type: text/markdown
|
|
21
|
-
License-File: LICENSE
|
|
22
|
-
Requires-Dist: pydantic>=2.12.5
|
|
23
|
-
Requires-Dist: httpx>=0.28.1
|
|
24
|
-
Requires-Dist: pyyaml>=6.0.3
|
|
25
|
-
Requires-Dist: aiohttp>=3.13.3
|
|
26
|
-
Requires-Dist: psutil>=7.2.
|
|
27
|
-
Requires-Dist: radon>=6.0.1
|
|
28
|
-
Requires-Dist: bandit>=1.9.
|
|
29
|
-
Requires-Dist: coverage>=7.13.
|
|
30
|
-
Requires-Dist: jinja2>=3.1.6
|
|
31
|
-
Requires-Dist: packaging<27,>=23.2
|
|
32
|
-
Requires-Dist: rich>=14.2
|
|
33
|
-
Requires-Dist: aiofiles>=25.1.0
|
|
34
|
-
Provides-Extra: dev
|
|
35
|
-
Requires-Dist: ruff<1.0,>=0.
|
|
36
|
-
Requires-Dist: mypy<2.0,>=1.19.1; extra == "dev"
|
|
37
|
-
Requires-Dist: types-PyYAML>=6.0.12.20250915; extra == "dev"
|
|
38
|
-
Requires-Dist: pytest>=9.0.2; extra == "dev"
|
|
39
|
-
Requires-Dist: pytest-asyncio>=1.3.0; extra == "dev"
|
|
40
|
-
Requires-Dist: pytest-cov>=7.0.0; extra == "dev"
|
|
41
|
-
Requires-Dist: pytest-mock>=3.15.1; extra == "dev"
|
|
42
|
-
Requires-Dist: pytest-timeout>=2.4.0; extra == "dev"
|
|
43
|
-
Requires-Dist: pytest-xdist>=3.8.0; extra == "dev"
|
|
44
|
-
Requires-Dist: pytest-sugar>=1.1.1; extra == "dev"
|
|
45
|
-
Requires-Dist: pytest-html>=4.1.1; extra == "dev"
|
|
46
|
-
Requires-Dist: pytest-rich>=0.2.0; extra == "dev"
|
|
47
|
-
Requires-Dist: pip-audit>=2.10.0; extra == "dev"
|
|
48
|
-
Requires-Dist: pip-tools>=7.5.2; extra == "dev"
|
|
49
|
-
Provides-Extra: reporting
|
|
50
|
-
Requires-Dist: plotly>=6.5.2; extra == "reporting"
|
|
51
|
-
Provides-Extra: dependency-analysis
|
|
52
|
-
Requires-Dist: pipdeptree>=2.30.0; extra == "dependency-analysis"
|
|
53
|
-
Dynamic: license-file
|
|
54
|
-
|
|
55
|
-
# TappsCodingAgents
|
|
56
|
-
|
|
57
|
-
[](https://www.python.org/downloads/)
|
|
58
|
-
[](LICENSE)
|
|
59
|
-
[](README.md)
|
|
60
|
-
[](CHANGELOG.md)
|
|
61
|
-
|
|
62
|
-
**A specification framework for defining, configuring, and orchestrating coding agents.**
|
|
63
|
-
|
|
64
|
-
TappsCodingAgents helps teams build and orchestrate AI coding agents with **quality gates**, **Cursor IDE integration**, and **full SDLC workflows**—so you get consistent, traceable results instead of one-off AI edits.
|
|
65
|
-
|
|
66
|
-
**Highlights:** 14 workflow agents (review, implement, test, fix, plan, …) · **Simple Mode** for natural language (`@simple-mode *build "feature"`) · Cursor Skills + Claude Desktop · 11 YAML workflow presets · Code scoring, experts, and MCP gateway · **Adaptive Learning** system that auto-generates experts and improves scoring for first-pass code correctness.
|
|
67
|
-
|
|
68
|
-
**Prerequisites:** Python 3.13+, [Cursor IDE](https://cursor.com) or [Claude Desktop](https://claude.ai). Optional: [Context7](https://context7.com) API key for library docs.
|
|
69
|
-
|
|
70
|
-
---
|
|
71
|
-
|
|
72
|
-
## Table of Contents
|
|
73
|
-
|
|
74
|
-
- [Quick Start (5 min)](#-cursor-quick-start-5-minutes)
|
|
75
|
-
- [Simple Mode (New Users)](#-simple-mode-new-users)
|
|
76
|
-
- [Key Features](#key-features)
|
|
77
|
-
- [Documentation](#documentation)
|
|
78
|
-
- [Contributing](#contributing)
|
|
79
|
-
- [For Framework Developers](#for-framework-developers--contributors)
|
|
80
|
-
|
|
81
|
-
---
|
|
82
|
-
|
|
83
|
-
## Overview
|
|
84
|
-
|
|
85
|
-
> **Note:** This project both **develops** the framework and **uses** it for its own development (self-hosting). See [Project Context](docs/PROJECT_CONTEXT.md).
|
|
86
|
-
|
|
87
|
-
**In the box:**
|
|
88
|
-
- **14 workflow agents** — Analyst, Planner, Architect, Designer, Implementer, Tester, Debugger, Documenter, Reviewer, Improver, Ops, Orchestrator, Enhancer, Evaluator
|
|
89
|
-
- **Simple Mode** — `@simple-mode *build "feature"`, `*review`, `*fix`, `*test`, and more in Cursor
|
|
90
|
-
- **Cursor Skills + Claude Desktop** — All agents as `@agent *command`; 15 Claude Desktop commands
|
|
91
|
-
- **11 YAML workflow presets** — rapid-dev, full-sdlc, maintenance, quality, quick-fix, and others
|
|
92
|
-
- **Experts & quality** — 16 built-in experts, 7-category code scoring, MCP gateway (Context7, Playwright, Git, …)
|
|
93
|
-
- **Adaptive Learning** — Auto-generates experts from usage patterns, adaptively adjusts scoring weights, improves expert voting, and optimizes for first-pass code correctness
|
|
94
|
-
|
|
95
|
-
For the full list, see [Key Features](#key-features) and [Documentation](docs/README.md).
|
|
96
|
-
|
|
97
|
-
### How it works (no confusion version)
|
|
98
|
-
|
|
99
|
-
- **Cursor is the LLM runtime**: Skills use the developer's configured model in Cursor (Auto or pinned).
|
|
100
|
-
- **This framework is the tooling layer**: workflows, quality tools, reporting, worktrees, caching.
|
|
101
|
-
- **Cursor-native execution**: All LLM operations are handled by Cursor via Skills. No local LLM required.
|
|
102
|
-
|
|
103
|
-
See:
|
|
104
|
-
- `docs/HOW_IT_WORKS.md`
|
|
105
|
-
- `docs/CURRENT_DEFAULTS.md`
|
|
106
|
-
- `docs/PR_MODE_GUIDE.md`
|
|
107
|
-
|
|
108
|
-
### 🚀 Cursor Quick Start (5 minutes)
|
|
109
|
-
|
|
110
|
-
If you're using **Cursor IDE**, get started quickly:
|
|
111
|
-
|
|
112
|
-
1. **Install the framework:**
|
|
113
|
-
|
|
114
|
-
Ensure Python 3.13+ (`python --version`). On Windows with multiple versions use `py -3.13`.
|
|
115
|
-
|
|
116
|
-
**For consuming projects (recommended):**
|
|
117
|
-
```bash
|
|
118
|
-
# Install from PyPI (clean install, framework code only)
|
|
119
|
-
pip install tapps-agents
|
|
120
|
-
# or specific version:
|
|
121
|
-
pip install tapps-agents==3.5.39
|
|
122
|
-
```
|
|
123
|
-
**Windows:** If `tapps-agents` is not found after install (user Scripts often not on PATH), use a project venv or run `python -m tapps_agents.cli` instead. See [Troubleshooting CLI installation](docs/TROUBLESHOOTING_CLI_INSTALLATION.md).
|
|
124
|
-
|
|
125
|
-
**For framework development (contributors):**
|
|
126
|
-
```bash
|
|
127
|
-
# Clone repository and install in editable mode
|
|
128
|
-
git clone https://github.com/wtthornton/TappsCodingAgents.git
|
|
129
|
-
cd TappsCodingAgents
|
|
130
|
-
python3.13 -m pip install -e .
|
|
131
|
-
# Windows: py -3.13 -m pip install -e .
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
After installing, run `tapps-agents doctor` (or `python -m tapps_agents.cli doctor`) to verify the setup.
|
|
135
|
-
|
|
136
|
-
2. **Initialize Cursor integration:**
|
|
137
|
-
|
|
138
|
-
Run `init` from your **project root**, not from the TappsCodingAgents framework directory.
|
|
139
|
-
|
|
140
|
-
```bash
|
|
141
|
-
# Correct: from your project
|
|
142
|
-
cd /path/to/your-project
|
|
143
|
-
tapps-agents init
|
|
144
|
-
# If 'tapps-agents' not found: python -m tapps_agents.cli init
|
|
145
|
-
|
|
146
|
-
# Wrong: from the framework directory (creates config in the wrong place)
|
|
147
|
-
# cd /path/to/TappsCodingAgents && tapps-agents init
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
Optional: `tapps-agents init --hooks` creates `.tapps-agents/hooks.yaml` and `.tapps-agents/context/` from templates (all hooks disabled by default). Use `tapps-agents task create|list|run` for task specs and multi-session workflows; see [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md).
|
|
151
|
-
|
|
152
|
-
This installs:
|
|
153
|
-
- ✅ **Cursor Skills** (`.claude/skills/`) - Use `@agent *command` in Cursor IDE
|
|
154
|
-
- ✅ **Claude Desktop Commands** (`.claude/commands/`) - Use `@command` in Claude Desktop
|
|
155
|
-
- ✅ **Cursor Rules** (`.cursor/rules/`)
|
|
156
|
-
- ✅ **Configuration** (`.tapps-agents/config.yaml`) - Tech stack detection, quality thresholds
|
|
157
|
-
- ✅ **Workflow Presets** (`workflows/presets/`) - full-sdlc, rapid-dev, fix, quality, brownfield-analysis
|
|
158
|
-
- ✅ **MCP Config** (`.cursor/mcp.json`) - Context7 for library docs (optional)
|
|
159
|
-
- ✅ **Framework version** (`.tapps-agents/.framework-version`) - Installed package version
|
|
160
|
-
- ✅ **Beads (bd)** - When `tools/bd` exists, `scripts/set_bd_path.ps1` is added if missing; init hints `bd init` / `bd doctor --fix` when `.beads` is missing. Set `beads.required: true` to make Beads mandatory (workflows fail if bd unavailable). See [Beads Integration](docs/BEADS_INTEGRATION.md).
|
|
161
|
-
|
|
162
|
-
**Note:** If you get "command not found" (common on Windows with user pip installs), use `python -m tapps_agents.cli` instead of `tapps-agents`, or use a project venv. See [Troubleshooting CLI installation](docs/TROUBLESHOOTING_CLI_INSTALLATION.md) for details.
|
|
163
|
-
|
|
164
|
-
3. **Try it in Cursor IDE:**
|
|
165
|
-
- Open Cursor chat
|
|
166
|
-
- Type: `@reviewer *help`
|
|
167
|
-
- Type: `@implementer *help`
|
|
168
|
-
- Type: `@tester *help`
|
|
169
|
-
- Type: `@evaluator *help`
|
|
170
|
-
|
|
171
|
-
4. **Or use Claude Desktop:**
|
|
172
|
-
- Type: `@review src/api/auth.py`
|
|
173
|
-
- Type: `@build "Create a user authentication feature"`
|
|
174
|
-
- Type: `@test src/api/auth.py`
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
### 🎬 Try the Demo (5 minutes)
|
|
178
|
-
|
|
179
|
-
**Want to see it in action?** Run our interactive demo:
|
|
180
|
-
|
|
181
|
-
```bash
|
|
182
|
-
# Run the automated demo script
|
|
183
|
-
python demo/run_demo.py
|
|
184
|
-
|
|
185
|
-
# Or follow the quick start guide
|
|
186
|
-
cat demo/DEMO_QUICK_START.md
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
The demo showcases:
|
|
190
|
-
- ✅ Code scoring with objective metrics
|
|
191
|
-
- ✅ Code review with detailed feedback
|
|
192
|
-
- ✅ Quality tools (linting, type checking)
|
|
193
|
-
- ✅ Code generation workflows
|
|
194
|
-
|
|
195
|
-
See [Demo Plan](docs/DEMO_PLAN.md) for complete demo scenarios and instructions.
|
|
196
|
-
|
|
197
|
-
### 🎯 Simple Mode (New Users)
|
|
198
|
-
|
|
199
|
-
**New to TappsCodingAgents?** Try **Simple Mode** - a streamlined, task-first interface that hides complexity while showcasing the power of the framework:
|
|
200
|
-
|
|
201
|
-
1. **Initialize project** (first time setup):
|
|
202
|
-
```bash
|
|
203
|
-
# If 'tapps-agents' command not found, use:
|
|
204
|
-
python -m tapps_agents.cli init
|
|
205
|
-
|
|
206
|
-
# OR if entry point is working:
|
|
207
|
-
tapps-agents init
|
|
208
|
-
```
|
|
209
|
-
This sets up configuration, Cursor Rules, workflow presets, Skills, and Claude Desktop Commands.
|
|
210
|
-
|
|
211
|
-
2. **Enable Simple Mode:**
|
|
212
|
-
```bash
|
|
213
|
-
tapps-agents simple-mode on
|
|
214
|
-
```
|
|
215
|
-
|
|
216
|
-
3. **Run the onboarding wizard** (optional, recommended for new users):
|
|
217
|
-
```bash
|
|
218
|
-
tapps-agents simple-mode init
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
4. **Use Simple Mode in Cursor chat:**
|
|
222
|
-
|
|
223
|
-
Open Cursor chat and use natural language commands with `@simple-mode`:
|
|
224
|
-
```
|
|
225
|
-
@simple-mode Build a user authentication module
|
|
226
|
-
@simple-mode Review my authentication code
|
|
227
|
-
@simple-mode Fix the error in auth.py
|
|
228
|
-
@simple-mode Add tests for service.py
|
|
229
|
-
@simple-mode Explore the authentication system
|
|
230
|
-
@simple-mode Refactor legacy code in utils.py
|
|
231
|
-
@simple-mode Plan analysis for OAuth2 migration
|
|
232
|
-
@simple-mode PR "Add user authentication feature"
|
|
233
|
-
@simple-mode *enhance "Add OAuth2 login"
|
|
234
|
-
@simple-mode *breakdown "Migrate to microservices"
|
|
235
|
-
@simple-mode *todo ready
|
|
236
|
-
@simple-mode *epic docs/prd/epic-51-yaml-automation-quality-enhancement.md
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
Simple Mode automatically detects your intent and orchestrates the right agents.
|
|
240
|
-
|
|
241
|
-
**Note:** Simple Mode natural language commands work in Cursor chat (via `@simple-mode` skill). CLI management commands (`on`, `off`, `status`, `init`) are available for configuration.
|
|
242
|
-
|
|
243
|
-
**Simple Mode Features:**
|
|
244
|
-
- ✅ **Task-first interface** - Focus on what you want to achieve
|
|
245
|
-
- ✅ **Natural language commands** - Use plain English
|
|
246
|
-
- ✅ **Guided onboarding** - Interactive wizard for new users
|
|
247
|
-
- ✅ **Zero-config mode** - Smart defaults with auto-detection
|
|
248
|
-
- ✅ **Learning progression** - Unlock advanced features as you learn
|
|
249
|
-
- ✅ **Friendly error handling** - Clear messages with recovery suggestions
|
|
250
|
-
|
|
251
|
-
**Full Documentation:**
|
|
252
|
-
- [Simple Mode Guide](docs/SIMPLE_MODE_GUIDE.md) - Complete Simple Mode documentation
|
|
253
|
-
- [Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)
|
|
254
|
-
- [Cursor Rules Setup Guide](docs/CURSOR_RULES_SETUP.md)
|
|
255
|
-
- [Cursor Integration Review](CURSOR_INTEGRATION_REVIEW.md) - Comprehensive integration status
|
|
256
|
-
|
|
257
|
-
### Enhanced Features (v1.6.0+)
|
|
258
|
-
|
|
259
|
-
- **Code Scoring System**: Objective quality metrics (complexity, security, maintainability)
|
|
260
|
-
- **Tiered Context Injection**: 90%+ token savings with intelligent caching
|
|
261
|
-
- **Adaptive Workflow Checkpoints** (v3.5.37+): Automatic workflow optimization
|
|
262
|
-
- 3 strategic checkpoints detect when workflows are overkill
|
|
263
|
-
- Switches to simpler workflows automatically (with user confirmation)
|
|
264
|
-
- Skips optional steps when quality is excellent (≥80)
|
|
265
|
-
- Saves 20K-40K tokens per optimization
|
|
266
|
-
- See [Checkpoint System Guide](docs/CHECKPOINT_SYSTEM_GUIDE.md)
|
|
267
|
-
- **MCP Gateway**: Unified Model Context Protocol interface for tool access
|
|
268
|
-
- **Context7 MCP Server**: Library documentation lookup (required, auto-configured)
|
|
269
|
-
- **Playwright MCP Server**: Browser automation for E2E testing (optional, auto-detected)
|
|
270
|
-
- **Beads (bd)** (optional or required): Task tracking; `tapps-agents beads`; doctor reports bd status; init hints or mandates `bd init` when detected. Set `beads.required: true` to make workflows fail when bd unavailable. [Beads Integration](docs/BEADS_INTEGRATION.md)
|
|
271
|
-
- **Hooks** (opt-in): Run shell commands at UserPromptSubmit, PostToolUse, SessionStart, SessionEnd, and WorkflowComplete. Configure in `.tapps-agents/hooks.yaml`; use `tapps-agents init --hooks` to create a template. [Hooks Guide](docs/HOOKS_GUIDE.md)
|
|
272
|
-
- **Task management / multi-session**: Task specs in `.tapps-agents/task-specs/`, `tapps-agents task create|list|show|update|close|hydrate|dehydrate|run`, and hydration/dehydration for Beads. [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md)
|
|
273
|
-
- **YAML Workflow Definitions**: Declarative, version-controlled orchestration with strict schema enforcement
|
|
274
|
-
- **Greenfield/Brownfield Workflows**: Context-appropriate workflows for project types
|
|
275
|
-
- **YAML-First Architecture** ✅ (Epics 6-10 Complete):
|
|
276
|
-
- **Strict Schema Enforcement** (Epic 6): All YAML structures validated and executed, no "YAML theater"
|
|
277
|
-
- **Task Manifest Generation** (Epic 7): Auto-generated task checklists from workflow YAML + state
|
|
278
|
-
- **Automated Documentation** (Epic 8): Cursor Rules auto-generated from workflow YAML
|
|
279
|
-
- **Documentation Alignment** (Epic 10): All documentation aligned with YAML-first architecture
|
|
280
|
-
- **Cursor AI Integration**: Complete 7-phase integration with Cursor AI
|
|
281
|
-
- Cursor Skills for all 14 agents
|
|
282
|
-
- Multi-agent orchestration
|
|
283
|
-
- Context7 KB-first caching
|
|
284
|
-
|
|
285
|
-
## Current Status
|
|
286
|
-
|
|
287
|
-
**Version** 3.5.39 · **Production ready** · All 7 Cursor AI integration phases complete · YAML-first architecture (Epics 6–10) · 14 workflow agents + Simple Mode · 16 built-in experts.
|
|
288
|
-
|
|
289
|
-
📋 [Changelog](CHANGELOG.md) · [Cursor AI Integration Plan](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md) · [YAML Workflow Design](docs/YAML_WORKFLOW_ARCHITECTURE_DESIGN.md)
|
|
290
|
-
|
|
291
|
-
✅ **Core Framework Complete:**
|
|
292
|
-
- **All 14 Workflow Agents** ✅ (analyst, planner, architect, designer, implementer, tester, debugger, documenter, reviewer, improver, ops, orchestrator, enhancer, evaluator)
|
|
293
|
-
- **Complete Code Scoring System** ✅ (7 categories: complexity, security, maintainability, test_coverage, performance, structure, devex)
|
|
294
|
-
- **Instruction-Based Architecture** ✅ - Agents prepare structured instructions for Cursor Skills execution
|
|
295
|
-
- **Tiered Context System** ✅ (90%+ token savings, 3 tiers with caching)
|
|
296
|
-
- **Unified Cache Architecture** ✅ (Single interface for all caching systems with hardware auto-detection)
|
|
297
|
-
- **MCP Gateway** ✅ (Unified tool access with 5 servers: Context7, Playwright, Filesystem, Git, Analysis)
|
|
298
|
-
- **MCP Server Detection**: Automatic detection of Context7 and Playwright MCP servers
|
|
299
|
-
- **Setup Instructions**: Auto-generated setup instructions when MCP servers are missing
|
|
300
|
-
- **Status Reporting**: `tapps-agents doctor` reports MCP server configuration status and Beads (bd) status (optional)
|
|
301
|
-
- **YAML Workflow Definitions** ✅ (Parser, executor, artifact tracking, conditional steps, gates)
|
|
302
|
-
- **YAML-First Architecture** ✅ (Epics 6-10): YAML as single source of truth with strict schema enforcement
|
|
303
|
-
- **Auto-Generated Artifacts** ✅: Task manifests, Cursor Rules docs
|
|
304
|
-
- **Dependency-Based Parallelism**: Automatic parallel execution based on step dependencies (no `parallel_tasks`)
|
|
305
|
-
- **11 Workflow Presets**: rapid-dev (enhance step), full-sdlc (optional enhance before requirements), maintenance, quality, quick-fix, feature-implementation, brownfield-analysis, simple-new-feature, simple-full, simple-improve-quality, simple-fix-issues
|
|
306
|
-
- **Industry Experts Framework** ✅ (Weighted decision-making, domain configuration, expert registry)
|
|
307
|
-
- **16 Built-in Experts**: Security, Performance, Testing, Data Privacy, Accessibility, UX, Code Quality, Software Architecture, DevOps, Documentation, AI Frameworks, Observability, API Design, Cloud Infrastructure, Database, Agent Learning
|
|
308
|
-
- **100+ Knowledge Files**: Across 13 knowledge domains
|
|
309
|
-
- **Configuration-Only Experts**: YAML-based expert definition, no code classes required
|
|
310
|
-
- **RAG Integration**: Simple file-based and vector-based RAG for knowledge retrieval
|
|
311
|
-
- **Simple Mode** ✅ (15+ orchestrators: build, review, fix, test, explore, refactor, plan-analysis, pr, epic, full, enhance, breakdown, todo, brownfield, validate, resume)
|
|
312
|
-
- **Scale-Adaptive Workflow Selection** ✅ (Project type auto-detection, workflow recommendation)
|
|
313
|
-
- **State Management** ✅ (Advanced workflow state persistence with checkpointing, migration, versioning, resume)
|
|
314
|
-
- **Analytics & Health** ✅ (CLI: `health check`, `health overview`, `health usage dashboard|agents|workflows|system|trends`; performance metrics, trends, system health monitoring)
|
|
315
|
-
- **Governance & Safety** ✅ (Secrets/PII filtering, knowledge ingestion safety)
|
|
316
|
-
- **Comprehensive test suite** ✅ (1200+ unit tests, integration tests, and E2E tests with parallel execution support - see `tests/`)
|
|
317
|
-
|
|
318
|
-
✅ **Enhancer Agent - Prompt Enhancement Utility (v1.6.0)**
|
|
319
|
-
- **7-Stage Enhancement Pipeline** - Transforms simple prompts into comprehensive, context-aware prompts
|
|
320
|
-
- **Industry Expert Integration** - Automatic domain detection and weighted expert consultation
|
|
321
|
-
- **Multiple Usage Modes** - Full enhancement, quick enhancement, stage-by-stage execution
|
|
322
|
-
- **Session Management** - Resume interrupted enhancements
|
|
323
|
-
- **Multiple Output Formats** - Markdown, JSON, YAML
|
|
324
|
-
- **Workflow integration** - full-sdlc (optional enhance step before requirements), rapid-dev, and Epic story workflows run the enhancer when an `enhance` step is present (EnhancerHandler). AnalystHandler and PlannerHandler consume `enhanced_prompt`/`description` from state.
|
|
325
|
-
- **CLI auto-enhancement** - `auto_enhancement` in config enhances low-quality prompts for implementer, planner, analyst (see [Configuration](docs/CONFIGURATION.md#automatic-prompt-enhancement-auto_enhancement)). `PROMPT_ARGUMENT_MAP` and `commands` control which agent/command pairs are eligible.
|
|
326
|
-
- See [Enhancer Agent Guide](docs/ENHANCER_AGENT.md) for details
|
|
327
|
-
|
|
328
|
-
🎉 **All Core Framework Features Complete!**
|
|
329
|
-
|
|
330
|
-
✅ **January 2026 Critical Features Complete:**
|
|
331
|
-
- **Custom Skills Support** ✅ - Create, validate, and integrate custom Skills
|
|
332
|
-
- **State Persistence Configuration** ✅ - Configurable checkpointing and cleanup policies
|
|
333
|
-
- **Governance & Safety Layer** ✅ - Security and safety controls for knowledge ingestion
|
|
334
|
-
- **Epic 20: Complexity Reduction** ✅ - Refactored high-complexity functions (122→C, 114→C, 66→C, 60→C, 64→A/B)
|
|
335
|
-
- Agent handler extraction using Strategy Pattern
|
|
336
|
-
- Workflow execution control flow simplification
|
|
337
|
-
- Zero code duplication between execution paths
|
|
338
|
-
- See [Complexity Reduction Summary](docs/COMPLEXITY_REDUCTION_EPIC_20.md)
|
|
339
|
-
|
|
340
|
-
## Upcoming Enhancements (Planned)
|
|
341
|
-
|
|
342
|
-
### SDLC Quality Engine Improvements
|
|
343
|
-
|
|
344
|
-
The framework is being enhanced to transform the SDLC from a linear pipeline with score-only gates into a **self-correcting quality engine** that achieves "zero issues" consistently across any codebase.
|
|
345
|
-
|
|
346
|
-
**Key Improvements:**
|
|
347
|
-
- **Pluggable Validation Layer**: Stack-agnostic validation that adapts to detected project profile and repository signals
|
|
348
|
-
- **Comprehensive Verification**: Expansion of "testing" into verification bundle (tests + linters + config checks + security scans + artifact integrity)
|
|
349
|
-
- **Standardized Issues Manifest**: Machine-actionable issue schema (id, severity, category, evidence, repro, suggested_fix, owner_step) for deterministic remediation
|
|
350
|
-
- **Composite Gating Model**: Gates evaluate issues + verification outcomes, not just numeric scores
|
|
351
|
-
- Hard fail conditions: critical issues, verification failures, missing artifacts
|
|
352
|
-
- Soft fail/loopback conditions: high issues above threshold, regression vs baseline, low expert confidence
|
|
353
|
-
- **Bounded Loopback Protocol**: Deterministic remediation with structured fix plans, re-validation, and bounded retries
|
|
354
|
-
- **Traceability Matrix**: Lightweight requirements → stories → validations mapping for completeness verification
|
|
355
|
-
|
|
356
|
-
**Status**: Design phase - See [SDLC Improvements Analysis](SDLC_ISSUES_AND_IMPROVEMENTS_ANALYSIS.md) and [Epic 1: SDLC Quality Engine](docs/prd/epic-1-sdlc-quality-engine.md)
|
|
357
|
-
|
|
358
|
-
### Dynamic Expert & RAG Engine
|
|
359
|
-
|
|
360
|
-
An always-on **Dynamic Knowledge/Expert Orchestrator** that automatically detects project domains, creates and curates experts/knowledge for the current project, and continuously enriches agents with the best available, project-relevant information.
|
|
361
|
-
|
|
362
|
-
**Key Features:**
|
|
363
|
-
- **Automatic Expert Creation**: Framework-controlled technical experts + project-controlled business/domain experts generated from repo signals
|
|
364
|
-
- **Knowledge Ingestion Pipeline**: Auto-fills RAG from project sources (requirements, architecture docs, ADRs), dependency sources (Context7 KB), and operational sources (CI failures, runtime exceptions)
|
|
365
|
-
- **Expert Engine Runtime**: Continuously detects what domain knowledge is needed, proactively consults the right experts, and populates knowledge stores as agents learn
|
|
366
|
-
- **Governance & Safety**: Do-not-index filters for secrets/PII, prompt-injection handling, retention & scope controls
|
|
367
|
-
- **Observability & Quality Improvement**: Metrics tracking (expert confidence, RAG quality, Context7 KB hit rate) with scheduled KB maintenance jobs
|
|
368
|
-
|
|
369
|
-
**Status**: Design phase - See [SDLC Improvements Analysis](SDLC_ISSUES_AND_IMPROVEMENTS_ANALYSIS.md) and [Epic 2: Dynamic Expert & RAG Engine](docs/prd/epic-2-dynamic-expert-rag-engine.md)
|
|
370
|
-
|
|
371
|
-
## Key Features
|
|
372
|
-
|
|
373
|
-
### Two-Layer Agent Model
|
|
374
|
-
|
|
375
|
-
| Layer | Type | Purpose | Count |
|
|
376
|
-
|-------|------|---------|-------|
|
|
377
|
-
| **Knowledge** | Industry Experts | Business domain authority | N (per project) |
|
|
378
|
-
| **Execution** | Workflow Agents | SDLC task execution | 14 (fixed) |
|
|
379
|
-
|
|
380
|
-
### Workflow Agents (14)
|
|
381
|
-
|
|
382
|
-
- **Planning**:
|
|
383
|
-
- **analyst** ✅ - Requirements gathering, stakeholder analysis, tech research, effort estimation, risk assessment, competitive analysis
|
|
384
|
-
- **planner** ✅ - User story creation, task breakdown, story point estimation, acceptance criteria
|
|
385
|
-
- **Design**:
|
|
386
|
-
- **architect** ✅ - System architecture design, design patterns, tech selection, security architecture, boundary definition, architecture diagrams, pattern detection (*detect-patterns)
|
|
387
|
-
- **designer** ✅ - API design, data model design, UI/UX design, wireframes, design systems
|
|
388
|
-
- **Development**:
|
|
389
|
-
- **implementer** ✅ - Code generation, refactoring, file writing with backup support
|
|
390
|
-
- **debugger** ✅ - Error analysis, stack trace analysis, code execution tracing, root cause identification
|
|
391
|
-
- **documenter** ✅ - API documentation, README generation, docstring generation, code documentation
|
|
392
|
-
- **Testing**:
|
|
393
|
-
- **tester** ✅ - Test generation (unit, integration), test execution, coverage analysis
|
|
394
|
-
- **Quality**:
|
|
395
|
-
- **reviewer** ✅ - Code review with 7-category scoring (complexity, security, maintainability, test coverage, performance, structure, devex), actionable feedback with specific issues and line numbers, structured feedback always provided, context-aware quality gates, linting (Ruff), type checking (mypy), duplication detection, security scanning, project analysis, service analysis
|
|
396
|
-
- **improver** ✅ - Code refactoring, performance optimization, quality improvement suggestions
|
|
397
|
-
- **Operations**:
|
|
398
|
-
- **ops** ✅ - Security auditing, compliance checking (GDPR, HIPAA, PCI-DSS), dependency auditing, deployment planning
|
|
399
|
-
- **Orchestration**:
|
|
400
|
-
- **orchestrator** ✅ - Workflow coordination, step sequencing, gate decisions, workflow state management
|
|
401
|
-
- **Enhancement**:
|
|
402
|
-
- **enhancer** ✅ - 7-stage prompt enhancement pipeline (analysis, requirements, architecture, codebase, quality, strategy, synthesis), quick enhancement, stage-by-stage execution, session management
|
|
403
|
-
- **Evaluation**:
|
|
404
|
-
- **evaluator** ✅ - Framework effectiveness analysis, workflow evaluation, improvement recommendations, usage pattern analysis
|
|
405
|
-
|
|
406
|
-
### Code Scoring System
|
|
407
|
-
|
|
408
|
-
The Reviewer Agent includes a comprehensive code scoring system with 5 objective metrics and actionable feedback (2026-01-16):
|
|
409
|
-
|
|
410
|
-
**Enhanced Features:**
|
|
411
|
-
- ✅ **Accurate Test Coverage:** Returns 0.0% when no tests exist (not 5.0-6.0)
|
|
412
|
-
- ✅ **Maintainability Issues:** Specific issues with line numbers, severity, and suggestions
|
|
413
|
-
- ✅ **Structured Feedback:** Always provides actionable feedback (summary, strengths, issues, recommendations, priority)
|
|
414
|
-
- ✅ **Performance Issues:** Performance bottlenecks with line numbers and context
|
|
415
|
-
- ✅ **Accurate Type Checking:** Reflects actual mypy errors (not static 5.0)
|
|
416
|
-
- ✅ **Context-Aware Quality Gates:** Adapts thresholds for new/modified/existing files
|
|
417
|
-
|
|
418
|
-
The Reviewer Agent scoring system includes:
|
|
419
|
-
|
|
420
|
-
1. **Complexity Score** (0-10): Cyclomatic complexity analysis using Radon
|
|
421
|
-
2. **Security Score** (0-10): Vulnerability detection using Bandit + heuristics; npm audit for JS/TS
|
|
422
|
-
3. **Maintainability Score** (0-10): Maintainability Index using Radon MI
|
|
423
|
-
4. **Test Coverage Score** (0-10): Coverage data parsing + heuristic; Vitest/Jest/lcov for JS/TS
|
|
424
|
-
5. **Performance Score** (0-10): Static analysis (function size, nesting depth, pattern detection)
|
|
425
|
-
6. **Structure Score** (0-10): Project layout, key files (README, config, tests), conventions
|
|
426
|
-
7. **DevEx Score** (0-10): Docs (AGENTS.md, CLAUDE.md), config, tooling
|
|
427
|
-
|
|
428
|
-
All metrics are configurable with weighted scoring and quality thresholds.
|
|
429
|
-
|
|
430
|
-
### Industry Experts
|
|
431
|
-
|
|
432
|
-
- **Business Domain Experts** (N): Project-specific domain authorities (not technical specialists)
|
|
433
|
-
- 1:1 mapping: N domains → N experts
|
|
434
|
-
- Weighted decision-making (Primary: 51%, Others: 49%/(N-1))
|
|
435
|
-
- RAG integration (simple file-based and vector-based)
|
|
436
|
-
- Fine-tuning support (LoRA adapters - planned)
|
|
437
|
-
- Consult-based integration with 6 workflow agents (Architect, Implementer, Reviewer, Tester, Designer, Ops)
|
|
438
|
-
- **Built-in Technical Experts** (16): Framework-controlled domain experts
|
|
439
|
-
- Security, Performance, Testing, Data Privacy, Accessibility, UX, Code Quality, Software Architecture, DevOps, Documentation, AI Frameworks, Observability, API Design, Cloud Infrastructure, Database, Agent Learning
|
|
440
|
-
- 100+ knowledge files across 13 knowledge domains
|
|
441
|
-
- Automatic domain detection and expert consultation
|
|
442
|
-
- Project profiling for context-aware guidance
|
|
443
|
-
- **Expert Governance**: Secrets/PII filtering, prompt injection handling, knowledge ingestion safety
|
|
444
|
-
|
|
445
|
-
### CLI Commands
|
|
446
|
-
|
|
447
|
-
**Top-Level Commands:**
|
|
448
|
-
- `init` - Initialize project (Cursor Rules, Skills, config)
|
|
449
|
-
- `create <description>` - Create new project from natural language description
|
|
450
|
-
- `workflow <preset>` - Run workflow presets (rapid, full, fix, quality, hotfix, etc.)
|
|
451
|
-
- `continuous-bug-fix` - Continuously find and fix bugs from test failures (automated bug fixing loop)
|
|
452
|
-
- `score <file>` - Quick code quality scoring (shortcut for `reviewer score`)
|
|
453
|
-
- `doctor` - Environment diagnostics and validation
|
|
454
|
-
- `cursor verify` - Verify Cursor AI integration components
|
|
455
|
-
- `simple-mode <command>` - Simple Mode management (on, off, status, init, configure, progress, full, build, resume, enhance, breakdown, todo)
|
|
456
|
-
- `health <command>` - Health monitoring (check, dashboard, metrics, trends, usage). Use `health usage dashboard|agents|workflows|system|trends` for analytics (formerly `analytics`).
|
|
457
|
-
- `customize <command>` - Agent customization (init)
|
|
458
|
-
- `skill <command>` - Custom Skills management (validate, template)
|
|
459
|
-
- `install-dev` - Install development tools (ruff, mypy, pytest, pip-audit, pipdeptree)
|
|
460
|
-
- `setup-experts` - Expert setup wizard (init, add, remove, list)
|
|
461
|
-
- `status` - Unified status (active worktrees, progress)
|
|
462
|
-
- `generate-rules` - Generate Cursor Rules from workflow YAML
|
|
463
|
-
|
|
464
|
-
**Agent Commands** (use `tapps-agents <agent> help` for details):
|
|
465
|
-
- `analyst` - Requirements gathering, stakeholder analysis, tech research, effort estimation, risk assessment
|
|
466
|
-
- `architect` - System design, architecture diagrams, tech selection, security architecture, boundary definition
|
|
467
|
-
- `debugger` - Error debugging, stack trace analysis, code tracing
|
|
468
|
-
- `designer` - API design, data models, UI/UX design, wireframes, design systems
|
|
469
|
-
- `documenter` - Generate documentation, update README, document APIs
|
|
470
|
-
- `enhancer` - Prompt enhancement (full, quick, stage-by-stage, resume)
|
|
471
|
-
- `evaluator` - Framework effectiveness evaluation, workflow evaluation
|
|
472
|
-
- `implementer` - Code generation, refactoring
|
|
473
|
-
- `improver` - Code refactoring, performance optimization
|
|
474
|
-
- `ops` - Security scanning, compliance checks, dependency auditing, deployment planning, bundle analysis (audit-bundle)
|
|
475
|
-
- `orchestrator` - Workflow management, step coordination, gate decisions
|
|
476
|
-
- `planner` - Create plans, user stories, task breakdowns
|
|
477
|
-
- `reviewer` - Code review, scoring, actionable feedback with specific issues, structured feedback, context-aware quality gates, linting, type checking, reports, duplication detection, security scanning, project/service analysis
|
|
478
|
-
- `tester` - Generate and run tests, test coverage
|
|
479
|
-
|
|
480
|
-
**Workflow State Management:**
|
|
481
|
-
- `workflow state list` - List workflow states
|
|
482
|
-
- `workflow state show <id>` - Show workflow state details
|
|
483
|
-
- `workflow state cleanup` - Cleanup old workflow states
|
|
484
|
-
- `workflow cleanup-branches` - Cleanup workflow worktree branches
|
|
485
|
-
- `workflow resume` - Resume interrupted workflow
|
|
486
|
-
|
|
487
|
-
**Simple Mode Workflows** (in Cursor chat with `@simple-mode`):
|
|
488
|
-
- `*build <description>` - Complete feature development workflow (7 steps)
|
|
489
|
-
- `*review <file>` - Code quality review with improvements
|
|
490
|
-
- `*fix <file> <description>` - Systematic bug fixing workflow
|
|
491
|
-
- `*test <file>` - Test generation and execution
|
|
492
|
-
- `*explore <query>` - Codebase exploration and navigation
|
|
493
|
-
- `*refactor <file>` - Systematic code modernization with safety checks
|
|
494
|
-
- `*plan-analysis <description>` - Safe read-only code analysis and planning
|
|
495
|
-
- `*pr <title>` - Pull request creation with quality scores
|
|
496
|
-
- `*enhance "prompt"` - Prompt enhancement (EnhancerAgent)
|
|
497
|
-
- `*breakdown "prompt"` - Task breakdown (PlannerAgent)
|
|
498
|
-
- `*todo <bd args>` - Beads-backed todo (e.g. ready, create "Title")
|
|
499
|
-
- `*epic <epic-doc.md>` - Execute Epic documents with dependency resolution
|
|
500
|
-
- `*full <description>` - Full SDLC workflow (9 steps)
|
|
501
|
-
|
|
502
|
-
## Project Structure
|
|
503
|
-
|
|
504
|
-
```
|
|
505
|
-
TappsCodingAgents/
|
|
506
|
-
├── requirements/ # Specification documents (see requirements/README.md)
|
|
507
|
-
│ ├── PROJECT_REQUIREMENTS.md # Main requirements document
|
|
508
|
-
│ ├── agent_api.md # Agent API specification
|
|
509
|
-
│ ├── agents.md # Agent types specification
|
|
510
|
-
│ ├── model_profiles.yaml # Model configurations
|
|
511
|
-
│ └── template/ # Templates and schemas
|
|
512
|
-
│
|
|
513
|
-
├── tapps_agents/ # Framework source code
|
|
514
|
-
│ ├── agents/ # All 14 workflow agents
|
|
515
|
-
│ │ ├── reviewer/ # Code review & scoring
|
|
516
|
-
│ │ ├── implementer/ # Code generation
|
|
517
|
-
│ │ ├── tester/ # Test generation
|
|
518
|
-
│ │ └── ... # 11 more agents (14 total)
|
|
519
|
-
│ ├── core/ # Core framework components
|
|
520
|
-
│ ├── context7/ # Context7 KB integration
|
|
521
|
-
│ ├── experts/ # Industry experts framework
|
|
522
|
-
│ ├── workflow/ # Workflow engine
|
|
523
|
-
│ └── mcp/ # MCP Gateway
|
|
524
|
-
│
|
|
525
|
-
├── .claude/ # Cursor Skills (canonical; init copies from tapps_agents/resources/claude)
|
|
526
|
-
├── workflows/ # YAML workflow definitions and presets
|
|
527
|
-
├── examples/ # Example configurations
|
|
528
|
-
├── docs/ # Documentation
|
|
529
|
-
│ ├── implementation/ # EPIC/PHASE plans, IMPROVEMENT_PLAN.json
|
|
530
|
-
│ ├── archive/ # Archived summaries; stories in archive/stories/
|
|
531
|
-
│ ├── releases/ # Release notes
|
|
532
|
-
│ ├── context7/ # Context7 integration
|
|
533
|
-
│ └── operations/ # Deployment, release, package distribution
|
|
534
|
-
├── scripts/ # Utilities (see scripts/README.md)
|
|
535
|
-
├── templates/ # Agent roles, project types, tech stacks, cursor-rules-template
|
|
536
|
-
└── tests/ # Test suite
|
|
537
|
-
├── unit/ # Unit tests (fast, isolated)
|
|
538
|
-
├── integration/ # Integration tests (with real services)
|
|
539
|
-
└── e2e/ # End-to-end tests (see tests/e2e/README.md)
|
|
540
|
-
```
|
|
541
|
-
|
|
542
|
-
## Documentation
|
|
543
|
-
|
|
544
|
-
### Getting Started
|
|
545
|
-
- **[Quick Start Guide](docs/guides/QUICK_START.md)** - 🚀 Get started in 10 minutes
|
|
546
|
-
- **[Simple Mode Guide](docs/SIMPLE_MODE_GUIDE.md)** - 🎯 Simple Mode for new users (task-first, natural language)
|
|
547
|
-
- **[Cursor AI Integration Plan 2025](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md)** - Complete integration roadmap (all 7 phases complete)
|
|
548
|
-
- **[Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)** - Install and use Cursor Skills
|
|
549
|
-
- **[Documentation Index](docs/README.md)** - Complete documentation overview
|
|
550
|
-
- **[API Reference](docs/API.md)** - Python API and CLI documentation
|
|
551
|
-
- **[Enhancer Agent Guide](docs/ENHANCER_AGENT.md)** - Prompt enhancement utility documentation
|
|
552
|
-
|
|
553
|
-
### Complete Command Reference
|
|
554
|
-
- **Cursor Rules**: `.cursor/rules/command-reference.mdc` (installed by `tapps-agents init`) - **Complete command reference with all commands, subcommands, and parameters**
|
|
555
|
-
- **Quick Reference**: `.cursor/rules/quick-reference.mdc` - Quick command reference for common tasks
|
|
556
|
-
- **Agent Capabilities**: `.cursor/rules/agent-capabilities.mdc` - Detailed agent capability descriptions
|
|
557
|
-
- **Simple Mode Guide**: `.cursor/rules/simple-mode.mdc` - Simple Mode workflow documentation
|
|
558
|
-
|
|
559
|
-
**Note**: After running `tapps-agents init`, all command reference documentation is available in `.cursor/rules/` directory. The `command-reference.mdc` file contains the most comprehensive documentation with all commands, subcommands, parameters, and examples.
|
|
560
|
-
|
|
561
|
-
### Core Guides
|
|
562
|
-
- **[Architecture Overview](docs/ARCHITECTURE.md)** - System architecture and design
|
|
563
|
-
- **[Configuration Guide](docs/CONFIGURATION.md)** - Complete configuration reference
|
|
564
|
-
- **[Developer Guide](docs/DEVELOPER_GUIDE.md)** - Development setup and workflows
|
|
565
|
-
- **[User Role Templates Guide](docs/USER_ROLE_TEMPLATES_GUIDE.md)** - Customize agents by role (senior-dev, junior-dev, tech-lead, PM, QA)
|
|
566
|
-
- **[Customization Guide](docs/CUSTOMIZATION_GUIDE.md)** - Project-specific agent customizations
|
|
567
|
-
|
|
568
|
-
### Cursor AI Integration
|
|
569
|
-
- **[Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)** - Install and configure Cursor Skills
|
|
570
|
-
- **[Custom Skills Guide](docs/CUSTOM_SKILLS_GUIDE.md)** - Create, validate, and manage custom Skills
|
|
571
|
-
- **[Cursor Rules Setup Guide](docs/CURSOR_RULES_SETUP.md)** - Cursor Rules setup (auto-generated from YAML workflows)
|
|
572
|
-
- **[Multi-Agent Orchestration Guide](docs/MULTI_AGENT_ORCHESTRATION_GUIDE.md)** - Parallel agent execution
|
|
573
|
-
- **[YAML Workflow Architecture Design](docs/YAML_WORKFLOW_ARCHITECTURE_DESIGN.md)** - YAML-first architecture with generated artifacts
|
|
574
|
-
- **[Unified Cache Architecture](docs/implementation/UNIFIED_CACHE_ARCHITECTURE_PLAN.md)** - Single interface for all caching systems
|
|
575
|
-
- **[Unified Cache Integration Guide](docs/implementation/UNIFIED_CACHE_INTEGRATION_GUIDE.md)** - Using unified cache in agents
|
|
576
|
-
- **[Context7 Cache Optimization](docs/CONTEXT7_CACHE_OPTIMIZATION.md)** - Optimize cache hit rates
|
|
577
|
-
- **[Context7 Security & Privacy](docs/context7/CONTEXT7_SECURITY_PRIVACY.md)** - Security best practices
|
|
578
|
-
- **[Playwright MCP Integration](docs/PLAYWRIGHT_MCP_INTEGRATION.md)** - Browser automation with Playwright MCP server
|
|
579
|
-
### Operations
|
|
580
|
-
- **[Deployment Guide](docs/operations/DEPLOYMENT.md)** - Production deployment instructions
|
|
581
|
-
- **[Troubleshooting Guide](docs/TROUBLESHOOTING.md)** - Common issues and solutions
|
|
582
|
-
- **[Checkpoint & Resume Guide](docs/CHECKPOINT_RESUME_GUIDE.md)** - State persistence and workflow resumption
|
|
583
|
-
- **[Test Suite Documentation](tests/README.md)** - Complete test suite overview and E2E test guide
|
|
584
|
-
- **[E2E Test Suite](tests/e2e/README.md)** - End-to-end test documentation (smoke, workflow, scenario, CLI tests)
|
|
585
|
-
- **[Test Performance Guide](docs/TEST_PERFORMANCE_GUIDE.md)** - Optimize test execution (5-10x faster with parallel execution)
|
|
586
|
-
- **[Hardware Recommendations](docs/HARDWARE_RECOMMENDATIONS.md)** - Optimal computer specs for fast development
|
|
587
|
-
- **[Security Policy](SECURITY.md)** - Security guidelines
|
|
588
|
-
|
|
589
|
-
### Contributing
|
|
590
|
-
|
|
591
|
-
**Get help:** [CONTRIBUTING](CONTRIBUTING.md) · [Documentation](docs/README.md)
|
|
592
|
-
|
|
593
|
-
- **[Contributing Guidelines](CONTRIBUTING.md)** — How to contribute
|
|
594
|
-
- **[Changelog](CHANGELOG.md)** — Version history and changes
|
|
595
|
-
|
|
596
|
-
### Version Management
|
|
597
|
-
|
|
598
|
-
When updating the version number, use the automated script to ensure all files are updated consistently:
|
|
599
|
-
|
|
600
|
-
```powershell
|
|
601
|
-
# Update version to 3.0.4 (or any version)
|
|
602
|
-
.\scripts\update_version.ps1 -Version 3.0.4
|
|
603
|
-
|
|
604
|
-
# Update core files only (skip documentation)
|
|
605
|
-
.\scripts\update_version.ps1 -Version 3.0.4 -SkipDocs
|
|
606
|
-
```
|
|
607
|
-
|
|
608
|
-
**What it updates:**
|
|
609
|
-
- ✅ `pyproject.toml` - Package version
|
|
610
|
-
- ✅ `tapps_agents/__init__.py` - Module version
|
|
611
|
-
- ✅ `README.md` - Version badge and references
|
|
612
|
-
- ✅ `docs/README.md` - Documentation version
|
|
613
|
-
- ✅ `docs/API.md` - API version
|
|
614
|
-
- ✅ `docs/ARCHITECTURE.md` - Architecture version
|
|
615
|
-
- ✅ `docs/implementation/IMPROVEMENT_PLAN.json` - Metadata version
|
|
616
|
-
- ✅ Other documentation files with version references
|
|
617
|
-
|
|
618
|
-
**After running the script:**
|
|
619
|
-
1. Review changes: `git diff`
|
|
620
|
-
2. Update `CHANGELOG.md` with release notes
|
|
621
|
-
3. Commit and push changes
|
|
622
|
-
4. Create git tag: `git tag v3.0.4 && git push origin v3.0.4`
|
|
623
|
-
|
|
624
|
-
See [Release Guide](docs/operations/RELEASE_GUIDE.md) for complete release process.
|
|
625
|
-
|
|
626
|
-
### Reference
|
|
627
|
-
- **[Project Requirements](requirements/PROJECT_REQUIREMENTS.md)** - Complete specification
|
|
628
|
-
- **[Technology Stack](requirements/TECH_STACK.md)** - Recommended technologies
|
|
629
|
-
|
|
630
|
-
## Status
|
|
631
|
-
|
|
632
|
-
**Phase**: ✅ **All 7 Phases Complete - Cursor AI Integration Plan 2025**
|
|
633
|
-
**Version**: 3.5.39
|
|
634
|
-
**Last Updated**: January 2026
|
|
635
|
-
**Cursor AI Integration**: ✅ Complete (Phases 1-7)
|
|
636
|
-
**Dependencies**: ✅ Updated to latest 2025 stable versions (pytest 9.x, ruff 0.14.8, mypy 1.19.0, etc.)
|
|
637
|
-
|
|
638
|
-
### Integration Status
|
|
639
|
-
- ✅ Phase 1: Core Agents to Skills
|
|
640
|
-
- ✅ Phase 2: Quality Tools Integration
|
|
641
|
-
- ✅ Phase 3: Remaining Agents + Advanced Features
|
|
642
|
-
- ✅ Phase 5: Multi-Agent Orchestration
|
|
643
|
-
- ✅ Phase 6: Context7 Optimization + Security
|
|
644
|
-
- ✅ Phase 7: NUC Optimization
|
|
645
|
-
|
|
646
|
-
See [Cursor AI Integration Plan 2025](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md) for complete details.
|
|
647
|
-
|
|
648
|
-
## Self-Hosting
|
|
649
|
-
|
|
650
|
-
This project uses its own framework for development:
|
|
651
|
-
- **5 Industry Experts** configured (AI frameworks, code quality, architecture, DevOps, documentation)
|
|
652
|
-
- **Enhancer Agent** actively used (23+ enhancement sessions)
|
|
653
|
-
- **Context7 Integration** with KB cache
|
|
654
|
-
- **14 Cursor Skills** available in `.claude/skills/` (14 agent skills + simple-mode)
|
|
655
|
-
- **NUC Optimization** enabled for resource-constrained environments
|
|
656
|
-
- Configuration in `.tapps-agents/` directory
|
|
657
|
-
|
|
658
|
-
See [Self-Hosting Setup](docs/implementation/SELF_HOSTING_SETUP_COMPLETE.md) for details.
|
|
659
|
-
|
|
660
|
-
## Platform & repository
|
|
661
|
-
|
|
662
|
-
- **Windows:** Supported (Windows, Linux, macOS). Use UTF-8 for scripts and file I/O. See [Troubleshooting](docs/TROUBLESHOOTING.md) and [CONTRIBUTING](CONTRIBUTING.md) for encoding guidelines.
|
|
663
|
-
- **Repository:** Dependabot, CODEOWNERS, issue/PR templates, GitHub Actions, SECURITY.md. See [CONTRIBUTING](CONTRIBUTING.md) and [.github/](.github/).
|
|
664
|
-
|
|
665
|
-
## For Framework Developers & Contributors
|
|
666
|
-
|
|
667
|
-
- **Accuracy:** Agents and skills must report only verified facts. Do not assume success from tests or error handling. See project rules in `.cursor/rules/` and [CONTRIBUTING](CONTRIBUTING.md).
|
|
668
|
-
- **Framework changes:** When modifying `tapps_agents/`, use the Full SDLC workflow: `@simple-mode *full "Implement [description]"` or `tapps-agents simple-mode full --prompt "..." --auto`. See [Framework Development Workflow](docs/FRAMEWORK_DEVELOPMENT_WORKFLOW.md).
|
|
669
|
-
|
|
670
|
-
## License
|
|
671
|
-
|
|
672
|
-
See [LICENSE](LICENSE) file for details.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tapps-agents
|
|
3
|
+
Version: 3.6.0
|
|
4
|
+
Summary: A specification framework for defining, configuring, and orchestrating coding agents
|
|
5
|
+
Author: Tapps
|
|
6
|
+
Maintainer: Tapps
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/wtthornton/TappsCodingAgents
|
|
9
|
+
Project-URL: Repository, https://github.com/wtthornton/TappsCodingAgents
|
|
10
|
+
Project-URL: Documentation, https://github.com/wtthornton/TappsCodingAgents
|
|
11
|
+
Project-URL: Issues, https://github.com/wtthornton/TappsCodingAgents/issues
|
|
12
|
+
Keywords: ai,agents,coding,workflow,automation
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Requires-Python: >=3.12
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: pydantic>=2.12.5
|
|
23
|
+
Requires-Dist: httpx>=0.28.1
|
|
24
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
25
|
+
Requires-Dist: aiohttp>=3.13.3
|
|
26
|
+
Requires-Dist: psutil>=7.2.2
|
|
27
|
+
Requires-Dist: radon>=6.0.1
|
|
28
|
+
Requires-Dist: bandit>=1.9.3
|
|
29
|
+
Requires-Dist: coverage>=7.13.3
|
|
30
|
+
Requires-Dist: jinja2>=3.1.6
|
|
31
|
+
Requires-Dist: packaging<27,>=23.2
|
|
32
|
+
Requires-Dist: rich>=14.3.2
|
|
33
|
+
Requires-Dist: aiofiles>=25.1.0
|
|
34
|
+
Provides-Extra: dev
|
|
35
|
+
Requires-Dist: ruff<1.0,>=0.15.0; extra == "dev"
|
|
36
|
+
Requires-Dist: mypy<2.0,>=1.19.1; extra == "dev"
|
|
37
|
+
Requires-Dist: types-PyYAML>=6.0.12.20250915; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest>=9.0.2; extra == "dev"
|
|
39
|
+
Requires-Dist: pytest-asyncio>=1.3.0; extra == "dev"
|
|
40
|
+
Requires-Dist: pytest-cov>=7.0.0; extra == "dev"
|
|
41
|
+
Requires-Dist: pytest-mock>=3.15.1; extra == "dev"
|
|
42
|
+
Requires-Dist: pytest-timeout>=2.4.0; extra == "dev"
|
|
43
|
+
Requires-Dist: pytest-xdist>=3.8.0; extra == "dev"
|
|
44
|
+
Requires-Dist: pytest-sugar>=1.1.1; extra == "dev"
|
|
45
|
+
Requires-Dist: pytest-html>=4.1.1; extra == "dev"
|
|
46
|
+
Requires-Dist: pytest-rich>=0.2.0; extra == "dev"
|
|
47
|
+
Requires-Dist: pip-audit>=2.10.0; extra == "dev"
|
|
48
|
+
Requires-Dist: pip-tools>=7.5.2; extra == "dev"
|
|
49
|
+
Provides-Extra: reporting
|
|
50
|
+
Requires-Dist: plotly>=6.5.2; extra == "reporting"
|
|
51
|
+
Provides-Extra: dependency-analysis
|
|
52
|
+
Requires-Dist: pipdeptree>=2.30.0; extra == "dependency-analysis"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# TappsCodingAgents
|
|
56
|
+
|
|
57
|
+
[](https://www.python.org/downloads/)
|
|
58
|
+
[](LICENSE)
|
|
59
|
+
[](README.md)
|
|
60
|
+
[](CHANGELOG.md)
|
|
61
|
+
|
|
62
|
+
**A specification framework for defining, configuring, and orchestrating coding agents.**
|
|
63
|
+
|
|
64
|
+
TappsCodingAgents helps teams build and orchestrate AI coding agents with **quality gates**, **Cursor IDE integration**, and **full SDLC workflows**—so you get consistent, traceable results instead of one-off AI edits.
|
|
65
|
+
|
|
66
|
+
**Highlights:** 14 workflow agents (review, implement, test, fix, plan, …) · **Simple Mode** for natural language (`@simple-mode *build "feature"`) · Cursor Skills + Claude Desktop · 11 YAML workflow presets · Code scoring, experts, and MCP gateway · **Adaptive Learning** system that auto-generates experts and improves scoring for first-pass code correctness.
|
|
67
|
+
|
|
68
|
+
**Prerequisites:** Python 3.13+, [Cursor IDE](https://cursor.com) or [Claude Desktop](https://claude.ai). Optional: [Context7](https://context7.com) API key for library docs.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Table of Contents
|
|
73
|
+
|
|
74
|
+
- [Quick Start (5 min)](#-cursor-quick-start-5-minutes)
|
|
75
|
+
- [Simple Mode (New Users)](#-simple-mode-new-users)
|
|
76
|
+
- [Key Features](#key-features)
|
|
77
|
+
- [Documentation](#documentation)
|
|
78
|
+
- [Contributing](#contributing)
|
|
79
|
+
- [For Framework Developers](#for-framework-developers--contributors)
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Overview
|
|
84
|
+
|
|
85
|
+
> **Note:** This project both **develops** the framework and **uses** it for its own development (self-hosting). See [Project Context](docs/PROJECT_CONTEXT.md).
|
|
86
|
+
|
|
87
|
+
**In the box:**
|
|
88
|
+
- **14 workflow agents** — Analyst, Planner, Architect, Designer, Implementer, Tester, Debugger, Documenter, Reviewer, Improver, Ops, Orchestrator, Enhancer, Evaluator
|
|
89
|
+
- **Simple Mode** — `@simple-mode *build "feature"`, `*review`, `*fix`, `*test`, and more in Cursor
|
|
90
|
+
- **Cursor Skills + Claude Desktop** — All agents as `@agent *command`; 15 Claude Desktop commands
|
|
91
|
+
- **11 YAML workflow presets** — rapid-dev, full-sdlc, maintenance, quality, quick-fix, and others
|
|
92
|
+
- **Experts & quality** — 16 built-in experts, 7-category code scoring, MCP gateway (Context7, Playwright, Git, …)
|
|
93
|
+
- **Adaptive Learning** — Auto-generates experts from usage patterns, adaptively adjusts scoring weights, improves expert voting, and optimizes for first-pass code correctness
|
|
94
|
+
|
|
95
|
+
For the full list, see [Key Features](#key-features) and [Documentation](docs/README.md).
|
|
96
|
+
|
|
97
|
+
### How it works (no confusion version)
|
|
98
|
+
|
|
99
|
+
- **Cursor is the LLM runtime**: Skills use the developer's configured model in Cursor (Auto or pinned).
|
|
100
|
+
- **This framework is the tooling layer**: workflows, quality tools, reporting, worktrees, caching.
|
|
101
|
+
- **Cursor-native execution**: All LLM operations are handled by Cursor via Skills. No local LLM required.
|
|
102
|
+
|
|
103
|
+
See:
|
|
104
|
+
- `docs/HOW_IT_WORKS.md`
|
|
105
|
+
- `docs/CURRENT_DEFAULTS.md`
|
|
106
|
+
- `docs/PR_MODE_GUIDE.md`
|
|
107
|
+
|
|
108
|
+
### 🚀 Cursor Quick Start (5 minutes)
|
|
109
|
+
|
|
110
|
+
If you're using **Cursor IDE**, get started quickly:
|
|
111
|
+
|
|
112
|
+
1. **Install the framework:**
|
|
113
|
+
|
|
114
|
+
Ensure Python 3.13+ (`python --version`). On Windows with multiple versions use `py -3.13`.
|
|
115
|
+
|
|
116
|
+
**For consuming projects (recommended):**
|
|
117
|
+
```bash
|
|
118
|
+
# Install from PyPI (clean install, framework code only)
|
|
119
|
+
pip install tapps-agents
|
|
120
|
+
# or specific version:
|
|
121
|
+
pip install tapps-agents==3.5.39
|
|
122
|
+
```
|
|
123
|
+
**Windows:** If `tapps-agents` is not found after install (user Scripts often not on PATH), use a project venv or run `python -m tapps_agents.cli` instead. See [Troubleshooting CLI installation](docs/TROUBLESHOOTING_CLI_INSTALLATION.md).
|
|
124
|
+
|
|
125
|
+
**For framework development (contributors):**
|
|
126
|
+
```bash
|
|
127
|
+
# Clone repository and install in editable mode
|
|
128
|
+
git clone https://github.com/wtthornton/TappsCodingAgents.git
|
|
129
|
+
cd TappsCodingAgents
|
|
130
|
+
python3.13 -m pip install -e .
|
|
131
|
+
# Windows: py -3.13 -m pip install -e .
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
After installing, run `tapps-agents doctor` (or `python -m tapps_agents.cli doctor`) to verify the setup.
|
|
135
|
+
|
|
136
|
+
2. **Initialize Cursor integration:**
|
|
137
|
+
|
|
138
|
+
Run `init` from your **project root**, not from the TappsCodingAgents framework directory.
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
# Correct: from your project
|
|
142
|
+
cd /path/to/your-project
|
|
143
|
+
tapps-agents init
|
|
144
|
+
# If 'tapps-agents' not found: python -m tapps_agents.cli init
|
|
145
|
+
|
|
146
|
+
# Wrong: from the framework directory (creates config in the wrong place)
|
|
147
|
+
# cd /path/to/TappsCodingAgents && tapps-agents init
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Optional: `tapps-agents init --hooks` creates `.tapps-agents/hooks.yaml` and `.tapps-agents/context/` from templates (all hooks disabled by default). Use `tapps-agents task create|list|run` for task specs and multi-session workflows; see [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md).
|
|
151
|
+
|
|
152
|
+
This installs:
|
|
153
|
+
- ✅ **Cursor Skills** (`.claude/skills/`) - Use `@agent *command` in Cursor IDE
|
|
154
|
+
- ✅ **Claude Desktop Commands** (`.claude/commands/`) - Use `@command` in Claude Desktop
|
|
155
|
+
- ✅ **Cursor Rules** (`.cursor/rules/`)
|
|
156
|
+
- ✅ **Configuration** (`.tapps-agents/config.yaml`) - Tech stack detection, quality thresholds
|
|
157
|
+
- ✅ **Workflow Presets** (`workflows/presets/`) - full-sdlc, rapid-dev, fix, quality, brownfield-analysis
|
|
158
|
+
- ✅ **MCP Config** (`.cursor/mcp.json`) - Context7 for library docs (optional)
|
|
159
|
+
- ✅ **Framework version** (`.tapps-agents/.framework-version`) - Installed package version
|
|
160
|
+
- ✅ **Beads (bd)** - When `tools/bd` exists, `scripts/set_bd_path.ps1` is added if missing; init hints `bd init` / `bd doctor --fix` when `.beads` is missing. Set `beads.required: true` to make Beads mandatory (workflows fail if bd unavailable). See [Beads Integration](docs/BEADS_INTEGRATION.md).
|
|
161
|
+
|
|
162
|
+
**Note:** If you get "command not found" (common on Windows with user pip installs), use `python -m tapps_agents.cli` instead of `tapps-agents`, or use a project venv. See [Troubleshooting CLI installation](docs/TROUBLESHOOTING_CLI_INSTALLATION.md) for details.
|
|
163
|
+
|
|
164
|
+
3. **Try it in Cursor IDE:**
|
|
165
|
+
- Open Cursor chat
|
|
166
|
+
- Type: `@reviewer *help`
|
|
167
|
+
- Type: `@implementer *help`
|
|
168
|
+
- Type: `@tester *help`
|
|
169
|
+
- Type: `@evaluator *help`
|
|
170
|
+
|
|
171
|
+
4. **Or use Claude Desktop:**
|
|
172
|
+
- Type: `@review src/api/auth.py`
|
|
173
|
+
- Type: `@build "Create a user authentication feature"`
|
|
174
|
+
- Type: `@test src/api/auth.py`
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
### 🎬 Try the Demo (5 minutes)
|
|
178
|
+
|
|
179
|
+
**Want to see it in action?** Run our interactive demo:
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
# Run the automated demo script
|
|
183
|
+
python demo/run_demo.py
|
|
184
|
+
|
|
185
|
+
# Or follow the quick start guide
|
|
186
|
+
cat demo/DEMO_QUICK_START.md
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
The demo showcases:
|
|
190
|
+
- ✅ Code scoring with objective metrics
|
|
191
|
+
- ✅ Code review with detailed feedback
|
|
192
|
+
- ✅ Quality tools (linting, type checking)
|
|
193
|
+
- ✅ Code generation workflows
|
|
194
|
+
|
|
195
|
+
See [Demo Plan](docs/DEMO_PLAN.md) for complete demo scenarios and instructions.
|
|
196
|
+
|
|
197
|
+
### 🎯 Simple Mode (New Users)
|
|
198
|
+
|
|
199
|
+
**New to TappsCodingAgents?** Try **Simple Mode** - a streamlined, task-first interface that hides complexity while showcasing the power of the framework:
|
|
200
|
+
|
|
201
|
+
1. **Initialize project** (first time setup):
|
|
202
|
+
```bash
|
|
203
|
+
# If 'tapps-agents' command not found, use:
|
|
204
|
+
python -m tapps_agents.cli init
|
|
205
|
+
|
|
206
|
+
# OR if entry point is working:
|
|
207
|
+
tapps-agents init
|
|
208
|
+
```
|
|
209
|
+
This sets up configuration, Cursor Rules, workflow presets, Skills, and Claude Desktop Commands.
|
|
210
|
+
|
|
211
|
+
2. **Enable Simple Mode:**
|
|
212
|
+
```bash
|
|
213
|
+
tapps-agents simple-mode on
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
3. **Run the onboarding wizard** (optional, recommended for new users):
|
|
217
|
+
```bash
|
|
218
|
+
tapps-agents simple-mode init
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
4. **Use Simple Mode in Cursor chat:**
|
|
222
|
+
|
|
223
|
+
Open Cursor chat and use natural language commands with `@simple-mode`:
|
|
224
|
+
```
|
|
225
|
+
@simple-mode Build a user authentication module
|
|
226
|
+
@simple-mode Review my authentication code
|
|
227
|
+
@simple-mode Fix the error in auth.py
|
|
228
|
+
@simple-mode Add tests for service.py
|
|
229
|
+
@simple-mode Explore the authentication system
|
|
230
|
+
@simple-mode Refactor legacy code in utils.py
|
|
231
|
+
@simple-mode Plan analysis for OAuth2 migration
|
|
232
|
+
@simple-mode PR "Add user authentication feature"
|
|
233
|
+
@simple-mode *enhance "Add OAuth2 login"
|
|
234
|
+
@simple-mode *breakdown "Migrate to microservices"
|
|
235
|
+
@simple-mode *todo ready
|
|
236
|
+
@simple-mode *epic docs/prd/epic-51-yaml-automation-quality-enhancement.md
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
Simple Mode automatically detects your intent and orchestrates the right agents.
|
|
240
|
+
|
|
241
|
+
**Note:** Simple Mode natural language commands work in Cursor chat (via `@simple-mode` skill). CLI management commands (`on`, `off`, `status`, `init`) are available for configuration.
|
|
242
|
+
|
|
243
|
+
**Simple Mode Features:**
|
|
244
|
+
- ✅ **Task-first interface** - Focus on what you want to achieve
|
|
245
|
+
- ✅ **Natural language commands** - Use plain English
|
|
246
|
+
- ✅ **Guided onboarding** - Interactive wizard for new users
|
|
247
|
+
- ✅ **Zero-config mode** - Smart defaults with auto-detection
|
|
248
|
+
- ✅ **Learning progression** - Unlock advanced features as you learn
|
|
249
|
+
- ✅ **Friendly error handling** - Clear messages with recovery suggestions
|
|
250
|
+
|
|
251
|
+
**Full Documentation:**
|
|
252
|
+
- [Simple Mode Guide](docs/SIMPLE_MODE_GUIDE.md) - Complete Simple Mode documentation
|
|
253
|
+
- [Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)
|
|
254
|
+
- [Cursor Rules Setup Guide](docs/CURSOR_RULES_SETUP.md)
|
|
255
|
+
- [Cursor Integration Review](CURSOR_INTEGRATION_REVIEW.md) - Comprehensive integration status
|
|
256
|
+
|
|
257
|
+
### Enhanced Features (v1.6.0+)
|
|
258
|
+
|
|
259
|
+
- **Code Scoring System**: Objective quality metrics (complexity, security, maintainability)
|
|
260
|
+
- **Tiered Context Injection**: 90%+ token savings with intelligent caching
|
|
261
|
+
- **Adaptive Workflow Checkpoints** (v3.5.37+): Automatic workflow optimization
|
|
262
|
+
- 3 strategic checkpoints detect when workflows are overkill
|
|
263
|
+
- Switches to simpler workflows automatically (with user confirmation)
|
|
264
|
+
- Skips optional steps when quality is excellent (≥80)
|
|
265
|
+
- Saves 20K-40K tokens per optimization
|
|
266
|
+
- See [Checkpoint System Guide](docs/CHECKPOINT_SYSTEM_GUIDE.md)
|
|
267
|
+
- **MCP Gateway**: Unified Model Context Protocol interface for tool access
|
|
268
|
+
- **Context7 MCP Server**: Library documentation lookup (required, auto-configured)
|
|
269
|
+
- **Playwright MCP Server**: Browser automation for E2E testing (optional, auto-detected)
|
|
270
|
+
- **Beads (bd)** (optional or required): Task tracking; `tapps-agents beads`; doctor reports bd status; init hints or mandates `bd init` when detected. Set `beads.required: true` to make workflows fail when bd unavailable. [Beads Integration](docs/BEADS_INTEGRATION.md)
|
|
271
|
+
- **Hooks** (opt-in): Run shell commands at UserPromptSubmit, PostToolUse, SessionStart, SessionEnd, and WorkflowComplete. Configure in `.tapps-agents/hooks.yaml`; use `tapps-agents init --hooks` to create a template. [Hooks Guide](docs/HOOKS_GUIDE.md)
|
|
272
|
+
- **Task management / multi-session**: Task specs in `.tapps-agents/task-specs/`, `tapps-agents task create|list|show|update|close|hydrate|dehydrate|run`, and hydration/dehydration for Beads. [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md)
|
|
273
|
+
- **YAML Workflow Definitions**: Declarative, version-controlled orchestration with strict schema enforcement
|
|
274
|
+
- **Greenfield/Brownfield Workflows**: Context-appropriate workflows for project types
|
|
275
|
+
- **YAML-First Architecture** ✅ (Epics 6-10 Complete):
|
|
276
|
+
- **Strict Schema Enforcement** (Epic 6): All YAML structures validated and executed, no "YAML theater"
|
|
277
|
+
- **Task Manifest Generation** (Epic 7): Auto-generated task checklists from workflow YAML + state
|
|
278
|
+
- **Automated Documentation** (Epic 8): Cursor Rules auto-generated from workflow YAML
|
|
279
|
+
- **Documentation Alignment** (Epic 10): All documentation aligned with YAML-first architecture
|
|
280
|
+
- **Cursor AI Integration**: Complete 7-phase integration with Cursor AI
|
|
281
|
+
- Cursor Skills for all 14 agents
|
|
282
|
+
- Multi-agent orchestration
|
|
283
|
+
- Context7 KB-first caching
|
|
284
|
+
|
|
285
|
+
## Current Status
|
|
286
|
+
|
|
287
|
+
**Version** 3.5.39 · **Production ready** · All 7 Cursor AI integration phases complete · YAML-first architecture (Epics 6–10) · 14 workflow agents + Simple Mode · 16 built-in experts.
|
|
288
|
+
|
|
289
|
+
📋 [Changelog](CHANGELOG.md) · [Cursor AI Integration Plan](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md) · [YAML Workflow Design](docs/YAML_WORKFLOW_ARCHITECTURE_DESIGN.md)
|
|
290
|
+
|
|
291
|
+
✅ **Core Framework Complete:**
|
|
292
|
+
- **All 14 Workflow Agents** ✅ (analyst, planner, architect, designer, implementer, tester, debugger, documenter, reviewer, improver, ops, orchestrator, enhancer, evaluator)
|
|
293
|
+
- **Complete Code Scoring System** ✅ (7 categories: complexity, security, maintainability, test_coverage, performance, structure, devex)
|
|
294
|
+
- **Instruction-Based Architecture** ✅ - Agents prepare structured instructions for Cursor Skills execution
|
|
295
|
+
- **Tiered Context System** ✅ (90%+ token savings, 3 tiers with caching)
|
|
296
|
+
- **Unified Cache Architecture** ✅ (Single interface for all caching systems with hardware auto-detection)
|
|
297
|
+
- **MCP Gateway** ✅ (Unified tool access with 5 servers: Context7, Playwright, Filesystem, Git, Analysis)
|
|
298
|
+
- **MCP Server Detection**: Automatic detection of Context7 and Playwright MCP servers
|
|
299
|
+
- **Setup Instructions**: Auto-generated setup instructions when MCP servers are missing
|
|
300
|
+
- **Status Reporting**: `tapps-agents doctor` reports MCP server configuration status and Beads (bd) status (optional)
|
|
301
|
+
- **YAML Workflow Definitions** ✅ (Parser, executor, artifact tracking, conditional steps, gates)
|
|
302
|
+
- **YAML-First Architecture** ✅ (Epics 6-10): YAML as single source of truth with strict schema enforcement
|
|
303
|
+
- **Auto-Generated Artifacts** ✅: Task manifests, Cursor Rules docs
|
|
304
|
+
- **Dependency-Based Parallelism**: Automatic parallel execution based on step dependencies (no `parallel_tasks`)
|
|
305
|
+
- **11 Workflow Presets**: rapid-dev (enhance step), full-sdlc (optional enhance before requirements), maintenance, quality, quick-fix, feature-implementation, brownfield-analysis, simple-new-feature, simple-full, simple-improve-quality, simple-fix-issues
|
|
306
|
+
- **Industry Experts Framework** ✅ (Weighted decision-making, domain configuration, expert registry)
|
|
307
|
+
- **16 Built-in Experts**: Security, Performance, Testing, Data Privacy, Accessibility, UX, Code Quality, Software Architecture, DevOps, Documentation, AI Frameworks, Observability, API Design, Cloud Infrastructure, Database, Agent Learning
|
|
308
|
+
- **100+ Knowledge Files**: Across 13 knowledge domains
|
|
309
|
+
- **Configuration-Only Experts**: YAML-based expert definition, no code classes required
|
|
310
|
+
- **RAG Integration**: Simple file-based and vector-based RAG for knowledge retrieval
|
|
311
|
+
- **Simple Mode** ✅ (15+ orchestrators: build, review, fix, test, explore, refactor, plan-analysis, pr, epic, full, enhance, breakdown, todo, brownfield, validate, resume)
|
|
312
|
+
- **Scale-Adaptive Workflow Selection** ✅ (Project type auto-detection, workflow recommendation)
|
|
313
|
+
- **State Management** ✅ (Advanced workflow state persistence with checkpointing, migration, versioning, resume)
|
|
314
|
+
- **Analytics & Health** ✅ (CLI: `health check`, `health overview`, `health usage dashboard|agents|workflows|system|trends`; performance metrics, trends, system health monitoring)
|
|
315
|
+
- **Governance & Safety** ✅ (Secrets/PII filtering, knowledge ingestion safety)
|
|
316
|
+
- **Comprehensive test suite** ✅ (1200+ unit tests, integration tests, and E2E tests with parallel execution support - see `tests/`)
|
|
317
|
+
|
|
318
|
+
✅ **Enhancer Agent - Prompt Enhancement Utility (v1.6.0)**
|
|
319
|
+
- **7-Stage Enhancement Pipeline** - Transforms simple prompts into comprehensive, context-aware prompts
|
|
320
|
+
- **Industry Expert Integration** - Automatic domain detection and weighted expert consultation
|
|
321
|
+
- **Multiple Usage Modes** - Full enhancement, quick enhancement, stage-by-stage execution
|
|
322
|
+
- **Session Management** - Resume interrupted enhancements
|
|
323
|
+
- **Multiple Output Formats** - Markdown, JSON, YAML
|
|
324
|
+
- **Workflow integration** - full-sdlc (optional enhance step before requirements), rapid-dev, and Epic story workflows run the enhancer when an `enhance` step is present (EnhancerHandler). AnalystHandler and PlannerHandler consume `enhanced_prompt`/`description` from state.
|
|
325
|
+
- **CLI auto-enhancement** - `auto_enhancement` in config enhances low-quality prompts for implementer, planner, analyst (see [Configuration](docs/CONFIGURATION.md#automatic-prompt-enhancement-auto_enhancement)). `PROMPT_ARGUMENT_MAP` and `commands` control which agent/command pairs are eligible.
|
|
326
|
+
- See [Enhancer Agent Guide](docs/ENHANCER_AGENT.md) for details
|
|
327
|
+
|
|
328
|
+
🎉 **All Core Framework Features Complete!**
|
|
329
|
+
|
|
330
|
+
✅ **January 2026 Critical Features Complete:**
|
|
331
|
+
- **Custom Skills Support** ✅ - Create, validate, and integrate custom Skills
|
|
332
|
+
- **State Persistence Configuration** ✅ - Configurable checkpointing and cleanup policies
|
|
333
|
+
- **Governance & Safety Layer** ✅ - Security and safety controls for knowledge ingestion
|
|
334
|
+
- **Epic 20: Complexity Reduction** ✅ - Refactored high-complexity functions (122→C, 114→C, 66→C, 60→C, 64→A/B)
|
|
335
|
+
- Agent handler extraction using Strategy Pattern
|
|
336
|
+
- Workflow execution control flow simplification
|
|
337
|
+
- Zero code duplication between execution paths
|
|
338
|
+
- See [Complexity Reduction Summary](docs/COMPLEXITY_REDUCTION_EPIC_20.md)
|
|
339
|
+
|
|
340
|
+
## Upcoming Enhancements (Planned)
|
|
341
|
+
|
|
342
|
+
### SDLC Quality Engine Improvements
|
|
343
|
+
|
|
344
|
+
The framework is being enhanced to transform the SDLC from a linear pipeline with score-only gates into a **self-correcting quality engine** that achieves "zero issues" consistently across any codebase.
|
|
345
|
+
|
|
346
|
+
**Key Improvements:**
|
|
347
|
+
- **Pluggable Validation Layer**: Stack-agnostic validation that adapts to detected project profile and repository signals
|
|
348
|
+
- **Comprehensive Verification**: Expansion of "testing" into verification bundle (tests + linters + config checks + security scans + artifact integrity)
|
|
349
|
+
- **Standardized Issues Manifest**: Machine-actionable issue schema (id, severity, category, evidence, repro, suggested_fix, owner_step) for deterministic remediation
|
|
350
|
+
- **Composite Gating Model**: Gates evaluate issues + verification outcomes, not just numeric scores
|
|
351
|
+
- Hard fail conditions: critical issues, verification failures, missing artifacts
|
|
352
|
+
- Soft fail/loopback conditions: high issues above threshold, regression vs baseline, low expert confidence
|
|
353
|
+
- **Bounded Loopback Protocol**: Deterministic remediation with structured fix plans, re-validation, and bounded retries
|
|
354
|
+
- **Traceability Matrix**: Lightweight requirements → stories → validations mapping for completeness verification
|
|
355
|
+
|
|
356
|
+
**Status**: Design phase - See [SDLC Improvements Analysis](SDLC_ISSUES_AND_IMPROVEMENTS_ANALYSIS.md) and [Epic 1: SDLC Quality Engine](docs/prd/epic-1-sdlc-quality-engine.md)
|
|
357
|
+
|
|
358
|
+
### Dynamic Expert & RAG Engine
|
|
359
|
+
|
|
360
|
+
An always-on **Dynamic Knowledge/Expert Orchestrator** that automatically detects project domains, creates and curates experts/knowledge for the current project, and continuously enriches agents with the best available, project-relevant information.
|
|
361
|
+
|
|
362
|
+
**Key Features:**
|
|
363
|
+
- **Automatic Expert Creation**: Framework-controlled technical experts + project-controlled business/domain experts generated from repo signals
|
|
364
|
+
- **Knowledge Ingestion Pipeline**: Auto-fills RAG from project sources (requirements, architecture docs, ADRs), dependency sources (Context7 KB), and operational sources (CI failures, runtime exceptions)
|
|
365
|
+
- **Expert Engine Runtime**: Continuously detects what domain knowledge is needed, proactively consults the right experts, and populates knowledge stores as agents learn
|
|
366
|
+
- **Governance & Safety**: Do-not-index filters for secrets/PII, prompt-injection handling, retention & scope controls
|
|
367
|
+
- **Observability & Quality Improvement**: Metrics tracking (expert confidence, RAG quality, Context7 KB hit rate) with scheduled KB maintenance jobs
|
|
368
|
+
|
|
369
|
+
**Status**: Design phase - See [SDLC Improvements Analysis](SDLC_ISSUES_AND_IMPROVEMENTS_ANALYSIS.md) and [Epic 2: Dynamic Expert & RAG Engine](docs/prd/epic-2-dynamic-expert-rag-engine.md)
|
|
370
|
+
|
|
371
|
+
## Key Features
|
|
372
|
+
|
|
373
|
+
### Two-Layer Agent Model
|
|
374
|
+
|
|
375
|
+
| Layer | Type | Purpose | Count |
|
|
376
|
+
|-------|------|---------|-------|
|
|
377
|
+
| **Knowledge** | Industry Experts | Business domain authority | N (per project) |
|
|
378
|
+
| **Execution** | Workflow Agents | SDLC task execution | 14 (fixed) |
|
|
379
|
+
|
|
380
|
+
### Workflow Agents (14)
|
|
381
|
+
|
|
382
|
+
- **Planning**:
|
|
383
|
+
- **analyst** ✅ - Requirements gathering, stakeholder analysis, tech research, effort estimation, risk assessment, competitive analysis
|
|
384
|
+
- **planner** ✅ - User story creation, task breakdown, story point estimation, acceptance criteria
|
|
385
|
+
- **Design**:
|
|
386
|
+
- **architect** ✅ - System architecture design, design patterns, tech selection, security architecture, boundary definition, architecture diagrams, pattern detection (*detect-patterns)
|
|
387
|
+
- **designer** ✅ - API design, data model design, UI/UX design, wireframes, design systems
|
|
388
|
+
- **Development**:
|
|
389
|
+
- **implementer** ✅ - Code generation, refactoring, file writing with backup support
|
|
390
|
+
- **debugger** ✅ - Error analysis, stack trace analysis, code execution tracing, root cause identification
|
|
391
|
+
- **documenter** ✅ - API documentation, README generation, docstring generation, code documentation
|
|
392
|
+
- **Testing**:
|
|
393
|
+
- **tester** ✅ - Test generation (unit, integration), test execution, coverage analysis
|
|
394
|
+
- **Quality**:
|
|
395
|
+
- **reviewer** ✅ - Code review with 7-category scoring (complexity, security, maintainability, test coverage, performance, structure, devex), actionable feedback with specific issues and line numbers, structured feedback always provided, context-aware quality gates, linting (Ruff), type checking (mypy), duplication detection, security scanning, project analysis, service analysis
|
|
396
|
+
- **improver** ✅ - Code refactoring, performance optimization, quality improvement suggestions
|
|
397
|
+
- **Operations**:
|
|
398
|
+
- **ops** ✅ - Security auditing, compliance checking (GDPR, HIPAA, PCI-DSS), dependency auditing, deployment planning
|
|
399
|
+
- **Orchestration**:
|
|
400
|
+
- **orchestrator** ✅ - Workflow coordination, step sequencing, gate decisions, workflow state management
|
|
401
|
+
- **Enhancement**:
|
|
402
|
+
- **enhancer** ✅ - 7-stage prompt enhancement pipeline (analysis, requirements, architecture, codebase, quality, strategy, synthesis), quick enhancement, stage-by-stage execution, session management
|
|
403
|
+
- **Evaluation**:
|
|
404
|
+
- **evaluator** ✅ - Framework effectiveness analysis, workflow evaluation, improvement recommendations, usage pattern analysis
|
|
405
|
+
|
|
406
|
+
### Code Scoring System
|
|
407
|
+
|
|
408
|
+
The Reviewer Agent includes a comprehensive code scoring system with 5 objective metrics and actionable feedback (2026-01-16):
|
|
409
|
+
|
|
410
|
+
**Enhanced Features:**
|
|
411
|
+
- ✅ **Accurate Test Coverage:** Returns 0.0% when no tests exist (not 5.0-6.0)
|
|
412
|
+
- ✅ **Maintainability Issues:** Specific issues with line numbers, severity, and suggestions
|
|
413
|
+
- ✅ **Structured Feedback:** Always provides actionable feedback (summary, strengths, issues, recommendations, priority)
|
|
414
|
+
- ✅ **Performance Issues:** Performance bottlenecks with line numbers and context
|
|
415
|
+
- ✅ **Accurate Type Checking:** Reflects actual mypy errors (not static 5.0)
|
|
416
|
+
- ✅ **Context-Aware Quality Gates:** Adapts thresholds for new/modified/existing files
|
|
417
|
+
|
|
418
|
+
The Reviewer Agent scoring system includes:
|
|
419
|
+
|
|
420
|
+
1. **Complexity Score** (0-10): Cyclomatic complexity analysis using Radon
|
|
421
|
+
2. **Security Score** (0-10): Vulnerability detection using Bandit + heuristics; npm audit for JS/TS
|
|
422
|
+
3. **Maintainability Score** (0-10): Maintainability Index using Radon MI
|
|
423
|
+
4. **Test Coverage Score** (0-10): Coverage data parsing + heuristic; Vitest/Jest/lcov for JS/TS
|
|
424
|
+
5. **Performance Score** (0-10): Static analysis (function size, nesting depth, pattern detection)
|
|
425
|
+
6. **Structure Score** (0-10): Project layout, key files (README, config, tests), conventions
|
|
426
|
+
7. **DevEx Score** (0-10): Docs (AGENTS.md, CLAUDE.md), config, tooling
|
|
427
|
+
|
|
428
|
+
All metrics are configurable with weighted scoring and quality thresholds.
|
|
429
|
+
|
|
430
|
+
### Industry Experts
|
|
431
|
+
|
|
432
|
+
- **Business Domain Experts** (N): Project-specific domain authorities (not technical specialists)
|
|
433
|
+
- 1:1 mapping: N domains → N experts
|
|
434
|
+
- Weighted decision-making (Primary: 51%, Others: 49%/(N-1))
|
|
435
|
+
- RAG integration (simple file-based and vector-based)
|
|
436
|
+
- Fine-tuning support (LoRA adapters - planned)
|
|
437
|
+
- Consult-based integration with 6 workflow agents (Architect, Implementer, Reviewer, Tester, Designer, Ops)
|
|
438
|
+
- **Built-in Technical Experts** (16): Framework-controlled domain experts
|
|
439
|
+
- Security, Performance, Testing, Data Privacy, Accessibility, UX, Code Quality, Software Architecture, DevOps, Documentation, AI Frameworks, Observability, API Design, Cloud Infrastructure, Database, Agent Learning
|
|
440
|
+
- 100+ knowledge files across 13 knowledge domains
|
|
441
|
+
- Automatic domain detection and expert consultation
|
|
442
|
+
- Project profiling for context-aware guidance
|
|
443
|
+
- **Expert Governance**: Secrets/PII filtering, prompt injection handling, knowledge ingestion safety
|
|
444
|
+
|
|
445
|
+
### CLI Commands
|
|
446
|
+
|
|
447
|
+
**Top-Level Commands:**
|
|
448
|
+
- `init` - Initialize project (Cursor Rules, Skills, config)
|
|
449
|
+
- `create <description>` - Create new project from natural language description
|
|
450
|
+
- `workflow <preset>` - Run workflow presets (rapid, full, fix, quality, hotfix, etc.)
|
|
451
|
+
- `continuous-bug-fix` - Continuously find and fix bugs from test failures (automated bug fixing loop)
|
|
452
|
+
- `score <file>` - Quick code quality scoring (shortcut for `reviewer score`)
|
|
453
|
+
- `doctor` - Environment diagnostics and validation
|
|
454
|
+
- `cursor verify` - Verify Cursor AI integration components
|
|
455
|
+
- `simple-mode <command>` - Simple Mode management (on, off, status, init, configure, progress, full, build, resume, enhance, breakdown, todo)
|
|
456
|
+
- `health <command>` - Health monitoring (check, dashboard, metrics, trends, usage). Use `health usage dashboard|agents|workflows|system|trends` for analytics (formerly `analytics`).
|
|
457
|
+
- `customize <command>` - Agent customization (init)
|
|
458
|
+
- `skill <command>` - Custom Skills management (validate, template)
|
|
459
|
+
- `install-dev` - Install development tools (ruff, mypy, pytest, pip-audit, pipdeptree)
|
|
460
|
+
- `setup-experts` - Expert setup wizard (init, add, remove, list)
|
|
461
|
+
- `status` - Unified status (active worktrees, progress)
|
|
462
|
+
- `generate-rules` - Generate Cursor Rules from workflow YAML
|
|
463
|
+
|
|
464
|
+
**Agent Commands** (use `tapps-agents <agent> help` for details):
|
|
465
|
+
- `analyst` - Requirements gathering, stakeholder analysis, tech research, effort estimation, risk assessment
|
|
466
|
+
- `architect` - System design, architecture diagrams, tech selection, security architecture, boundary definition
|
|
467
|
+
- `debugger` - Error debugging, stack trace analysis, code tracing
|
|
468
|
+
- `designer` - API design, data models, UI/UX design, wireframes, design systems
|
|
469
|
+
- `documenter` - Generate documentation, update README, document APIs
|
|
470
|
+
- `enhancer` - Prompt enhancement (full, quick, stage-by-stage, resume)
|
|
471
|
+
- `evaluator` - Framework effectiveness evaluation, workflow evaluation
|
|
472
|
+
- `implementer` - Code generation, refactoring
|
|
473
|
+
- `improver` - Code refactoring, performance optimization
|
|
474
|
+
- `ops` - Security scanning, compliance checks, dependency auditing, deployment planning, bundle analysis (audit-bundle)
|
|
475
|
+
- `orchestrator` - Workflow management, step coordination, gate decisions
|
|
476
|
+
- `planner` - Create plans, user stories, task breakdowns
|
|
477
|
+
- `reviewer` - Code review, scoring, actionable feedback with specific issues, structured feedback, context-aware quality gates, linting, type checking, reports, duplication detection, security scanning, project/service analysis
|
|
478
|
+
- `tester` - Generate and run tests, test coverage
|
|
479
|
+
|
|
480
|
+
**Workflow State Management:**
|
|
481
|
+
- `workflow state list` - List workflow states
|
|
482
|
+
- `workflow state show <id>` - Show workflow state details
|
|
483
|
+
- `workflow state cleanup` - Cleanup old workflow states
|
|
484
|
+
- `workflow cleanup-branches` - Cleanup workflow worktree branches
|
|
485
|
+
- `workflow resume` - Resume interrupted workflow
|
|
486
|
+
|
|
487
|
+
**Simple Mode Workflows** (in Cursor chat with `@simple-mode`):
|
|
488
|
+
- `*build <description>` - Complete feature development workflow (7 steps)
|
|
489
|
+
- `*review <file>` - Code quality review with improvements
|
|
490
|
+
- `*fix <file> <description>` - Systematic bug fixing workflow
|
|
491
|
+
- `*test <file>` - Test generation and execution
|
|
492
|
+
- `*explore <query>` - Codebase exploration and navigation
|
|
493
|
+
- `*refactor <file>` - Systematic code modernization with safety checks
|
|
494
|
+
- `*plan-analysis <description>` - Safe read-only code analysis and planning
|
|
495
|
+
- `*pr <title>` - Pull request creation with quality scores
|
|
496
|
+
- `*enhance "prompt"` - Prompt enhancement (EnhancerAgent)
|
|
497
|
+
- `*breakdown "prompt"` - Task breakdown (PlannerAgent)
|
|
498
|
+
- `*todo <bd args>` - Beads-backed todo (e.g. ready, create "Title")
|
|
499
|
+
- `*epic <epic-doc.md>` - Execute Epic documents with dependency resolution
|
|
500
|
+
- `*full <description>` - Full SDLC workflow (9 steps)
|
|
501
|
+
|
|
502
|
+
## Project Structure
|
|
503
|
+
|
|
504
|
+
```
|
|
505
|
+
TappsCodingAgents/
|
|
506
|
+
├── requirements/ # Specification documents (see requirements/README.md)
|
|
507
|
+
│ ├── PROJECT_REQUIREMENTS.md # Main requirements document
|
|
508
|
+
│ ├── agent_api.md # Agent API specification
|
|
509
|
+
│ ├── agents.md # Agent types specification
|
|
510
|
+
│ ├── model_profiles.yaml # Model configurations
|
|
511
|
+
│ └── template/ # Templates and schemas
|
|
512
|
+
│
|
|
513
|
+
├── tapps_agents/ # Framework source code
|
|
514
|
+
│ ├── agents/ # All 14 workflow agents
|
|
515
|
+
│ │ ├── reviewer/ # Code review & scoring
|
|
516
|
+
│ │ ├── implementer/ # Code generation
|
|
517
|
+
│ │ ├── tester/ # Test generation
|
|
518
|
+
│ │ └── ... # 11 more agents (14 total)
|
|
519
|
+
│ ├── core/ # Core framework components
|
|
520
|
+
│ ├── context7/ # Context7 KB integration
|
|
521
|
+
│ ├── experts/ # Industry experts framework
|
|
522
|
+
│ ├── workflow/ # Workflow engine
|
|
523
|
+
│ └── mcp/ # MCP Gateway
|
|
524
|
+
│
|
|
525
|
+
├── .claude/ # Cursor Skills (canonical; init copies from tapps_agents/resources/claude)
|
|
526
|
+
├── workflows/ # YAML workflow definitions and presets
|
|
527
|
+
├── examples/ # Example configurations
|
|
528
|
+
├── docs/ # Documentation
|
|
529
|
+
│ ├── implementation/ # EPIC/PHASE plans, IMPROVEMENT_PLAN.json
|
|
530
|
+
│ ├── archive/ # Archived summaries; stories in archive/stories/
|
|
531
|
+
│ ├── releases/ # Release notes
|
|
532
|
+
│ ├── context7/ # Context7 integration
|
|
533
|
+
│ └── operations/ # Deployment, release, package distribution
|
|
534
|
+
├── scripts/ # Utilities (see scripts/README.md)
|
|
535
|
+
├── templates/ # Agent roles, project types, tech stacks, cursor-rules-template
|
|
536
|
+
└── tests/ # Test suite
|
|
537
|
+
├── unit/ # Unit tests (fast, isolated)
|
|
538
|
+
├── integration/ # Integration tests (with real services)
|
|
539
|
+
└── e2e/ # End-to-end tests (see tests/e2e/README.md)
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
## Documentation
|
|
543
|
+
|
|
544
|
+
### Getting Started
|
|
545
|
+
- **[Quick Start Guide](docs/guides/QUICK_START.md)** - 🚀 Get started in 10 minutes
|
|
546
|
+
- **[Simple Mode Guide](docs/SIMPLE_MODE_GUIDE.md)** - 🎯 Simple Mode for new users (task-first, natural language)
|
|
547
|
+
- **[Cursor AI Integration Plan 2025](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md)** - Complete integration roadmap (all 7 phases complete)
|
|
548
|
+
- **[Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)** - Install and use Cursor Skills
|
|
549
|
+
- **[Documentation Index](docs/README.md)** - Complete documentation overview
|
|
550
|
+
- **[API Reference](docs/API.md)** - Python API and CLI documentation
|
|
551
|
+
- **[Enhancer Agent Guide](docs/ENHANCER_AGENT.md)** - Prompt enhancement utility documentation
|
|
552
|
+
|
|
553
|
+
### Complete Command Reference
|
|
554
|
+
- **Cursor Rules**: `.cursor/rules/command-reference.mdc` (installed by `tapps-agents init`) - **Complete command reference with all commands, subcommands, and parameters**
|
|
555
|
+
- **Quick Reference**: `.cursor/rules/quick-reference.mdc` - Quick command reference for common tasks
|
|
556
|
+
- **Agent Capabilities**: `.cursor/rules/agent-capabilities.mdc` - Detailed agent capability descriptions
|
|
557
|
+
- **Simple Mode Guide**: `.cursor/rules/simple-mode.mdc` - Simple Mode workflow documentation
|
|
558
|
+
|
|
559
|
+
**Note**: After running `tapps-agents init`, all command reference documentation is available in `.cursor/rules/` directory. The `command-reference.mdc` file contains the most comprehensive documentation with all commands, subcommands, parameters, and examples.
|
|
560
|
+
|
|
561
|
+
### Core Guides
|
|
562
|
+
- **[Architecture Overview](docs/ARCHITECTURE.md)** - System architecture and design
|
|
563
|
+
- **[Configuration Guide](docs/CONFIGURATION.md)** - Complete configuration reference
|
|
564
|
+
- **[Developer Guide](docs/DEVELOPER_GUIDE.md)** - Development setup and workflows
|
|
565
|
+
- **[User Role Templates Guide](docs/USER_ROLE_TEMPLATES_GUIDE.md)** - Customize agents by role (senior-dev, junior-dev, tech-lead, PM, QA)
|
|
566
|
+
- **[Customization Guide](docs/CUSTOMIZATION_GUIDE.md)** - Project-specific agent customizations
|
|
567
|
+
|
|
568
|
+
### Cursor AI Integration
|
|
569
|
+
- **[Cursor Skills Installation Guide](docs/CURSOR_SKILLS_INSTALLATION_GUIDE.md)** - Install and configure Cursor Skills
|
|
570
|
+
- **[Custom Skills Guide](docs/CUSTOM_SKILLS_GUIDE.md)** - Create, validate, and manage custom Skills
|
|
571
|
+
- **[Cursor Rules Setup Guide](docs/CURSOR_RULES_SETUP.md)** - Cursor Rules setup (auto-generated from YAML workflows)
|
|
572
|
+
- **[Multi-Agent Orchestration Guide](docs/MULTI_AGENT_ORCHESTRATION_GUIDE.md)** - Parallel agent execution
|
|
573
|
+
- **[YAML Workflow Architecture Design](docs/YAML_WORKFLOW_ARCHITECTURE_DESIGN.md)** - YAML-first architecture with generated artifacts
|
|
574
|
+
- **[Unified Cache Architecture](docs/implementation/UNIFIED_CACHE_ARCHITECTURE_PLAN.md)** - Single interface for all caching systems
|
|
575
|
+
- **[Unified Cache Integration Guide](docs/implementation/UNIFIED_CACHE_INTEGRATION_GUIDE.md)** - Using unified cache in agents
|
|
576
|
+
- **[Context7 Cache Optimization](docs/CONTEXT7_CACHE_OPTIMIZATION.md)** - Optimize cache hit rates
|
|
577
|
+
- **[Context7 Security & Privacy](docs/context7/CONTEXT7_SECURITY_PRIVACY.md)** - Security best practices
|
|
578
|
+
- **[Playwright MCP Integration](docs/PLAYWRIGHT_MCP_INTEGRATION.md)** - Browser automation with Playwright MCP server
|
|
579
|
+
### Operations
|
|
580
|
+
- **[Deployment Guide](docs/operations/DEPLOYMENT.md)** - Production deployment instructions
|
|
581
|
+
- **[Troubleshooting Guide](docs/TROUBLESHOOTING.md)** - Common issues and solutions
|
|
582
|
+
- **[Checkpoint & Resume Guide](docs/CHECKPOINT_RESUME_GUIDE.md)** - State persistence and workflow resumption
|
|
583
|
+
- **[Test Suite Documentation](tests/README.md)** - Complete test suite overview and E2E test guide
|
|
584
|
+
- **[E2E Test Suite](tests/e2e/README.md)** - End-to-end test documentation (smoke, workflow, scenario, CLI tests)
|
|
585
|
+
- **[Test Performance Guide](docs/TEST_PERFORMANCE_GUIDE.md)** - Optimize test execution (5-10x faster with parallel execution)
|
|
586
|
+
- **[Hardware Recommendations](docs/HARDWARE_RECOMMENDATIONS.md)** - Optimal computer specs for fast development
|
|
587
|
+
- **[Security Policy](SECURITY.md)** - Security guidelines
|
|
588
|
+
|
|
589
|
+
### Contributing
|
|
590
|
+
|
|
591
|
+
**Get help:** [CONTRIBUTING](CONTRIBUTING.md) · [Documentation](docs/README.md)
|
|
592
|
+
|
|
593
|
+
- **[Contributing Guidelines](CONTRIBUTING.md)** — How to contribute
|
|
594
|
+
- **[Changelog](CHANGELOG.md)** — Version history and changes
|
|
595
|
+
|
|
596
|
+
### Version Management
|
|
597
|
+
|
|
598
|
+
When updating the version number, use the automated script to ensure all files are updated consistently:
|
|
599
|
+
|
|
600
|
+
```powershell
|
|
601
|
+
# Update version to 3.0.4 (or any version)
|
|
602
|
+
.\scripts\update_version.ps1 -Version 3.0.4
|
|
603
|
+
|
|
604
|
+
# Update core files only (skip documentation)
|
|
605
|
+
.\scripts\update_version.ps1 -Version 3.0.4 -SkipDocs
|
|
606
|
+
```
|
|
607
|
+
|
|
608
|
+
**What it updates:**
|
|
609
|
+
- ✅ `pyproject.toml` - Package version
|
|
610
|
+
- ✅ `tapps_agents/__init__.py` - Module version
|
|
611
|
+
- ✅ `README.md` - Version badge and references
|
|
612
|
+
- ✅ `docs/README.md` - Documentation version
|
|
613
|
+
- ✅ `docs/API.md` - API version
|
|
614
|
+
- ✅ `docs/ARCHITECTURE.md` - Architecture version
|
|
615
|
+
- ✅ `docs/implementation/IMPROVEMENT_PLAN.json` - Metadata version
|
|
616
|
+
- ✅ Other documentation files with version references
|
|
617
|
+
|
|
618
|
+
**After running the script:**
|
|
619
|
+
1. Review changes: `git diff`
|
|
620
|
+
2. Update `CHANGELOG.md` with release notes
|
|
621
|
+
3. Commit and push changes
|
|
622
|
+
4. Create git tag: `git tag v3.0.4 && git push origin v3.0.4`
|
|
623
|
+
|
|
624
|
+
See [Release Guide](docs/operations/RELEASE_GUIDE.md) for complete release process.
|
|
625
|
+
|
|
626
|
+
### Reference
|
|
627
|
+
- **[Project Requirements](requirements/PROJECT_REQUIREMENTS.md)** - Complete specification
|
|
628
|
+
- **[Technology Stack](requirements/TECH_STACK.md)** - Recommended technologies
|
|
629
|
+
|
|
630
|
+
## Status
|
|
631
|
+
|
|
632
|
+
**Phase**: ✅ **All 7 Phases Complete - Cursor AI Integration Plan 2025**
|
|
633
|
+
**Version**: 3.5.39
|
|
634
|
+
**Last Updated**: January 2026
|
|
635
|
+
**Cursor AI Integration**: ✅ Complete (Phases 1-7)
|
|
636
|
+
**Dependencies**: ✅ Updated to latest 2025 stable versions (pytest 9.x, ruff 0.14.8, mypy 1.19.0, etc.)
|
|
637
|
+
|
|
638
|
+
### Integration Status
|
|
639
|
+
- ✅ Phase 1: Core Agents to Skills
|
|
640
|
+
- ✅ Phase 2: Quality Tools Integration
|
|
641
|
+
- ✅ Phase 3: Remaining Agents + Advanced Features
|
|
642
|
+
- ✅ Phase 5: Multi-Agent Orchestration
|
|
643
|
+
- ✅ Phase 6: Context7 Optimization + Security
|
|
644
|
+
- ✅ Phase 7: NUC Optimization
|
|
645
|
+
|
|
646
|
+
See [Cursor AI Integration Plan 2025](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md) for complete details.
|
|
647
|
+
|
|
648
|
+
## Self-Hosting
|
|
649
|
+
|
|
650
|
+
This project uses its own framework for development:
|
|
651
|
+
- **5 Industry Experts** configured (AI frameworks, code quality, architecture, DevOps, documentation)
|
|
652
|
+
- **Enhancer Agent** actively used (23+ enhancement sessions)
|
|
653
|
+
- **Context7 Integration** with KB cache
|
|
654
|
+
- **14 Cursor Skills** available in `.claude/skills/` (14 agent skills + simple-mode)
|
|
655
|
+
- **NUC Optimization** enabled for resource-constrained environments
|
|
656
|
+
- Configuration in `.tapps-agents/` directory
|
|
657
|
+
|
|
658
|
+
See [Self-Hosting Setup](docs/implementation/SELF_HOSTING_SETUP_COMPLETE.md) for details.
|
|
659
|
+
|
|
660
|
+
## Platform & repository
|
|
661
|
+
|
|
662
|
+
- **Windows:** Supported (Windows, Linux, macOS). Use UTF-8 for scripts and file I/O. See [Troubleshooting](docs/TROUBLESHOOTING.md) and [CONTRIBUTING](CONTRIBUTING.md) for encoding guidelines.
|
|
663
|
+
- **Repository:** Dependabot, CODEOWNERS, issue/PR templates, GitHub Actions, SECURITY.md. See [CONTRIBUTING](CONTRIBUTING.md) and [.github/](.github/).
|
|
664
|
+
|
|
665
|
+
## For Framework Developers & Contributors
|
|
666
|
+
|
|
667
|
+
- **Accuracy:** Agents and skills must report only verified facts. Do not assume success from tests or error handling. See project rules in `.cursor/rules/` and [CONTRIBUTING](CONTRIBUTING.md).
|
|
668
|
+
- **Framework changes:** When modifying `tapps_agents/`, use the Full SDLC workflow: `@simple-mode *full "Implement [description]"` or `tapps-agents simple-mode full --prompt "..." --auto`. See [Framework Development Workflow](docs/FRAMEWORK_DEVELOPMENT_WORKFLOW.md).
|
|
669
|
+
|
|
670
|
+
## License
|
|
671
|
+
|
|
672
|
+
See [LICENSE](LICENSE) file for details.
|