"""
Zero-to-one catalog of **individually implemented** SPY option research strategies.

Each live module under :mod:`RenTech.strategy_stack.diverse_theta_strategies_v1.strategies`
defines **one** strategy with its own documented entry logic (no shared signal helpers
between strategies). Execution primitives (conservative bid/ask marks, straddle PnL,
etc.) are delegated to :mod:`RenTech.strategy_stack.research_literature_theta_strategies`
so marks stay consistent with the rest of the repo.

Public entry point::

    python -m RenTech.strategy_stack.diverse_theta_strategies_v1.runner \\
        --start 2021-01-04 --end 2024-12-31 --out-json RenTech/data/logs/diverse_v1_batch.json
"""

from __future__ import annotations

__all__ = ["__version__"]

__version__ = "1.0.0"
