Pause or resume the current session
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install vibe-guide@claude-code-plugins-plus# /vibe-guide:stop Toggle pause on the current session. ## Usage ## Examples Pauses the session. Run again to resume. ## Execution Steps ### Step 1: Check Session Exists If `.vibe/session.json` doesn't exist: ### Step 2: Toggle Stop Flag Read `.vibe/session.json`: - If `stop` is false, set to true - If `stop` is true, set to false Write updated session.json. ### Step 3: Update Status Update `.vibe/status.json`: - If now paused: set `phase` to "paused", update `step_title` to "Session paused" - If now resumed: restore previous phase (read from changelog context) ### Step...