"""Claude Code — single-agent CLI baseline: the whole search loop runs inside one local
``claude -p`` session, billed to the operator's claude.ai subscription by default.

  scaffold.py -> ClaudeCodeScaffold (the controller; the five loop components are inert here —
                                     Claude Code subsumes selection, prompting, and proposal)
"""
from __future__ import annotations

from .scaffold import ClaudeCodeScaffold

__all__ = ["ClaudeCodeScaffold"]
