wildix-get-last-chats
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGet Last Chats
获取最新聊天记录
Returns the user's x-bees inbox — a list of chats sorted by last activity.
This skill fetches the user's chat list (inbox). It is not designed for resolving a specific chat by its ID or raw channel ID. For that, use the skill.
wildix-get-chat返回用户的x-bees收件箱——按最后活动时间排序的聊天列表。
此skill用于获取用户的聊天列表(收件箱)。 它并非设计用于通过ID或原始频道ID解析特定聊天。如需完成该操作,请使用 skill。
wildix-get-chatPeer Skills
关联Skill
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)。Flow
流程
- Get x-bees IdToken via skill — REQUIRED, do not skip
wildix-auth - Run the script
bash
ID_TOKEN="$ID_TOKEN" bash <BASE_DIR>/scripts/get-chats.sh [limit] [offset]limitoffsetPagination example: to get page 2 with 30 chats per page, use .
limit=30 offset=30- 通过skill获取x-bees IdToken —— 必填,请勿跳过
wildix-auth - 运行脚本
bash
ID_TOKEN="$ID_TOKEN" bash <BASE_DIR>/scripts/get-chats.sh [limit] [offset]limitoffset分页示例:若要获取每页30条的第2页,请使用。
limit=30 offset=30API
API接口
GET https://api.x-bees.com/v2/conversations/channels?limit={limit}&offset={offset}Authorization:
Bearer <IdToken>GET https://api.x-bees.com/v2/conversations/channels?limit={limit}&offset={offset}授权方式:
Bearer <IdToken>Display results
结果展示
The API returns channels already sorted by last message date (most recent first). Do not re-sort the list — preserve the original order from the API response.
Chats: {total}
1. {name} ({type}, {memberCount} members)
channelId: {channelId}API返回的频道已按最后消息日期排序(最近的在前)。请勿重新排序列表——请保留API响应中的原始顺序。
聊天记录:{total}
1. {name}({type},{memberCount}名成员)
channelId: {channelId}