(config, cache, daemon socket) and from WeChat's data directory (
~/Library/Containers/com.tencent.xinWeChat/
on macOS). Both paths are outside Claude Code's default sandbox. Every
wx
command in this skill needs to run with
dangerouslyDisableSandbox: true
from the start — don't waste a sandbox attempt first. The user can use
/sandbox
to view/edit restrictions.
User Input Tools
When this skill prompts the user, follow this tool-selection rule (priority order):
Prefer built-in user-input tools
exposed by the current agent runtime — e.g.,
AskUserQuestion
,
request_user_input
,
clarify
,
ask_user
, or any equivalent.
Fallback
if no such tool exists, emit a numbered plain-text message and ask the user to reply with the chosen number/answer for each question.
Batching
if the tool supports multiple questions per call, combine all applicable questions into a single call; if only single-question, ask them one at a time in priority order.
Concrete
AskUserQuestion
references below are examples — substitute the local equivalent in other runtimes.
Prerequisites
Show more