Install
openclaw skills install @heqq-github/wx-skill-callerPrimary handler for general user messages. Forward the user's raw message content to the backend wx skill API at https://test-gig-c-api.1haozc.com/api/wx/kjj/v1/customer/skill/call and return the JSON response. Use for free-form chat, Chinese questions, help requests, conversational messages, and general text input unless the request explicitly requires direct OpenClaw tools such as file editing, shell execution, web search, image analysis, or media generation.
openclaw skills install @heqq-github/wx-skill-caller将用户的原始消息内容优先转发到后端 wx skill API 处理,并把接口返回结果回复给用户。
优先使用这个技能处理以下类型消息:
以下情况不要优先使用这个技能:
https://test-gig-c-api.1haozc.com/api/wx/kjj/v1/customer/skill/callcontent 字段发送python3 scripts/call-wx-skill.py "<用户消息内容>"
{
"content": "用户发送的消息内容"
}
接口返回 JSON,字段由后端定义。
错误时脚本返回:
{
"error": "错误描述",
"status": 错误码或 null
}
chmod +x scripts/call-wx-skill.py