Files
The-Ouroboros/src/context/__init__.py
agentson e3b1ecc572
Some checks failed
CI / test (pull_request) Has been cancelled
feat: context aggregation scheduler (issue #87)
- Add ContextScheduler with run_if_due() for periodic rollups
- Weekly (Sunday), monthly (last day), quarterly, annual, legacy schedules
- Daily cleanup of expired contexts via ContextStore
- Dedup guard: each task runs at most once per day

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 04:26:51 +09:00

12 lines
412 B
Python

"""Multi-layered context management system for trading decisions.
The context tree implements Pillar 2: hierarchical memory management across
7 time horizons, from real-time quotes to generational wisdom.
"""
from src.context.layer import ContextLayer
from src.context.scheduler import ContextScheduler
from src.context.store import ContextStore
__all__ = ["ContextLayer", "ContextScheduler", "ContextStore"]