tapps-agents 3.5.38__py3-none-any.whl → 3.5.40__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/cleanup/__init__.py +7 -0
- tapps_agents/agents/cleanup/agent.py +445 -0
- tapps_agents/agents/enhancer/agent.py +2 -2
- tapps_agents/agents/implementer/agent.py +35 -13
- tapps_agents/agents/reviewer/agent.py +43 -10
- tapps_agents/agents/reviewer/scoring.py +59 -68
- tapps_agents/agents/reviewer/tools/__init__.py +24 -0
- tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -0
- tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -0
- tapps_agents/beads/__init__.py +11 -0
- tapps_agents/beads/hydration.py +213 -0
- tapps_agents/beads/specs.py +206 -0
- tapps_agents/cli/commands/cleanup_agent.py +92 -0
- tapps_agents/cli/commands/health.py +19 -3
- tapps_agents/cli/commands/simple_mode.py +842 -676
- tapps_agents/cli/commands/task.py +219 -0
- tapps_agents/cli/commands/top_level.py +13 -0
- tapps_agents/cli/main.py +15 -2
- tapps_agents/cli/parsers/cleanup_agent.py +228 -0
- tapps_agents/cli/parsers/top_level.py +1978 -1881
- tapps_agents/core/config.py +43 -0
- tapps_agents/core/init_project.py +3012 -2896
- tapps_agents/epic/markdown_sync.py +105 -0
- tapps_agents/epic/orchestrator.py +1 -2
- tapps_agents/epic/parser.py +427 -423
- tapps_agents/experts/adaptive_domain_detector.py +0 -2
- tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +15 -15
- tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +19 -44
- tapps_agents/health/checks/outcomes.backup_20260204_064058.py +324 -0
- tapps_agents/health/checks/outcomes.backup_20260204_064256.py +324 -0
- tapps_agents/health/checks/outcomes.backup_20260204_064600.py +324 -0
- tapps_agents/health/checks/outcomes.py +134 -46
- tapps_agents/health/orchestrator.py +12 -4
- tapps_agents/hooks/__init__.py +33 -0
- tapps_agents/hooks/config.py +140 -0
- tapps_agents/hooks/events.py +135 -0
- tapps_agents/hooks/executor.py +128 -0
- tapps_agents/hooks/manager.py +143 -0
- tapps_agents/session/__init__.py +19 -0
- tapps_agents/session/manager.py +256 -0
- tapps_agents/simple_mode/code_snippet_handler.py +382 -0
- tapps_agents/simple_mode/intent_parser.py +29 -4
- tapps_agents/simple_mode/orchestrators/base.py +185 -59
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2667 -2642
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -723
- tapps_agents/simple_mode/workflow_suggester.py +37 -3
- tapps_agents/workflow/agent_handlers/implementer_handler.py +18 -3
- tapps_agents/workflow/cursor_executor.py +2196 -2118
- tapps_agents/workflow/direct_execution_fallback.py +16 -3
- tapps_agents/workflow/enforcer.py +36 -23
- tapps_agents/workflow/message_formatter.py +188 -0
- tapps_agents/workflow/parallel_executor.py +43 -4
- tapps_agents/workflow/parser.py +375 -357
- tapps_agents/workflow/rules_generator.py +337 -331
- tapps_agents/workflow/skill_invoker.py +9 -3
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/METADATA +9 -5
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/RECORD +62 -53
- tapps_agents/agents/analyst/SKILL.md +0 -85
- tapps_agents/agents/architect/SKILL.md +0 -80
- tapps_agents/agents/debugger/SKILL.md +0 -66
- tapps_agents/agents/designer/SKILL.md +0 -78
- tapps_agents/agents/documenter/SKILL.md +0 -95
- tapps_agents/agents/enhancer/SKILL.md +0 -189
- tapps_agents/agents/implementer/SKILL.md +0 -117
- tapps_agents/agents/improver/SKILL.md +0 -55
- tapps_agents/agents/ops/SKILL.md +0 -64
- tapps_agents/agents/orchestrator/SKILL.md +0 -238
- tapps_agents/agents/planner/story_template.md +0 -37
- tapps_agents/agents/reviewer/templates/quality-dashboard.html.j2 +0 -150
- tapps_agents/agents/tester/SKILL.md +0 -71
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/WHEEL +0 -0
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/entry_points.txt +0 -0
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/licenses/LICENSE +0 -0
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/top_level.txt +0 -0
tapps_agents/core/config.py
CHANGED
|
@@ -576,6 +576,43 @@ class EvaluatorAgentConfig(BaseModel):
|
|
|
576
576
|
)
|
|
577
577
|
|
|
578
578
|
|
|
579
|
+
class CleanupAgentConfig(BaseModel):
|
|
580
|
+
"""Configuration specific to Cleanup Agent"""
|
|
581
|
+
|
|
582
|
+
dry_run_default: bool = Field(
|
|
583
|
+
default=True,
|
|
584
|
+
description="Run in dry-run mode by default (preview changes without executing)"
|
|
585
|
+
)
|
|
586
|
+
backup_enabled: bool = Field(
|
|
587
|
+
default=True,
|
|
588
|
+
description="Create backups before destructive operations"
|
|
589
|
+
)
|
|
590
|
+
interactive_mode: bool = Field(
|
|
591
|
+
default=True,
|
|
592
|
+
description="Prompt for confirmation on risky operations"
|
|
593
|
+
)
|
|
594
|
+
default_pattern: str = Field(
|
|
595
|
+
default="*.md",
|
|
596
|
+
description="Default file pattern for analysis"
|
|
597
|
+
)
|
|
598
|
+
age_threshold_days: int = Field(
|
|
599
|
+
default=90,
|
|
600
|
+
ge=1,
|
|
601
|
+
le=365,
|
|
602
|
+
description="Days threshold for detecting outdated files"
|
|
603
|
+
)
|
|
604
|
+
similarity_threshold: float = Field(
|
|
605
|
+
default=0.8,
|
|
606
|
+
ge=0.0,
|
|
607
|
+
le=1.0,
|
|
608
|
+
description="Content similarity threshold for detecting near-duplicates"
|
|
609
|
+
)
|
|
610
|
+
backup_dir: str = Field(
|
|
611
|
+
default=".cleanup-backups",
|
|
612
|
+
description="Directory for cleanup backups"
|
|
613
|
+
)
|
|
614
|
+
|
|
615
|
+
|
|
579
616
|
class ExpertConfig(BaseModel):
|
|
580
617
|
"""Configuration for expert consultation system"""
|
|
581
618
|
|
|
@@ -696,6 +733,7 @@ class AgentsConfig(BaseModel):
|
|
|
696
733
|
default_factory=OrchestratorAgentConfig
|
|
697
734
|
)
|
|
698
735
|
evaluator: EvaluatorAgentConfig = Field(default_factory=EvaluatorAgentConfig)
|
|
736
|
+
cleanup_agent: CleanupAgentConfig = Field(default_factory=CleanupAgentConfig)
|
|
699
737
|
|
|
700
738
|
|
|
701
739
|
class CheckpointFrequencyConfig(BaseModel):
|
|
@@ -934,6 +972,11 @@ class WorkflowConfig(BaseModel):
|
|
|
934
972
|
ge=1.0,
|
|
935
973
|
description="Maximum time to wait for step completion (seconds)",
|
|
936
974
|
)
|
|
975
|
+
duration_threshold_seconds: float = Field(
|
|
976
|
+
default=30.0,
|
|
977
|
+
ge=1.0,
|
|
978
|
+
description="Duration threshold for background agent routing (seconds). Tasks estimated to take longer use background agents.",
|
|
979
|
+
)
|
|
937
980
|
state_persistence: StatePersistenceConfig = Field(
|
|
938
981
|
default_factory=StatePersistenceConfig,
|
|
939
982
|
description="State persistence and checkpointing configuration",
|