What problem does it solve? Continuing an AI coding conversation on a different computer is normally impossible because session transcripts, artifacts, and uncommitted workspace changes live only on the local machine. This Skill packages the entire session state and syncs it through a shared Git remote so work can resume anywhere. ## Core Features & Use Cases - Push Sessions: Archive the conversation transcript, brain directory, metadata, and uncommitted changes into a tarball stored as a Git blob under refs/gemini-sessions/<session-id> and push it to origin. - Pull and Restore: Fetch a session by Conversation ID, align the local branch to the recorded commit, apply the workspace patch, and restore conversation files, with interactive handling for dirty workspaces (abort, stash, or overwrite). - List and Clear: Enumerate all synced sessions with local/remote status, and delete session refs locally and on the remote, individually or in bulk. - Use Case: You start a debugging session with the Antigravity CLI on your desktop, push the session before leaving, then pull it on your laptop at home and continue the exact conversation with the same code state. ## Quick Start Ask the agent to push the current conversation session to the Git remote so you can restore it on another machine.