vibearound
GitHub处理编码会话跨设备转移,允许用户通过IM渠道在手机上继续当前对话。当用户请求手脱或续接会话时触发,涉及获取会话ID、调用MCP工具准备转移及复制取回指令。
Trigger Scenarios
Install
npx skills add jazzenchen/VibeAround --skill vibearound -g -y
SKILL.md
Frontmatter
{
"name": "vibearound",
"description": "Hand over your current coding session so the user can continue the conversation on their phone or another device via any IM channel connected to VibeAround. Use when the user says \"\/vibearound handover\", \"hand over this session\", \"continue on my phone\", or similar session transfer requests."
}
VibeAround Session Handover
Hand over the current coding session via the VibeAround orchestrator. The user can then pick it up from any connected IM channel (the pickup is not tied to a specific channel).
When to Use
- User says
/vibearound handover - User asks to "hand over", "transfer", or "continue" the session on their phone or another device
Prerequisites
The VibeAround MCP server must be connected (server name: vibearound). If not available, tell the user to start the VibeAround desktop app.
Handover Steps
1. Get your session ID
Use the /va-session skill to resolve your current session ID.
Also read $VIBEAROUND_PROFILE_ID from the environment if present. VibeAround-launched sessions should have it, including direct; external user-started sessions may omit it.
2. Call va_mcp_prepare_handover
Tool: va_mcp_prepare_handover
Server: vibearound
Arguments:
session_id: "<session_id from step 1>" (pass if available)
cwd: "<current working directory>"
agent_kind: "claude"
profile_id: "<VIBEAROUND_PROFILE_ID if present>" (optional; omitted means direct)
If the tool says the workspace is not registered, ask the user for confirmation, then call va_mcp_register_workspace with the cwd, and retry.
3. Copy to clipboard and present the result
Copy the /pickup command to the user's clipboard, then show it. The user can paste it in any IM chat connected to VibeAround to resume the session there with the same agent.
Error Handling
- MCP server not available: Start the VibeAround desktop app.
- Workspace not registered: Offer to register it (needs user confirmation).
- Session ID not found: The server can auto-discover in most cases. If that fails, tell the user.
Version History
-
1654259
Current 2026-09-03 02:50
将 va_mcp_prepare_handover 和 va_mcp_register_workspace 工具名更新为带 va_mcp_ 前缀的版本
- e54feb7 2026-07-05 20:13


