agent-shift-handoff generates structured shift handoffs for long-running
agents, verifies them at session start, and resumes work without replaying
already completed steps.
This is a session-continuity tool, not a memory-tier system.
- Versioned handoff schema
- Handoff generator with conservative continuity scoring
- Verifier that checks schema completeness and artifact drift
- Loader for resumed sessions
- SQLite state store for handoff history
- Streamlit dashboard for session continuity history
- Standalone OSS tool, not an archzOS platform dependency.
- Not affiliated with Anthropic or Letta.
python3 -m venv .venv
source .venv/bin/activate
pip install -e .[dev]python3 -m venv .venv
source .venv/bin/activate
pip install -e .[dev]
pytest
python3 examples/coding_agent_session_1.py
python3 examples/verify_handoff.py
python3 examples/coding_agent_session_2.py- Day 1 baseline complete: schema/model/store/tests + CI.
- Day 2 baseline complete: generator/verifier/loader/compactor + end-to-end example flow.
- Day 3 demo hardening pending: richer LangGraph live integration and polished dashboard broadcast asset.
- Schema contract: docs/HANDOFF_SCHEMA_SPEC.md
- Failure modes: docs/FAILURE_MODES.md
- Architecture context: docs/ARCHZOS_AGENT_ARCHITECTURE_CONTEXT.md