← Back to Skills Marketplace
bee-inquiry-read
by
mouxiaming
· GitHub ↗
· v1.0.2
· MIT-0
24
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install bee-inquiry-read
Description
Fetch and analyze inquiry data from Bee platform with pagination, customizable fields, and multi-language support using authenticated API access.
README (SKILL.md)
inquiry-read
基于“小蜜蜂(Bee)建站”的询盘数据进行统计分析,并生成结构化分析报告。
支持:
- 分页读取询盘
- 自定义返回字段
- 分语言站点读取
- AI Agent 调用
- OpenClaw Skill 集成
Version
1.0.2
Features
- 从小蜜蜂(Bee)获取询盘数据
- 支持分页查询
- 支持自定义返回字段
- 支持 language 参数联动
- 支持 Skill Dependencies
Usage
Example Input
{
"api_key": "eyJhbGciOiJIU...",
"language": "en",
"pagination": {
"current_page":1,
"page_size":10
},
"fields": [
"inquiry_id",
"title",
"content",
"contact",
"create_time"
]
}
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | API_KEY 是用于 API 身份认证的安全凭证,用于标识调用方身份并控制接口访问权限。请前往 https://open.tradew.com 开发者平台获取后再使用。 |
| language | string | No | 语言参数。必须从 languages-get 中选择 |
| current_page | number | No | 当前页码,默认 1 |
| page_size | number | No | 每页数量,范围 10-50 |
| fields | array[string] | No | 返回字段列表 |
Supported Fields
支持以下字段:
inquiry_id
language
is_read
title
content
country_code
ip
contact
source
target_products
create_time
Dependency
本技能依赖:
{
"language": {
"skill": "bee-languages-get",
"field": "list[].language",
"mode": "select"
}
}
说明:
language必须由bee-languages-get返回结果中选择- 不允许 AI 自动推断
- 不允许系统默认选择
Response Example
Success
{
"status": true,
"msg": "success",
"pagination": {
"current_page": 1,
"page_size": 10,
"total": 120
},
"list": [
{
"inquiry_id": "10001",
"title": "Need quotation",
"content": "Please send price",
"contact": "Tom",
"create_time": "2026-05-07 10:00:00"
}
]
}
Validation Rules
page_size
范围:
10 - 50
超出范围时返回:
{
"status": false,
"msg": "page_size 必须在 10 到 50 之间"
}
API Endpoint
POST https://platform.tradew.com/openapis/inquiry/read
Notes
- Skill 使用
Bearer Token鉴权 - 所有请求使用
application/json - 默认返回常用询盘字段
fields支持自定义字段返回
Changelog
1.0.2
- 增加 fields 支持
- 增加分页参数校验
- 增加 dependency 配置
- 优化返回结构
License
MIT
Usage Guidance
Before installing or using this skill, confirm that you trust the Bee/Tradew API integration, provide only a token with appropriate read scope, explicitly choose the intended language, and limit returned fields when handling customer or lead data.
Capability Analysis
Type: OpenClaw Skill
Name: bee-inquiry-read
Version: 1.0.2
The skill is a standard API wrapper designed to fetch inquiry data from the 'Bee' website builder platform (tradew.com). The code in index.js correctly implements pagination, field selection, and authentication via a Bearer token, communicating only with the documented endpoint (https://platform.tradew.com/openapis/inquiry/read). No evidence of data exfiltration, malicious execution, or harmful prompt injection was found.
Capability Tags
Capability Assessment
Purpose & Capability
The implementation matches the stated purpose by posting to the disclosed inquiry/read endpoint and returning paginated inquiry records, but the default fields include potentially sensitive inquiry content, contact, and IP data.
Instruction Scope
Most limits are documented and proportionate, including page_size 10-50. One inconsistency is that the documentation says language should not be defaulted, while the code defaults missing language to "en".
Install Mechanism
No install script, package install, shell command, or external helper is specified; the included JavaScript is small and the static scan reported no suspicious patterns.
Credentials
The skill requires a user-supplied API key/Bearer token for the Bee/Tradew API, which is purpose-aligned, although registry credential metadata says no primary credential while the skill input clearly requires api_key.
Persistence & Privilege
The artifacts show no local file writes, persistence, background execution, mutation endpoint, or credential storage; the API privilege shown is read-oriented inquiry retrieval.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install bee-inquiry-read - After installation, invoke the skill by name or use
/bee-inquiry-read - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Added support for customizable fields in responses.
- Introduced pagination parameter validation.
- Configured skill dependency for language parameter selection.
- Improved and optimized the response structure.
Metadata
Frequently Asked Questions
What is bee-inquiry-read?
Fetch and analyze inquiry data from Bee platform with pagination, customizable fields, and multi-language support using authenticated API access. It is an AI Agent Skill for Claude Code / OpenClaw, with 24 downloads so far.
How do I install bee-inquiry-read?
Run "/install bee-inquiry-read" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is bee-inquiry-read free?
Yes, bee-inquiry-read is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does bee-inquiry-read support?
bee-inquiry-read is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created bee-inquiry-read?
It is built and maintained by mouxiaming (@mouxiaming); the current version is v1.0.2.
More Skills