wildix-get-chat
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGet Chat by ID
通过ID获取聊天信息
Fetches channel info from the Wildix API by raw ID. The API resolves the channel type automatically — no need to know or prefix.
group:direct:Do not use for this — that skill returns the inbox list and cannot look up by ID.
wildix-get-last-chats通过原始ID从Wildix API获取频道信息。该API会自动解析频道类型——无需了解或前缀。
group:direct:请勿使用来完成此操作——该技能仅返回收件箱列表,无法通过ID进行查询。
wildix-get-last-chatsPeer Skills
关联技能
Before running, check if is installed:
wildix-authbash
Glob ~/.claude/skills/wildix-auth/SKILL.md运行前,请检查是否已安装:
wildix-authbash
Glob ~/.claude/skills/wildix-auth/SKILL.mdIf missing: npx skills add Wildix/agent-skills --s wildix-auth -y
If missing: npx skills add Wildix/agent-skills --s wildix-auth -y
See [`peers.yaml`](peers.yaml) for full peer manifest.
完整的关联技能清单请查看[`peers.yaml`](peers.yaml)。Input formats
输入格式
| Input | Example |
|---|---|
| x-bees inbox URL | |
| Full channelId | |
| Bare raw ID | |
The script strips URL prefixes and type prefixes automatically.
| 输入类型 | 示例 |
|---|---|
| x-bees收件箱URL | |
| 完整channelId | |
| 原始ID | |
脚本会自动去除URL前缀和类型前缀。
Flow
流程
- Get IdToken via skill (if not already available)
wildix-auth - Run the script
bash
ID_TOKEN="$ID_TOKEN" bash <BASE_DIR>/scripts/get-chat-by-id.sh "<input>"- 获取IdToken:通过技能获取(如果尚未获取)
wildix-auth - 运行脚本
bash
ID_TOKEN="$ID_TOKEN" bash <BASE_DIR>/scripts/get-chat-by-id.sh "<input>"API
API接口
GET https://api.x-bees.com/v2/conversations/channels/{rawId}Authorization:
Bearer <IdToken>Returns exit code 1 if the channel is not found.
GET https://api.x-bees.com/v2/conversations/channels/{rawId}Authorization:
Bearer <IdToken>如果未找到频道,返回退出码1。