import sys sys.path.insert(0, '/data/symbiont') from symbiont.sessions import SessionRegistry reg = SessionRegistry() sid = reg.register( 'cowork', 'Symbiont genesis session: built router, dispatcher, ledger, heartbeat, Dendrite integration, session registry, CLAUDE.md bootstrap, skills infrastructure' ) reg.log(sid, 'Built LLM router: Haiku classifies tasks, dispatches to cheapest capable model') reg.log(sid, 'Built dispatcher: Claude Code CLI wrapper with rate-limit detection') reg.log(sid, 'Built systemd life support: symbiont-api.service + symbiont-heartbeat.timer') reg.log(sid, 'Integrated Dendrite headless browser via symbiont.web module') reg.log(sid, 'Built session registry: SQLite-based cross-instance awareness') reg.log(sid, 'Created CLAUDE.md bootstrap so new sessions auto-orient') reg.log(sid, 'Set up /data/skills/ canonical repo with auto-packaging via Caddy') reg.log(sid, 'Skills downloadable at https://cortex.hydrascale.net/skills/*.skill') print(f'Registered active session: {sid}')