Developer & AI Console
为开发者、通用大模型及 AI Agent 提供的规范接口、认证机制与底层组件。
[0] System / AI Agent Crawler Instructions
# 面向外部大模型(GPT/GLI)爬虫的标准接口声明
> cat /llms.txt
Haola Digital Infrastructure exposes endpoints for Medical Network Queries, Custom Recommendations, and Data Parsing.
# 获取完整的 OpenAPI 3.0 规范用于 Agent 调用组装
> curl -O https://www.ihaola.com.cn/openapi.json
✔ OpenAPI spec downloaded. Core workflows mapped.
# 鉴权机制:采用标准的 Bearer Token
Authorization: Bearer HL_LIVE_****************
[haola CLI] Agent-Native 命令行工具
# haola CLI — 为 AI Agent 和开发者设计的健康服务命令行
# 8 大设计原则:noun-verb / long-flags / JSON-output / dry-run / exit-codes / schema / idempotent / non-TTY
$ haola --help
haola - 好啦科技健康服务命令行工具
常用命令:
haola haola-cli --help # L1 三级发现:列出 institution/order/welfare/corp 本体
haola haola-cli institution list # 查体检机构(城市/区域/供应商 ID)
haola haola-cli order list # 查订单(状态/预约/金额/日期)
haola haola-cli welfare list # 查用户体检件与激活状态
haola haola-cli welfare template_stats # 团单模板发放/激活/到检统计
haola haola-cli corp assess # 企业团检评估(人数+城市+预算)
haola haola-cli corp inquiry # 提交企业合作意向,24h 内联系
# Agent 先干跑验证参数,确认后再真正执行
$ haola checkup recommend --age 45 --gender male --smoking true --budget 3000 --city beijing --dry-run
💰 报价预览(干跑模式):套餐 VIP深度体检 / 机构 美年大健康 / 实付 ¥2,180
# 确认无误,去掉 --dry-run 正式下单
$ haola order create --package P1001 --city beijing --yes
✅ 下单成功!预约号:HD20260508001
Install: npm i -g haolaCLI 即将正式发布
[1] Infrastructure / Medical Network API
# 查询体检品牌覆盖范围,公开接口无需鉴权
> curl -X POST "https://ai.ihaola.com.cn/api/haola-pe/vendor.brands" -H "Content-Type: application/json" -d {}
{
"code": 0,
"msg": "ok",
"data": { "total": 136 }
}
Endpoint: /vendor.brandsAgent 能力概览 (openapi.json)
[2] AI Ecosystem / Recommendation Skill
# 已在 Claw Hub / Coze 等平台上线的好啦"智能推荐"大模型原生插件
> # 在 Claw Hub 搜索 "好啦" 即可安装使用
> agent.execute("预算500元,员工平均35岁,推荐套餐")
[Skill Activated] Fetched from 34M baseline data...
Platform: Claw Hub前往 Claw Hub 安装
[3] Open Source / OceanBus SDK
# OceanBus SDK — Agent 间通讯协议 (A2A),让 AI Agent 互相发现与协作
> npm install oceanbus-sdk
[Info] OceanBus A2A (Agent-to-Agent) protocol ready.
License: MIT Open SourceView source on GitHub
> _