Project Structure: Full Project
===============================

📂 codex-core/
    📄 .gitignore
    📄 .pre-commit-config.yaml
    📄 CHANGELOG.md
    📄 README.md
    📄 mkdocs.yml
    📄 project_structure.txt
    📄 pyproject.toml
    📂 .claude/
        📄 settings.local.json
    📂 docs/
        📄 changelog.md
        📄 index.md
        📂 api/
            📄 common.md
            📄 core.md
            📄 dev.md
            📄 index.md
            📄 settings.md
        📂 en_EN/
            📄 README.md
            📂 architecture/
                📄 README.md
                📂 platform/
                    📄 common.md
                    📄 core.md
                    📄 dev.md
                    📄 settings.md
            📂 guide/
                📄 getting_started.md
        📂 evolution/
            📄 roadmap.md
        📂 ru_RU/
            📄 README.md
            📂 architecture/
                📄 README.md
                📂 platform/
                    📄 common.md
                    📄 core.md
                    📄 dev.md
                    📄 settings.md
            📂 guide/
                📄 getting_started.md
    📂 src/
        📂 codex_core/
            📄 __init__.py
            📄 py.typed
            📂 common/
                📄 __init__.py
                📄 log_context.py
                📄 loguru_setup.py
                📄 phone.py
                📄 text.py
            📂 core/
                📄 __init__.py
                📄 base_dto.py
                📄 exceptions.py
                📄 pii.py
            📂 dev/
                📄 __init__.py
                📄 check_runner.py
                📄 project_tree.py
                📂 static_compiler/
                    📄 __init__.py
                    📄 compiler.py
                    📄 css.py
                    📄 js.py
            📂 settings/
                📄 __init__.py
                📄 base.py
    📂 tests/
        📄 conftest.py
        📂 integration/
            📄 __init__.py
            📄 test_settings_integration.py
        📂 unit/
            📄 __init__.py
            📂 common/
                📄 __init__.py
                📄 test_phone.py
                📄 test_text.py
            📂 core/
                📄 __init__.py
                📄 test_pii.py
            📂 settings/
                📄 __init__.py
                📄 test_settings.py
    📂 tools/
        📄 __init__.py
        📂 dev/
            📄 README.md
            📄 __init__.py
            📄 check.py
            📄 generate_project_tree.py
