CHANGELOG.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
socrates_ai.egg-info/PKG-INFO
socrates_ai.egg-info/SOURCES.txt
socrates_ai.egg-info/dependency_links.txt
socrates_ai.egg-info/requires.txt
socrates_ai.egg-info/top_level.txt
socratic_system/__init__.py
socratic_system/constants.py
socratic_system/monitoring_metrics.py
socratic_system/clients/__init__.py
socratic_system/config/constants.py
socratic_system/config/knowledge_base.json
socratic_system/conflict_resolution/__init__.py
socratic_system/conflict_resolution/base.py
socratic_system/conflict_resolution/checkers.py
socratic_system/conflict_resolution/detector.py
socratic_system/conflict_resolution/rules.py
socratic_system/core/__init__.py
socratic_system/core/analyzer_integration.py
socratic_system/core/insight_categorizer.py
socratic_system/core/learning_integration.py
socratic_system/core/project_categories.py
socratic_system/core/question_selector.py
socratic_system/core/workflow_builder.py
socratic_system/core/workflow_integration.py
socratic_system/database/__init__.py
socratic_system/database/connection_pool.py
socratic_system/database/embedding_cache.py
socratic_system/database/knowledge_manager.py
socratic_system/database/migration_runner.py
socratic_system/database/project_db.py
socratic_system/database/project_file_manager.py
socratic_system/database/query_profiler.py
socratic_system/database/read_write_split.py
socratic_system/database/search_cache.py
socratic_system/database/vector_db.py
socratic_system/migration/enable_workflow_optimization.py
socratic_system/models/__init__.py
socratic_system/models/conflict.py
socratic_system/models/knowledge.py
socratic_system/models/learning.py
socratic_system/models/llm_provider.py
socratic_system/models/maturity.py
socratic_system/models/monitoring.py
socratic_system/models/note.py
socratic_system/models/project.py
socratic_system/models/role.py
socratic_system/models/user.py
socratic_system/models/workflow.py
socratic_system/orchestration/__init__.py
socratic_system/orchestration/knowledge_base.py
socratic_system/orchestration/orchestrator.py
socratic_system/parsers/__init__.py
socratic_system/parsers/code_parser.py
socratic_system/services/__init__.py
socratic_system/services/document_understanding.py
socratic_system/services/orchestrator_service.py
socratic_system/sponsorships/__init__.py
socratic_system/sponsorships/models.py
socratic_system/sponsorships/tiers.py
socratic_system/sponsorships/webhook.py
socratic_system/subscription/__init__.py
socratic_system/subscription/checker.py
socratic_system/subscription/storage.py
socratic_system/subscription/tiers.py
socratic_system/ui/__init__.py
socratic_system/ui/analytics_display.py
socratic_system/ui/command_handler.py
socratic_system/ui/context_display.py
socratic_system/ui/main_app.py
socratic_system/ui/maturity_display.py
socratic_system/ui/navigation.py
socratic_system/ui/nlu_handler.py
socratic_system/ui/commands/__init__.py
socratic_system/ui/commands/analytics_commands.py
socratic_system/ui/commands/base.py
socratic_system/ui/commands/code_commands.py
socratic_system/ui/commands/collab_commands.py
socratic_system/ui/commands/conv_commands.py
socratic_system/ui/commands/debug_commands.py
socratic_system/ui/commands/doc_commands.py
socratic_system/ui/commands/file_commands.py
socratic_system/ui/commands/finalize_commands.py
socratic_system/ui/commands/github_commands.py
socratic_system/ui/commands/knowledge_commands.py
socratic_system/ui/commands/llm_commands.py
socratic_system/ui/commands/maturity_commands.py
socratic_system/ui/commands/model_commands.py
socratic_system/ui/commands/note_commands.py
socratic_system/ui/commands/project_commands.py
socratic_system/ui/commands/query_commands.py
socratic_system/ui/commands/session_commands.py
socratic_system/ui/commands/skills_commands.py
socratic_system/ui/commands/stats_commands.py
socratic_system/ui/commands/subscription_commands.py
socratic_system/ui/commands/system_commands.py
socratic_system/ui/commands/user_commands.py
socratic_system/ui/commands/workflow_commands.py
socratic_system/utils/__init__.py
socratic_system/utils/archive_builder.py
socratic_system/utils/artifact_saver.py
socratic_system/utils/code_extractor.py
socratic_system/utils/code_structure_analyzer.py
socratic_system/utils/documentation_generator.py
socratic_system/utils/file_change_tracker.py
socratic_system/utils/git_initializer.py
socratic_system/utils/git_repository_manager.py
socratic_system/utils/logger.py
socratic_system/utils/multi_file_splitter.py
socratic_system/utils/orchestrator_helper.py
socratic_system/utils/project_templates.py
socratic_system/utils/extractors/__init__.py
socratic_system/utils/extractors/base.py
socratic_system/utils/extractors/generic_extractor.py
socratic_system/utils/extractors/models.py
socratic_system/utils/extractors/python_extractor.py
socratic_system/utils/extractors/registry.py
socratic_system/utils/validators/__init__.py
socratic_system/utils/validators/dependency_validator.py
socratic_system/utils/validators/syntax_validator.py
socratic_system/utils/validators/test_executor.py
tests/__init__.py
tests/conftest.py
tests/api/test_finalization_endpoints.py
tests/caching/test_embedding_cache.py
tests/caching/test_search_cache.py
tests/caching/test_ttl_cache.py
tests/database/test_db_verification.py
tests/database/test_project_db_operations.py
tests/database/test_vector_db_operations.py
tests/e2e/__init__.py
tests/e2e/test_api_workflows.py
tests/e2e/test_complete_workflows.py
tests/e2e/journeys/test_complete_flow.py
tests/e2e/journeys/test_comprehensive_flow.py
tests/integration/__init__.py
tests/integration/conftest.py
tests/integration/test_api_comprehensive.py
tests/integration/test_api_database_integration.py
tests/integration/test_api_workflows.py
tests/integration/test_auth_workflows.py
tests/integration/test_chat_workflows.py
tests/integration/test_database_operations.py
tests/integration/test_end_to_end_scenarios.py
tests/integration/test_integration_workflows.py
tests/integration/test_knowledge_workflows.py
tests/integration/test_library_imports.py
tests/integration/test_orchestrator_workflows.py
tests/integration/test_project_management.py
tests/integration/test_project_workflow.py
tests/integration/test_project_workflows.py
tests/integration/test_subscription_enforcement.py
tests/integration/test_websocket_database_integration.py
tests/integration/workflow_integration_test.py
tests/integration/workflows/test_full_flow.py
tests/integration/workflows/test_knowledge_management.py
tests/integration/workflows/test_knowledge_workflows.py
tests/integration/workflows/test_phase2_smoke.py
tests/integration/workflows/test_phase4_verification.py
tests/performance/__init__.py
tests/unit/__init__.py
tests/unit/workflow_test.py
tests/unit/core/__init__.py
tests/unit/database/__init__.py
tests/unit/database/test_project_db_core.py
tests/unit/database/test_read_write_split.py
tests/unit/middleware/test_metrics.py
tests/unit/models/test_models.py
tests/unit/models/test_project_types.py
tests/unit/orchestration/__init__.py
tests/unit/orchestration/test_orchestrator_basic.py
tests/unit/routers/__init__.py
tests/unit/routers/test_analytics.py
tests/unit/routers/test_api_endpoints.py
tests/unit/routers/test_auth.py
tests/unit/routers/test_chat_sessions.py
tests/unit/routers/test_collaboration.py
tests/unit/routers/test_knowledge.py
tests/unit/routers/test_nlu.py
tests/unit/routers/test_projects.py
tests/unit/routers/test_routing.py
tests/unit/services/test_orchestrator.py
tests/unit/services/test_orchestrator_expansion.py
tests/unit/services/test_orchestrator_integration.py
tests/unit/utils/__init__.py
tests/unit/utils/test_code_extractor.py
tests/unit/utils/test_code_structure_analyzer.py
tests/unit/utils/test_dependency_validator.py
tests/unit/utils/test_file_change_tracker.py
tests/unit/utils/test_git_repository_manager.py
tests/unit/utils/test_parsers.py
tests/unit/utils/test_syntax_validator.py
tests/utils/__init__.py
tests/utils/test_archive_builder.py
tests/utils/test_code_extractor.py
tests/utils/test_documentation_generator.py
tests/utils/test_git_initializer.py
tests/utils/test_project_templates.py
tests/utils/test_utils.py