diff --git a/brain/.bumpversion.toml b/.bumpversion.toml similarity index 100% rename from brain/.bumpversion.toml rename to .bumpversion.toml diff --git a/brain/.dockerignore b/.dockerignore similarity index 100% rename from brain/.dockerignore rename to .dockerignore diff --git a/brain/Dockerfile b/Dockerfile similarity index 100% rename from brain/Dockerfile rename to Dockerfile diff --git a/brain/README.md b/README.md similarity index 100% rename from brain/README.md rename to README.md diff --git a/brain/agent/__init__.py b/alfred/agent/__init__.py similarity index 100% rename from brain/agent/__init__.py rename to alfred/agent/__init__.py diff --git a/brain/agent/agent.py b/alfred/agent/agent.py similarity index 100% rename from brain/agent/agent.py rename to alfred/agent/agent.py diff --git a/brain/agent/config.py b/alfred/agent/config.py similarity index 100% rename from brain/agent/config.py rename to alfred/agent/config.py diff --git a/brain/agent/llm/__init__.py b/alfred/agent/llm/__init__.py similarity index 100% rename from brain/agent/llm/__init__.py rename to alfred/agent/llm/__init__.py diff --git a/brain/agent/llm/deepseek.py b/alfred/agent/llm/deepseek.py similarity index 100% rename from brain/agent/llm/deepseek.py rename to alfred/agent/llm/deepseek.py diff --git a/brain/agent/llm/exceptions.py b/alfred/agent/llm/exceptions.py similarity index 100% rename from brain/agent/llm/exceptions.py rename to alfred/agent/llm/exceptions.py diff --git a/brain/agent/llm/ollama.py b/alfred/agent/llm/ollama.py similarity index 100% rename from brain/agent/llm/ollama.py rename to alfred/agent/llm/ollama.py diff --git a/brain/agent/parameters.py b/alfred/agent/parameters.py similarity index 100% rename from brain/agent/parameters.py rename to alfred/agent/parameters.py diff --git a/brain/agent/prompts.py b/alfred/agent/prompts.py similarity index 100% rename from brain/agent/prompts.py rename to alfred/agent/prompts.py diff --git a/brain/agent/registry.py b/alfred/agent/registry.py similarity index 100% rename from brain/agent/registry.py rename to alfred/agent/registry.py diff --git a/brain/agent/tools/__init__.py b/alfred/agent/tools/__init__.py similarity index 100% rename from brain/agent/tools/__init__.py rename to alfred/agent/tools/__init__.py diff --git a/brain/agent/tools/api.py b/alfred/agent/tools/api.py similarity index 100% rename from brain/agent/tools/api.py rename to alfred/agent/tools/api.py diff --git a/brain/agent/tools/filesystem.py b/alfred/agent/tools/filesystem.py similarity index 100% rename from brain/agent/tools/filesystem.py rename to alfred/agent/tools/filesystem.py diff --git a/brain/agent/tools/language.py b/alfred/agent/tools/language.py similarity index 100% rename from brain/agent/tools/language.py rename to alfred/agent/tools/language.py diff --git a/brain/app.py b/alfred/app.py similarity index 100% rename from brain/app.py rename to alfred/app.py diff --git a/brain/application/__init__.py b/alfred/application/__init__.py similarity index 100% rename from brain/application/__init__.py rename to alfred/application/__init__.py diff --git a/brain/application/filesystem/__init__.py b/alfred/application/filesystem/__init__.py similarity index 100% rename from brain/application/filesystem/__init__.py rename to alfred/application/filesystem/__init__.py diff --git a/brain/application/filesystem/dto.py b/alfred/application/filesystem/dto.py similarity index 100% rename from brain/application/filesystem/dto.py rename to alfred/application/filesystem/dto.py diff --git a/brain/application/filesystem/list_folder.py b/alfred/application/filesystem/list_folder.py similarity index 100% rename from brain/application/filesystem/list_folder.py rename to alfred/application/filesystem/list_folder.py diff --git a/brain/application/filesystem/set_folder_path.py b/alfred/application/filesystem/set_folder_path.py similarity index 100% rename from brain/application/filesystem/set_folder_path.py rename to alfred/application/filesystem/set_folder_path.py diff --git a/brain/application/movies/__init__.py b/alfred/application/movies/__init__.py similarity index 100% rename from brain/application/movies/__init__.py rename to alfred/application/movies/__init__.py diff --git a/brain/application/movies/dto.py b/alfred/application/movies/dto.py similarity index 100% rename from brain/application/movies/dto.py rename to alfred/application/movies/dto.py diff --git a/brain/application/movies/search_movie.py b/alfred/application/movies/search_movie.py similarity index 100% rename from brain/application/movies/search_movie.py rename to alfred/application/movies/search_movie.py diff --git a/brain/application/torrents/__init__.py b/alfred/application/torrents/__init__.py similarity index 100% rename from brain/application/torrents/__init__.py rename to alfred/application/torrents/__init__.py diff --git a/brain/application/torrents/add_torrent.py b/alfred/application/torrents/add_torrent.py similarity index 100% rename from brain/application/torrents/add_torrent.py rename to alfred/application/torrents/add_torrent.py diff --git a/brain/application/torrents/dto.py b/alfred/application/torrents/dto.py similarity index 100% rename from brain/application/torrents/dto.py rename to alfred/application/torrents/dto.py diff --git a/brain/application/torrents/search_torrents.py b/alfred/application/torrents/search_torrents.py similarity index 100% rename from brain/application/torrents/search_torrents.py rename to alfred/application/torrents/search_torrents.py diff --git a/brain/domain/__init__.py b/alfred/domain/__init__.py similarity index 100% rename from brain/domain/__init__.py rename to alfred/domain/__init__.py diff --git a/brain/domain/movies/__init__.py b/alfred/domain/movies/__init__.py similarity index 100% rename from brain/domain/movies/__init__.py rename to alfred/domain/movies/__init__.py diff --git a/brain/domain/movies/entities.py b/alfred/domain/movies/entities.py similarity index 100% rename from brain/domain/movies/entities.py rename to alfred/domain/movies/entities.py diff --git a/brain/domain/movies/exceptions.py b/alfred/domain/movies/exceptions.py similarity index 100% rename from brain/domain/movies/exceptions.py rename to alfred/domain/movies/exceptions.py diff --git a/brain/domain/movies/repositories.py b/alfred/domain/movies/repositories.py similarity index 100% rename from brain/domain/movies/repositories.py rename to alfred/domain/movies/repositories.py diff --git a/brain/domain/movies/services.py b/alfred/domain/movies/services.py similarity index 100% rename from brain/domain/movies/services.py rename to alfred/domain/movies/services.py diff --git a/brain/domain/movies/value_objects.py b/alfred/domain/movies/value_objects.py similarity index 100% rename from brain/domain/movies/value_objects.py rename to alfred/domain/movies/value_objects.py diff --git a/brain/domain/shared/__init__.py b/alfred/domain/shared/__init__.py similarity index 100% rename from brain/domain/shared/__init__.py rename to alfred/domain/shared/__init__.py diff --git a/brain/domain/shared/exceptions.py b/alfred/domain/shared/exceptions.py similarity index 100% rename from brain/domain/shared/exceptions.py rename to alfred/domain/shared/exceptions.py diff --git a/brain/domain/shared/value_objects.py b/alfred/domain/shared/value_objects.py similarity index 100% rename from brain/domain/shared/value_objects.py rename to alfred/domain/shared/value_objects.py diff --git a/brain/domain/subtitles/__init__.py b/alfred/domain/subtitles/__init__.py similarity index 100% rename from brain/domain/subtitles/__init__.py rename to alfred/domain/subtitles/__init__.py diff --git a/brain/domain/subtitles/entities.py b/alfred/domain/subtitles/entities.py similarity index 100% rename from brain/domain/subtitles/entities.py rename to alfred/domain/subtitles/entities.py diff --git a/brain/domain/subtitles/exceptions.py b/alfred/domain/subtitles/exceptions.py similarity index 100% rename from brain/domain/subtitles/exceptions.py rename to alfred/domain/subtitles/exceptions.py diff --git a/brain/domain/subtitles/repositories.py b/alfred/domain/subtitles/repositories.py similarity index 100% rename from brain/domain/subtitles/repositories.py rename to alfred/domain/subtitles/repositories.py diff --git a/brain/domain/subtitles/services.py b/alfred/domain/subtitles/services.py similarity index 100% rename from brain/domain/subtitles/services.py rename to alfred/domain/subtitles/services.py diff --git a/brain/domain/subtitles/value_objects.py b/alfred/domain/subtitles/value_objects.py similarity index 100% rename from brain/domain/subtitles/value_objects.py rename to alfred/domain/subtitles/value_objects.py diff --git a/brain/domain/tv_shows/__init__.py b/alfred/domain/tv_shows/__init__.py similarity index 100% rename from brain/domain/tv_shows/__init__.py rename to alfred/domain/tv_shows/__init__.py diff --git a/brain/domain/tv_shows/entities.py b/alfred/domain/tv_shows/entities.py similarity index 100% rename from brain/domain/tv_shows/entities.py rename to alfred/domain/tv_shows/entities.py diff --git a/brain/domain/tv_shows/exceptions.py b/alfred/domain/tv_shows/exceptions.py similarity index 100% rename from brain/domain/tv_shows/exceptions.py rename to alfred/domain/tv_shows/exceptions.py diff --git a/brain/domain/tv_shows/repositories.py b/alfred/domain/tv_shows/repositories.py similarity index 100% rename from brain/domain/tv_shows/repositories.py rename to alfred/domain/tv_shows/repositories.py diff --git a/brain/domain/tv_shows/services.py b/alfred/domain/tv_shows/services.py similarity index 100% rename from brain/domain/tv_shows/services.py rename to alfred/domain/tv_shows/services.py diff --git a/brain/domain/tv_shows/value_objects.py b/alfred/domain/tv_shows/value_objects.py similarity index 100% rename from brain/domain/tv_shows/value_objects.py rename to alfred/domain/tv_shows/value_objects.py diff --git a/brain/infrastructure/__init__.py b/alfred/infrastructure/__init__.py similarity index 100% rename from brain/infrastructure/__init__.py rename to alfred/infrastructure/__init__.py diff --git a/brain/infrastructure/api/__init__.py b/alfred/infrastructure/api/__init__.py similarity index 100% rename from brain/infrastructure/api/__init__.py rename to alfred/infrastructure/api/__init__.py diff --git a/brain/infrastructure/api/knaben/__init__.py b/alfred/infrastructure/api/knaben/__init__.py similarity index 100% rename from brain/infrastructure/api/knaben/__init__.py rename to alfred/infrastructure/api/knaben/__init__.py diff --git a/brain/infrastructure/api/knaben/client.py b/alfred/infrastructure/api/knaben/client.py similarity index 100% rename from brain/infrastructure/api/knaben/client.py rename to alfred/infrastructure/api/knaben/client.py diff --git a/brain/infrastructure/api/knaben/dto.py b/alfred/infrastructure/api/knaben/dto.py similarity index 100% rename from brain/infrastructure/api/knaben/dto.py rename to alfred/infrastructure/api/knaben/dto.py diff --git a/brain/infrastructure/api/knaben/exceptions.py b/alfred/infrastructure/api/knaben/exceptions.py similarity index 100% rename from brain/infrastructure/api/knaben/exceptions.py rename to alfred/infrastructure/api/knaben/exceptions.py diff --git a/brain/infrastructure/api/qbittorrent/__init__.py b/alfred/infrastructure/api/qbittorrent/__init__.py similarity index 100% rename from brain/infrastructure/api/qbittorrent/__init__.py rename to alfred/infrastructure/api/qbittorrent/__init__.py diff --git a/brain/infrastructure/api/qbittorrent/client.py b/alfred/infrastructure/api/qbittorrent/client.py similarity index 100% rename from brain/infrastructure/api/qbittorrent/client.py rename to alfred/infrastructure/api/qbittorrent/client.py diff --git a/brain/infrastructure/api/qbittorrent/dto.py b/alfred/infrastructure/api/qbittorrent/dto.py similarity index 100% rename from brain/infrastructure/api/qbittorrent/dto.py rename to alfred/infrastructure/api/qbittorrent/dto.py diff --git a/brain/infrastructure/api/qbittorrent/exceptions.py b/alfred/infrastructure/api/qbittorrent/exceptions.py similarity index 100% rename from brain/infrastructure/api/qbittorrent/exceptions.py rename to alfred/infrastructure/api/qbittorrent/exceptions.py diff --git a/brain/infrastructure/api/tmdb/__init__.py b/alfred/infrastructure/api/tmdb/__init__.py similarity index 100% rename from brain/infrastructure/api/tmdb/__init__.py rename to alfred/infrastructure/api/tmdb/__init__.py diff --git a/brain/infrastructure/api/tmdb/client.py b/alfred/infrastructure/api/tmdb/client.py similarity index 100% rename from brain/infrastructure/api/tmdb/client.py rename to alfred/infrastructure/api/tmdb/client.py diff --git a/brain/infrastructure/api/tmdb/dto.py b/alfred/infrastructure/api/tmdb/dto.py similarity index 100% rename from brain/infrastructure/api/tmdb/dto.py rename to alfred/infrastructure/api/tmdb/dto.py diff --git a/brain/infrastructure/api/tmdb/exceptions.py b/alfred/infrastructure/api/tmdb/exceptions.py similarity index 100% rename from brain/infrastructure/api/tmdb/exceptions.py rename to alfred/infrastructure/api/tmdb/exceptions.py diff --git a/brain/infrastructure/filesystem/__init__.py b/alfred/infrastructure/filesystem/__init__.py similarity index 100% rename from brain/infrastructure/filesystem/__init__.py rename to alfred/infrastructure/filesystem/__init__.py diff --git a/brain/infrastructure/filesystem/exceptions.py b/alfred/infrastructure/filesystem/exceptions.py similarity index 100% rename from brain/infrastructure/filesystem/exceptions.py rename to alfred/infrastructure/filesystem/exceptions.py diff --git a/brain/infrastructure/filesystem/file_manager.py b/alfred/infrastructure/filesystem/file_manager.py similarity index 100% rename from brain/infrastructure/filesystem/file_manager.py rename to alfred/infrastructure/filesystem/file_manager.py diff --git a/brain/infrastructure/filesystem/organizer.py b/alfred/infrastructure/filesystem/organizer.py similarity index 100% rename from brain/infrastructure/filesystem/organizer.py rename to alfred/infrastructure/filesystem/organizer.py diff --git a/brain/infrastructure/persistence/__init__.py b/alfred/infrastructure/persistence/__init__.py similarity index 100% rename from brain/infrastructure/persistence/__init__.py rename to alfred/infrastructure/persistence/__init__.py diff --git a/brain/infrastructure/persistence/context.py b/alfred/infrastructure/persistence/context.py similarity index 100% rename from brain/infrastructure/persistence/context.py rename to alfred/infrastructure/persistence/context.py diff --git a/brain/infrastructure/persistence/json/__init__.py b/alfred/infrastructure/persistence/json/__init__.py similarity index 100% rename from brain/infrastructure/persistence/json/__init__.py rename to alfred/infrastructure/persistence/json/__init__.py diff --git a/brain/infrastructure/persistence/json/movie_repository.py b/alfred/infrastructure/persistence/json/movie_repository.py similarity index 100% rename from brain/infrastructure/persistence/json/movie_repository.py rename to alfred/infrastructure/persistence/json/movie_repository.py diff --git a/brain/infrastructure/persistence/json/subtitle_repository.py b/alfred/infrastructure/persistence/json/subtitle_repository.py similarity index 100% rename from brain/infrastructure/persistence/json/subtitle_repository.py rename to alfred/infrastructure/persistence/json/subtitle_repository.py diff --git a/brain/infrastructure/persistence/json/tvshow_repository.py b/alfred/infrastructure/persistence/json/tvshow_repository.py similarity index 100% rename from brain/infrastructure/persistence/json/tvshow_repository.py rename to alfred/infrastructure/persistence/json/tvshow_repository.py diff --git a/brain/infrastructure/persistence/memory.py b/alfred/infrastructure/persistence/memory.py similarity index 100% rename from brain/infrastructure/persistence/memory.py rename to alfred/infrastructure/persistence/memory.py diff --git a/brain/docs/architecture_diagram.md b/docs/architecture_diagram.md similarity index 100% rename from brain/docs/architecture_diagram.md rename to docs/architecture_diagram.md diff --git a/brain/docs/class_diagram.md b/docs/class_diagram.md similarity index 100% rename from brain/docs/class_diagram.md rename to docs/class_diagram.md diff --git a/brain/docs/component_diagram.md b/docs/component_diagram.md similarity index 100% rename from brain/docs/component_diagram.md rename to docs/component_diagram.md diff --git a/brain/docs/flowchart.md b/docs/flowchart.md similarity index 100% rename from brain/docs/flowchart.md rename to docs/flowchart.md diff --git a/brain/docs/sequence_diagram.md b/docs/sequence_diagram.md similarity index 100% rename from brain/docs/sequence_diagram.md rename to docs/sequence_diagram.md diff --git a/brain/manifests/add_torrent_by_index.json b/manifests/add_torrent_by_index.json similarity index 100% rename from brain/manifests/add_torrent_by_index.json rename to manifests/add_torrent_by_index.json diff --git a/brain/manifests/find_media_imdb_id.json b/manifests/find_media_imdb_id.json similarity index 100% rename from brain/manifests/find_media_imdb_id.json rename to manifests/find_media_imdb_id.json diff --git a/brain/manifests/find_torrent.json b/manifests/find_torrent.json similarity index 100% rename from brain/manifests/find_torrent.json rename to manifests/find_torrent.json diff --git a/brain/manifests/set_language.json b/manifests/set_language.json similarity index 100% rename from brain/manifests/set_language.json rename to manifests/set_language.json diff --git a/brain/poetry.lock b/poetry.lock similarity index 100% rename from brain/poetry.lock rename to poetry.lock diff --git a/brain/pyproject.toml b/pyproject.toml similarity index 100% rename from brain/pyproject.toml rename to pyproject.toml diff --git a/brain/tests/conftest.py b/tests/conftest.py similarity index 100% rename from brain/tests/conftest.py rename to tests/conftest.py diff --git a/brain/tests/test_agent.py b/tests/test_agent.py similarity index 100% rename from brain/tests/test_agent.py rename to tests/test_agent.py diff --git a/brain/tests/test_agent_critical.py b/tests/test_agent_critical.py similarity index 100% rename from brain/tests/test_agent_critical.py rename to tests/test_agent_critical.py diff --git a/brain/tests/test_agent_edge_cases.py b/tests/test_agent_edge_cases.py similarity index 100% rename from brain/tests/test_agent_edge_cases.py rename to tests/test_agent_edge_cases.py diff --git a/brain/tests/test_agent_integration.py b/tests/test_agent_integration.py similarity index 100% rename from brain/tests/test_agent_integration.py rename to tests/test_agent_integration.py diff --git a/brain/tests/test_api.py b/tests/test_api.py similarity index 100% rename from brain/tests/test_api.py rename to tests/test_api.py diff --git a/brain/tests/test_api_clients_integration.py b/tests/test_api_clients_integration.py similarity index 100% rename from brain/tests/test_api_clients_integration.py rename to tests/test_api_clients_integration.py diff --git a/brain/tests/test_api_edge_cases.py b/tests/test_api_edge_cases.py similarity index 100% rename from brain/tests/test_api_edge_cases.py rename to tests/test_api_edge_cases.py diff --git a/brain/tests/test_config_critical.py b/tests/test_config_critical.py similarity index 100% rename from brain/tests/test_config_critical.py rename to tests/test_config_critical.py diff --git a/brain/tests/test_config_edge_cases.py b/tests/test_config_edge_cases.py similarity index 100% rename from brain/tests/test_config_edge_cases.py rename to tests/test_config_edge_cases.py diff --git a/brain/tests/test_domain_edge_cases.py b/tests/test_domain_edge_cases.py similarity index 100% rename from brain/tests/test_domain_edge_cases.py rename to tests/test_domain_edge_cases.py diff --git a/brain/tests/test_llm_clients.py b/tests/test_llm_clients.py similarity index 100% rename from brain/tests/test_llm_clients.py rename to tests/test_llm_clients.py diff --git a/brain/tests/test_memory.py b/tests/test_memory.py similarity index 100% rename from brain/tests/test_memory.py rename to tests/test_memory.py diff --git a/brain/tests/test_memory_edge_cases.py b/tests/test_memory_edge_cases.py similarity index 100% rename from brain/tests/test_memory_edge_cases.py rename to tests/test_memory_edge_cases.py diff --git a/brain/tests/test_prompts.py b/tests/test_prompts.py similarity index 100% rename from brain/tests/test_prompts.py rename to tests/test_prompts.py diff --git a/brain/tests/test_prompts_critical.py b/tests/test_prompts_critical.py similarity index 100% rename from brain/tests/test_prompts_critical.py rename to tests/test_prompts_critical.py diff --git a/brain/tests/test_prompts_edge_cases.py b/tests/test_prompts_edge_cases.py similarity index 100% rename from brain/tests/test_prompts_edge_cases.py rename to tests/test_prompts_edge_cases.py diff --git a/brain/tests/test_registry_critical.py b/tests/test_registry_critical.py similarity index 100% rename from brain/tests/test_registry_critical.py rename to tests/test_registry_critical.py diff --git a/brain/tests/test_registry_edge_cases.py b/tests/test_registry_edge_cases.py similarity index 100% rename from brain/tests/test_registry_edge_cases.py rename to tests/test_registry_edge_cases.py diff --git a/brain/tests/test_repositories.py b/tests/test_repositories.py similarity index 100% rename from brain/tests/test_repositories.py rename to tests/test_repositories.py diff --git a/brain/tests/test_repositories_edge_cases.py b/tests/test_repositories_edge_cases.py similarity index 100% rename from brain/tests/test_repositories_edge_cases.py rename to tests/test_repositories_edge_cases.py diff --git a/brain/tests/test_tools_api.py b/tests/test_tools_api.py similarity index 100% rename from brain/tests/test_tools_api.py rename to tests/test_tools_api.py diff --git a/brain/tests/test_tools_edge_cases.py b/tests/test_tools_edge_cases.py similarity index 100% rename from brain/tests/test_tools_edge_cases.py rename to tests/test_tools_edge_cases.py diff --git a/brain/tests/test_tools_filesystem.py b/tests/test_tools_filesystem.py similarity index 100% rename from brain/tests/test_tools_filesystem.py rename to tests/test_tools_filesystem.py