Remove filesystem agent registry, rely solely on persistence#7
Closed
Remove filesystem agent registry, rely solely on persistence#7
Conversation
Remove DeepAgentRegistry, seed_builtin_agents(), and LoadAgentConfigUseCase. Agents are now managed exclusively via REST API (POST /api/v1/agents) with MinIO + PostgreSQL persistence. Startup fails fast if persistence is unavailable. - Delete DeepAgentRegistry (src/infrastructure/deepagent/registry.py) - Delete SeedAgentsUseCase and LoadAgentConfigUseCase + their tests - Remove agents_dir from Settings, remove COPY agents/ from Dockerfile - Add _require_agent_registry() guard in dependencies.py - Migrate test_routes.py to PersistentAgentRegistry - Migrate test_thread_management.py to mock AgentRegistry - Update README documentation 218 tests passing, 0 SonarQube issues, 88.7% coverage, 0 Trivy findings.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
DeepAgentRegistry(filesystem-based) —PersistentAgentRegistry(MinIO + PostgreSQL) is now the sole registryseed_builtin_agents()— agents are created/managed exclusively via REST API (POST /api/v1/agents)LoadAgentConfigUseCase— dead code with no route consumeragents_dirsetting andCOPY agents/from Dockerfile_require_agent_registry()guard — persistence is now mandatory, app fails fast if unavailableFiles deleted (6)
src/infrastructure/deepagent/registry.pysrc/application/use_cases/seed_agents.pysrc/application/use_cases/load_agent_config.pytests/unit/test_registry.pytests/unit/test_seed_agents.pytests/unit/test_load_agent_config_use_case.pyTest plan