Agent Skills
› jazzenchen/VibeAround
› va-session
va-session
GitHub通过调用 MCP 工具获取 VibeAround 当前会话 ID,供其他工具使用。需传入工作目录及环境变量中的可选参数以解析会话信息。
Trigger Scenarios
用户需要获取当前 VibeAround 会话 ID
其他 VibeAround 工具依赖当前会话上下文
Install
npx skills add jazzenchen/VibeAround --skill va-session -g -y
SKILL.md
Frontmatter
{
"name": "va-session",
"alwaysApply": false,
"description": "Resolve your current session ID for use with other VibeAround tools"
}
VibeAround Session ID
How to Resolve
Call the get_session_id MCP tool. Include only optional arguments whose
values are present:
Read these values if available:
- Current working directory
$VIBEAROUND_LAUNCH_ID$VIBEAROUND_PROFILE_ID$VIBEAROUND_CHANNEL_KIND$VIBEAROUND_CHAT_ID
Tool: get_session_id
Server: vibearound
Arguments:
agent_kind: "cursor"
cwd: "<current working directory>"
launch_id: "<value of $VIBEAROUND_LAUNCH_ID if present>"
profile_id: "<value of $VIBEAROUND_PROFILE_ID if present>"
channel_kind: "<value of $VIBEAROUND_CHANNEL_KIND if present>"
chat_id: "<value of $VIBEAROUND_CHAT_ID if present>"
Return the session ID string from the MCP tool. If the tool cannot resolve one, return nothing — callers handle the missing case gracefully.
Version History
- e54feb7 Current 2026-07-05 20:13


