From keepgoing
Use when the user wants to switch to another AI tool (ChatGPT, Gemini, Copilot, etc.) and carry context with them - "continue on ChatGPT", "export context for Gemini", "take this to Copilot", "export my context".
How this skill is triggered — by the user, by Claude, or both
Slash command
/keepgoing:handoff [chatgpt | gemini | copilot | claude | general][chatgpt | gemini | copilot | claude | general]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to export their current project context to use in another AI tool.
The user wants to export their current project context to use in another AI tool.
Parse $ARGUMENTS to determine the target tool. Valid targets are: chatgpt, gemini, copilot, claude, general. If no argument is provided or unrecognized, use general.
Call mcp__plugin_keepgoing_session__continue_on with:
target: The parsed target from $ARGUMENTSinclude_commits: trueinclude_files: trueThe tool will return a formatted prompt. Present it to the user as a code block they can copy and paste into the target AI tool. Let them know it contains their project status, last session summary, recent decisions, and commit history.
npx claudepluginhub keepgoing-dev/claude-plugin --plugin keepgoingReference for writing and editing skills with predictable behavior, covering invocation models, description writing, and information hierarchy.