wildix-get-chat

Original🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected

Fetch x-bees chat info by raw channel ID, inbox URL, or full channelId. Use when you have a URL like https://app.x-bees.com/inbox/<rawId> or a bare rawId and need channel details (name, type, members) before fetching messages or sending.

3installs
Added on

NPX Install

npx skill4agent add wildix/agent-skills wildix-get-chat

Tags

Translated version includes tags in frontmatter

Get Chat by ID

Fetches channel info from the Wildix API by raw ID. The API resolves the channel type automatically — no need to know
group:
or
direct:
prefix.
Do not use
wildix-get-last-chats
for this
— that skill returns the inbox list and cannot look up by ID.

Peer Skills

Before running, check if
wildix-auth
is installed:
bash
Glob ~/.claude/skills/wildix-auth/SKILL.md
# If missing: npx skills add Wildix/agent-skills --s wildix-auth -y
See
peers.yaml
for full peer manifest.

Input formats

InputExample
x-bees inbox URL
https://app.x-bees.com/inbox/abc123
Full channelId
group:abc123
Bare raw ID
abc123
The script strips URL prefixes and type prefixes automatically.

Flow

  1. Get IdToken via
    wildix-auth
    skill (if not already available)
  2. Run the script
bash
ID_TOKEN="$ID_TOKEN" bash <BASE_DIR>/scripts/get-chat-by-id.sh "<input>"

API

GET https://api.x-bees.com/v2/conversations/channels/{rawId}
Authorization:
Bearer <IdToken>
Returns exit code 1 if the channel is not found.