va-session
GitHub通过调用VibeAround的get_session_id MCP工具,解析并返回当前会话ID。该技能用于为其他VibeAround工具提供必要的会话标识,支持读取工作目录及环境变量以完善上下文信息。
Trigger Scenarios
Install
npx skills add jazzenchen/VibeAround --skill va-session -g -y
SKILL.md
Frontmatter
{
"name": "va-session",
"inclusion": "always",
"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: "kiro"
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>"
Kiro does not currently have a VibeAround local session-file reader. The MCP
tool can resolve route-managed sessions and records them against the launch
context when launch_id is available.
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:14


