← Back to Skills Marketplace
quanruxiaohong

泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等

by quanruxiaohong · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
139
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install eoffice-im
Description
泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊等
README (SKILL.md)

e-office 即时通讯(IM)Skill

当用户提到以下场景时使用此 skill:

  • 发送即时消息给用户或群组
  • 查询聊天记录
  • 管理群组成员
  • 获取用户在线状态
  • 任何涉及即时通讯的操作

连接方式

WebSocket 连接

WebSocket URL: ws://{EOFFICE_IM_BASE_URL}/

连接参数

连接时需要在 handshake 中传递:

参数 说明
token 访问令牌
connectType 连接类型:webmobileclient
loginUserId 登录用户 ID

连接示例(JavaScript)

import { io } from 'socket.io-client';

const socket = io('http://localhost:3000', {
  auth: {
    token: 'your-token-here'
  },
  query: {
    connectType: 'web',
    loginUserId: 'admin'
  }
});

socket.on('connect', () => {
  console.log('Connected to IM server');
});

socket.on('private message', (msg) => {
  console.log('Received message:', msg);
});

环境配置

变量 必填 说明 示例
EOFFICE_IM_BASE_URL IM 服务地址 http://localhost:3000
EOFFICE_IM_TOKEN 访问令牌 从 OA 登录获取

发送消息

发送私聊消息

socket.emit('send message', {
  type: 'user',
  message_id: Date.now(),
  message_content: '消息内容(AES加密)',
  text_message_content: '消息内容(原文)',
  message_type: 1,  // 1=text, 2=image, 3=file
  sender: 'user_id',
  chat_object_id: 'room_id',
  to: 'receiver_user_id',
  sender_name: '发送者姓名'
});

响应:服务器返回相同的消息对象(包含 send_time

发送群聊消息

socket.emit('send message', {
  type: 'personal_group',  // 或 'public_group'
  message_id: Date.now(),
  message_content: '消息内容(AES加密)',
  text_message_content: '消息内容(原文)',
  message_type: 1,
  sender: 'user_id',
  room_id: 'room_id',
  members: ['user1', 'user2'],
  group_name: '群名称',
  sender_name: '发送者姓名',
  at_list: [{user_id: 'xxx', user_name: 'xxx'}]  // @人员
});

响应:服务器推送到 group message 事件

消息类型

type 值 说明
user 私聊消息
personal_group 私人群聊
public_group 公共群
message_type 值 说明
1 文本消息
2 图片消息
3 文件消息

接收消息

监听私聊消息

socket.on('private message', (msg) => {
  console.log('私聊消息:', msg);
});

监听群聊消息

socket.on('group message', (msg) => {
  console.log('群聊消息:', msg);
});

消息操作

消息已读 - 私聊

socket.emit('user readed', {
  chat_id: 'chat_object_id',
  toUserId: 'sender_user_id'
});

接收已读通知

socket.on('message have read', (data) => {
  // { type: 'user', chat_id: 'xxx', read_time: timestamp, user_id: 'xxx' }
});

消息已读 - 群聊

socket.emit('group readed', {
  chat_id: 'room_id',
  toUserId: '群ID'
});

撤回消息

socket.emit('withdraw msg', {
  chat_id: 'room_id',
  message_id: 'message_id',
  type: 'user',  // 或 'group'
  toUserId: 'user_id',
  at_list: []
});

删除消息

socket.emit('delete msg', {
  chat_id: 'room_id',
  message_id: 'message_id'
});

群组管理

创建群组

socket.emit('create group', {
  room_id: 'room_id',
  members: ['user1', 'user2']  // 不包含创建者
});

添加群成员

socket.emit('user add group', {
  room_id: 'room_id',
  members: ['user3', 'user4']
});

接收通知

socket.on('user add group', (data) => {
  // { room_id: 'xxx', members: ['user3', 'user4'] }
});

删除群成员

socket.emit('group delete user', {
  room_id: 'room_id',
  members: ['user_id']
});

解散群组

socket.emit('delete group', {
  room_id: 'room_id',
  members: ['user1', 'user2']
});

在线状态

获取在线用户

socket.emit('user onlineUsers', {}, (res) => {
  console.log(res);
  // {
  //   onlineUsers: ['user1', 'user2'],
  //   webUsers: [...],
  //   mobileUsers: [...],
  //   clientUsers: [...]
  // }
});

监听在线状态变化

socket.on('online user change', (data) => {
  // {
  //   online: { webUsers: [...], mobileUsers: [...], clientUsers: [...] },
  //   offline: { webUsers: [...], mobileUsers: [...], clientUsers: [...] }
  // }
});

修改工作状态

socket.emit('change work status', {
  userId: 'user_id',
  workStatus: 1  // 0=离线, 1=在线, 2=忙碌等
});

离线消息

获取离线消息

socket.emit('get offline info');

接收响应

// 私聊离线消息
socket.on('user offline info', (messages, callback) => {
  console.log('离线私聊消息:', messages);
  callback('success');  // 确认已接收
});

// 群聊离线消息
socket.on('group offline info', (messages, callback) => {
  console.log('离线群聊消息:', messages);
  callback('success');
});

消息格式

PersonalMessage 结构

{
  message_id: string | number;    // 消息ID
  reply_message_id?: string;        // 回复消息ID
  message_content: string;          // 加密后的消息内容
  text_message_content: string;    // 原文消息内容
  message_type: number;           // 消息类型
  sender: string;                  // 发送者ID
  send_time: number;               // 发送时间
  chat_object_id: string;         // 私聊房间ID
  withdraw: number;               // 是否撤回
  delete_user_id?: string;        // 删除消息的用户ID
  type: string;                    // 'user'
  sendType?: string;               // 发送状态
  to: string;                      // 接收者ID
  sender_name?: string;            // 发送者姓名
  reply?: any;                     // 回复内容
}

GroupMessage 结构

{
  message_id: string | number;    // 消息ID
  reply_message_id?: string;      // 回复消息ID
  message_content: string;        // 加密后的消息内容
  text_message_content: string;   // 原文消息内容
  message_type: number;          // 消息类型
  sender: string;                 // 发送者ID
  send_time: number;             // 发送时间
  withdraw: number;              // 是否撤回
  type: string;                  // 'personal_group' | 'public_group'
  sendType?: string;
  room_id?: string;              // 群房间ID
  members?: string[];            // 群成员列表
  sender_name?: string;          // 发送者姓名
  group_name?: string;           // 群名称
  at_list?: Array\x3C{              // @人员列表
    user_id: string;
    user_name: string;
  }>;
}

连接管理

同步聊天列表

socket.emit('sync chat list');

页面通信(跨端同步)

socket.emit('page communication', {
  key: 'value'  // 任意数据
});

错误处理

监听错误事件:

socket.on('error', (error) => {
  console.error('Socket error:', error);
});

socket.on('connect_error', (error) => {
  console.error('Connection error:', error.message);
});

注意事项

  1. 消息加密:发送的消息内容需要使用 AES 加密(使用连接时提供的 crypto key)
  2. 离线消息:用户离线时,消息会存储在 Redis 中,用户上线后自动推送
  3. 多端同步:同一账号可以在 web、mobile、client 多端同时登录
  4. Token 有效期:注意处理 token 过期的情况

完整 API 文档

详见 references/im-api.md

Usage Guidance
Before installing or enabling this skill: - Verify the source: the homepage URL looks like a placeholder. Confirm the repository and publisher identity and review their code if available. - Fix the metadata mismatch: the registry entry should declare EOFFICE_IM_BASE_URL and EOFFICE_IM_TOKEN as required env vars so you know what you must provide. - Treat EOFFICE_IM_TOKEN as a high-impact secret: only provide a token with minimal scope (prefer a dedicated service account or scoped token rather than an admin user's token). Limit what that account can do (send-only, limited group management) where possible. - Consider operational controls: test in an isolated/dev environment first, require manual confirmation for actions that send messages on behalf of users, and rotate/revoke the token if you remove the skill. - If you need higher assurance, ask for a non-placeholder upstream repo, signed releases, or a maintainer contact and perform a code review of any implementation before installation. These steps will reduce the risk that an unknown skill with access to an OA token can send or manage messages unexpectedly.
Capability Analysis
Type: OpenClaw Skill Name: eoffice-im Version: 1.0.0 The eoffice-im skill bundle is a legitimate integration for the Weaver e-office Instant Messaging WebSocket API. It provides comprehensive documentation and instructions for an AI agent to perform standard IM tasks such as sending messages, managing groups, and checking user status. The skill requires sensitive environment variables (EOFFICE_IM_TOKEN), but this is consistent with its stated purpose of interacting with an enterprise API, and there is no evidence of data exfiltration, malicious execution, or prompt injection intended to subvert the agent's behavior.
Capability Assessment
Purpose & Capability
The skill's name/description and SKILL.md consistently describe an e-office IM WebSocket client (private/group messages, group management, online status). However the registry metadata earlier stated no required environment variables while the SKILL.md metadata (and README) clearly require EOFFICE_IM_BASE_URL and EOFFICE_IM_TOKEN; this manifest mismatch is an incoherence that should be fixed before trusting the package. The homepage URL appears to be a placeholder (github.com/yourname/...), which reduces confidence in provenance.
Instruction Scope
The runtime instructions stay within IM functionality: connect to a WebSocket, send/receive events, manage groups, query online/offline messages. They explicitly require an IM base URL and an OA token for handshake.auth; they do not instruct reading unrelated files or other environment variables. Examples include AES encryption usage but do not instruct the agent to obtain or exfiltrate unrelated secrets.
Install Mechanism
This is an instruction-only skill with no install spec and no code files that execute on install. That minimizes install-time risk because nothing is downloaded or written by an installer. The README suggests optional cloning/linking steps for manual install, which are normal.
Credentials
The SKILL.md requires two environment values (EOFFICE_IM_BASE_URL and the sensitive EOFFICE_IM_TOKEN). Those are proportionate to an IM integration, but EOFFICE_IM_TOKEN is an OA access token that can permit sending messages, managing groups, and other actions as the authenticated account — a high-impact secret. The registry metadata omitted these requirements, which is inconsistent and concerning.
Persistence & Privilege
always:false (good). The skill allows normal autonomous invocation (disable-model-invocation:false), which is expected. Combined with the required OA token, this means an agent with this skill could autonomously send messages or modify groups using that token; that risk is normal for an IM skill but should be explicitly acknowledged by the operator.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install eoffice-im
  3. After installation, invoke the skill by name or use /eoffice-im
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of eoffice-im Skill providing WebSocket-based instant messaging capabilities for 泛微 e-office. - Supports private and group chat via WebSocket API, including sending and receiving messages. - Enables message read, delete, and withdraw operations. - Provides group management: create, add/remove members, and dissolve groups. - Supports online status queries, offline message retrieval, and multi-endpoint synchronization. - Requires configuration of `EOFFICE_IM_BASE_URL` and `EOFFICE_IM_TOKEN` environment variables.
Metadata
Slug eoffice-im
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等?

泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊等. It is an AI Agent Skill for Claude Code / OpenClaw, with 139 downloads so far.

How do I install 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等?

Run "/install eoffice-im" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等 free?

Yes, 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等 support?

泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 泛微 e-office 即时通讯(IM)WebSocket API - 私聊、群聊、AI助手等?

It is built and maintained by quanruxiaohong (@quanruxiaohong); the current version is v1.0.0.

💬 Comments