mysteelmeeting

v1.0.0

查询我的钢铁网会展频道(huizhan.mysteel.com/zhuanti)行业会议信息,支持行业筛选(钢材/铁矿石/废钢/煤焦/铁合金/不锈钢/有色金属/建筑材料/新能源/农产品)、地区筛选(东北/华北/华东/华南/华中/西北/西南/港澳台/全球)、省份筛选(吉林/辽宁/黑龙江/北京/上海/广东/浙江/江苏...

0· 66·0 current·0 all-time
bymysteel@wyb92

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wyb92/mysteelmeeting.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "mysteelmeeting" (wyb92/mysteelmeeting) from ClawHub.
Skill page: https://clawhub.ai/wyb92/mysteelmeeting
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install mysteelmeeting

ClawHub CLI

Package manager switcher

npx clawhub@latest install mysteelmeeting
Security Scan
Capability signals
CryptoCan make purchases
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description describe querying Mysteel conference listings and the package contains a Python script and API reference that call the same huizhan.mysteel.com endpoints. Required files (caches, industry/area lists) and the query logic are appropriate for the stated purpose.
Instruction Scope
SKILL.md and the script instruct only to fetch industry/area lists and query activities on the huizhan API, perform local caching under scripts/.cache/, and print results. There are no instructions to read unrelated local files, access environment secrets, or transmit data to third-party endpoints beyond huizhan.mysteel.com.
Install Mechanism
No install spec is present (instruction-only + included script), so nothing external is downloaded or installed. The included Python script is self-contained and uses the standard library (urllib) — no external packages or remote install URLs are used.
Credentials
The skill declares no required environment variables, credentials, or config paths. The code does not read environment variables or request unrelated credentials; it only writes small cache files under scripts/.cache/.
Persistence & Privilege
always is false and the skill does not attempt to persist beyond its own cache files. It does not modify other skills or system settings. Autonomous invocation is allowed (platform default) but not combined with elevated privileges or secret access.
Assessment
This skill is coherent and appears to do what it advertises: query huizhan.mysteel.com for conference data and cache results in scripts/.cache/. If you will install it, consider: 1) review the included scripts yourself (they are short and use only the Python standard library); 2) be aware the skill makes outbound HTTPS requests to huizhan.mysteel.com (no other domains); and 3) if you run in a restricted environment, ensure the agent is permitted to make network requests and that writing small cache files to scripts/.cache/ is acceptable. If you need stricter guarantees, run the script in an isolated environment or inspect/modify the cache behavior before use.

Like a lobster shell, security has layers — review code before you run it.

latestvk973gct19wd3ajgw3ar2evxra585d9zd
66downloads
0stars
1versions
Updated 5d ago
v1.0.0
MIT-0

我的钢铁网会议查询技能

功能与 huizhan.mysteel.com/zhuanti 页面完全一致,支持动态获取行业/地区/省份数据。

核心特性

🎯 智能名称匹配

  • 支持直接输入行业名称地区名称省份名称进行查询
  • 系统自动从API获取最新数据并进行ID匹配
  • 支持模糊匹配(如输入"东"可匹配"东北地区")

🔄 动态数据加载

  • 行业、地区、省份数据从API实时获取
  • 内置24小时缓存,减少重复请求
  • 可通过 --clear-cache 强制刷新数据

使用方法

基本查询

# 按行业名称查询(自动匹配ID)
python scripts/query_mysteel.py --industry "钢材"

# 按地区名称查询
python scripts/query_mysteel.py --area "华东"

# 按省份名称查询(自动识别省份并关联地区)
python scripts/query_mysteel.py --area "吉林"

# 组合筛选
python scripts/query_mysteel.py --industry "钢材" --area "华东" --status "0"

查看分类数据

# 查看所有行业
python scripts/query_mysteel.py --list-industries

# 查看所有地区和省份
python scripts/query_mysteel.py --list-areas

# 指定行业后查看地区(部分地区可能不属于某些行业)
python scripts/query_mysteel.py --list-areas --industry-id "10"

高级筛选

# 报名中的会议
python scripts/query_mysteel.py --status "0"

# 免费会议
python scripts/query_mysteel.py --charge-type "0"

# 按关键词搜索
python scripts/query_mysteel.py --keyword "钢铁"

# 分页查询
python scripts/query_mysteel.py --page-size 20 --page-num 2

缓存管理

# 清除缓存(强制刷新数据)
python scripts/query_mysteel.py --clear-cache

参数说明

参数说明示例值
--industry行业名称(自动转ID)"钢材"、"铁矿石"
--area地区/省份名称(自动转ID)"华东"、"吉林"、"北京"
--status会议状态"0"=报名中, "1"=进行中, "2"=已结束
--charge-type收费类型"0"=免费, "1"=收费
--keyword关键词搜索任意搜索词
--page-size每页数量默认10
--page-num页码默认1

工作流程

当用户输入省份名称时(如"吉林")

  1. 调用 load_areas() 从API获取最新地区/省份数据
  2. 在返回数据中模糊匹配"吉林"
  3. 找到吉林省后,自动获取:
    • areaId: 1(东北地区)
    • provinceId: 232(吉林省)
  4. 调用会议查询API,同时传入 areaIdprovinceId
  5. 如果API没有该省份,使用 keyword 参数作为兜底搜索

当用户输入行业名称时(如"钢材")

  1. 调用 load_industries() 从API获取最新行业数据
  2. 模糊匹配"钢材"
  3. 找到后获取 industryBreedId
  4. 调用会议查询API

常见用例

# 查询吉林的钢材会议
python scripts/query_mysteel.py --industry "钢材" --area "吉林"

# 查询华东地区报名中的新能源会议
python scripts/query_mysteel.py --industry "新能源" --area "华东" --status "0"

# 查询所有免费会议
python scripts/query_mysteel.py --charge-type "0"

# 查询辽宁的煤炭会议
python scripts/query_mysteel.py --industry "煤焦" --area "辽宁"

数据来源

  • 行业数据: https://huizhan.mysteel.com/event/activity/queryIndustry
  • 地区数据: https://huizhan.mysteel.com/event/activity/queryArea
  • 会议查询: https://huizhan.mysteel.com/event/activity/queryActivity

缓存机制

  • 缓存目录: scripts/.cache/
  • 缓存文件: industries_cache.json, areas_cache.json
  • 有效期: 24小时
  • 自动清理过期缓存

Comments

Loading comments...