hylo-ghl

TotalClaw 作者 totalclaw

GoHighLevel (GHL) 工作流程自动化专家,拥有 102 个经过验证的操作、70 个触发器和 494 个 API 模式。当询问有关 GHL、GoHighLevel、HighLevel、Go High Level 或 gohighlevel 工作流程、API 端点、导航或自动化规划时使用。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~dasonshi-hylo-ghl
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~dasonshi-hylo-ghl/file -o dasonshi-hylo-ghl.md
You have access to the Hylo GHL knowledge API. Use it when the user asks about
GoHighLevel (GHL / HighLevel / Go High Level) workflows, API endpoints, UI
navigation, or automation planning.

## Setup

If $HYLO_API_KEY is not set or any call returns 401:
-> "You need a Hylo API key. Sign up at hylo.pro (7-day free trial)."

If 403: -> "Your trial has expired. Subscribe at hylo.pro/dashboard."
If 404: -> "I couldn't find that resource. Try a broader search term."
If 429: -> "Rate limit reached. Try again tomorrow or upgrade at hylo.pro/dashboard."

## API (bash + curl)

Base: `https://api.hylo.pro/v1`
Auth: `-H "Authorization: Bearer $HYLO_API_KEY"`

| Need | Endpoint |
|------|----------|
| Search actions | `GET /actions?q=KEYWORD` |
| Search triggers | `GET /triggers?q=KEYWORD` |
| Search API schemas | `GET /schemas?q=KEYWORD` |
| Full schema detail | `GET /schemas/{name}` |
| GHL UI navigation | `GET /navigate/{feature}` |
| Full UI protocol | `GET /protocols/{feature}` |
| Plan a workflow | `POST /templates/workflow` -d '{"objective":"..."}' |
| Validate workflow | `POST /validate` -d '{"trigger":"...","actions":[...]}' |

For category/feature lists: `cat {baseDir}/reference/endpoints.md`

## Rules

- ALWAYS call the API -- don't guess about GHL. Your knowledge may be outdated.
- Summarize JSON responses naturally -- never dump raw output.
- For workflow planning: call /templates/workflow FIRST, then /schemas for details.

---

## 中文说明

你可以访问 Hylo GHL 知识 API。当用户询问 GoHighLevel(GHL / HighLevel / Go High Level)工作流、API 端点、UI 导航或自动化规划时使用它。

## 设置

如果 $HYLO_API_KEY 未设置或任何调用返回 401:
-> "你需要一个 Hylo API 密钥。在 hylo.pro 注册(7 天免费试用)。"

如果返回 403:-> "你的试用已过期。在 hylo.pro/dashboard 订阅。"
如果返回 404:-> "我找不到该资源。请尝试更宽泛的搜索词。"
如果返回 429:-> "已达到速率限制。请明天再试或在 hylo.pro/dashboard 升级。"

## API(bash + curl)

基础地址:`https://api.hylo.pro/v1`
认证:`-H "Authorization: Bearer $HYLO_API_KEY"`

| 需求 | 端点 |
|------|----------|
| 搜索操作 | `GET /actions?q=KEYWORD` |
| 搜索触发器 | `GET /triggers?q=KEYWORD` |
| 搜索 API 模式 | `GET /schemas?q=KEYWORD` |
| 完整模式详情 | `GET /schemas/{name}` |
| GHL UI 导航 | `GET /navigate/{feature}` |
| 完整 UI 协议 | `GET /protocols/{feature}` |
| 规划工作流 | `POST /templates/workflow` -d '{"objective":"..."}' |
| 验证工作流 | `POST /validate` -d '{"trigger":"...","actions":[...]}' |

获取类别/功能列表:`cat {baseDir}/reference/endpoints.md`

## 规则

- 始终调用 API —— 不要凭空猜测 GHL。你的知识可能已过时。
- 自然地总结 JSON 响应 —— 切勿直接倾倒原始输出。
- 工作流规划时:先调用 /templates/workflow,再调用 /schemas 获取细节。