Split the monolithic context.py (117 lines) into five purpose-specific modules following single-responsibility principle: - config.py: Server-level constants (DATA_DIR, SESSIONS_DIR, PORT, STALE_EVENT_AGE, _state_lock) - agents.py: Agent-specific paths and caches (CLAUDE_PROJECTS_DIR, CODEX_SESSIONS_DIR, discovery caches) - auth.py: Authentication token generation/validation for spawn endpoint - spawn_config.py: Spawn feature configuration (PENDING_SPAWNS_DIR, rate limiting, projects watcher thread) - zellij.py: Zellij binary resolution and session management constants This refactoring improves: - Code navigation: Find relevant constants by domain, not alphabetically - Testing: Each module can be tested in isolation - Import clarity: Mixins import only what they need - Future maintenance: Changes to one domain don't risk breaking others All mixins updated to import from new module locations. Tests updated to use new import paths. Includes PROPOSED_CODE_FILE_REORGANIZATION_PLAN.md documenting the rationale and mapping from old to new locations. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
986 B
Python
29 lines
986 B
Python
"""Agent-specific paths, caches, and constants for Claude/Codex discovery."""
|
|
|
|
from pathlib import Path
|
|
|
|
# Claude Code conversation directory
|
|
CLAUDE_PROJECTS_DIR = Path.home() / ".claude" / "projects"
|
|
|
|
# Codex conversation directory
|
|
CODEX_SESSIONS_DIR = Path.home() / ".codex" / "sessions"
|
|
|
|
# Only discover recently-active Codex sessions (10 minutes)
|
|
CODEX_ACTIVE_WINDOW = 600
|
|
|
|
# Cache for Codex pane info (avoid running pgrep/ps/lsof on every request)
|
|
_codex_pane_cache = {"pid_info": {}, "cwd_map": {}, "expires": 0}
|
|
|
|
# Cache for parsed context usage by transcript file path + mtime/size
|
|
_context_usage_cache = {}
|
|
_CONTEXT_CACHE_MAX = 100
|
|
|
|
# Cache mapping Codex session IDs to transcript paths (or None when missing)
|
|
_codex_transcript_cache = {}
|
|
_CODEX_CACHE_MAX = 200
|
|
|
|
# Codex sessions dismissed during this server lifetime (prevents re-discovery)
|
|
# Uses dict (not set) for O(1) lookup + FIFO eviction via insertion order (Python 3.7+)
|
|
_dismissed_codex_ids = {}
|
|
_DISMISSED_MAX = 500
|