wildix-get-last-chats
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Use when asked to list chats, show the inbox, browse recent conversations, or find a chat by name in x-bees, collaboration 7, or x-hoppers. Returns the user's chat list sorted by last activity. NOT for resolving a chat by its ID — use wildix-get-chat for that.
9installs
Sourcewildix/agent-skills
Added on
NPX Install
npx skill4agent add wildix/agent-skills wildix-get-last-chatsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Get 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-chatPeer Skills
Before running, check if is installed:
wildix-authbash
Glob ~/.claude/skills/wildix-auth/SKILL.md
# If missing: npx skills add Wildix/agent-skills --s wildix-auth -ySee for full peer manifest.
peers.yamlFlow
- 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=30API
GET https://api.x-bees.com/v2/conversations/channels?limit={limit}&offset={offset}Authorization:
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}