Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

use-hln-apiUSE HLN API 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

2,895

周安装

116

GitHub Stars

1

下载量

937
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:use-hln-api(USE HLN API 文档)
来源仓库:https://github.com/hlndev/use-hln-api
安装命令:
openclaw skills install use-hln-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install use-hln-api

简介

use-hln-api 根据 Hyperliquid Names API 提供名称解析和反向查找服务。

  • 适合在 OpenClaw 中需要处理 .hl 域名、HLN 配置文件或地址记录时使用。
  • 通过 clawhub 安装,运行 openclaw skills install use-hln-api 即可使用。
  • 使用前请确认权限范围和维护状态,注意可能涉及 API 调用和响应解析。
  • 建议结合原始 README 核验具体用法,确保接口版本和鉴权方式正确。

SKILL.md

name
use-hln-api
description
Consult & operate against the Hyperliquid Names API. Use when your agent needs to resolve .hl names, reverse-resolve addresses, fetch HLN profiles or records, inspect owner or list queries, diagnose HLN API failures, prepare a mint-pass request, or guide HyperEVM dApp integration with HL Names.
homepage
https://github.com/HLnames/use_hln_api_skill
metadata
{"openclaw":{"tags":["hyperliquid","names","hyperevm","hlnames",".hl","api"],"readOnlyDefault":true}}

Use HLN API

Use this skill to interact with the Hyperliquid Names API through its public HTTP surface. Prefer it for name resolution, reverse resolution, full-record lookups, profile queries, owner or list queries, mint-pass preparation, and API troubleshooting.

Prefer concise, task-shaped answers. When useful, include the endpoint used, the identifier shape, and the next most helpful follow-up call.

Operating Contract

Define the request before calling the API:

  • Determine the environment: production, testnet, or a user-provided local dev URL.
  • Determine whether the task is read-only or sensitive.
  • Determine the identifier type: .hl domain, label, address, nameHash, or tokenId.
  • Determine whether the user supplied an API key.

Use these defaults unless the task says otherwise:

  • base_url: Default read-only requests to https://api.hlnames.xyz/. Use https://api.testnet.hlnames.xyz/ when the user asks for testnet. Use a local URL only when the user provides one.
  • api_key: Send as X-API-Key on API requests. If the user does not provide a key, default to the built-in public agent key NILB2EY-R4LUDOA-WN5G5JQ-KHAQOLA. If the user provides a key, prefer that override. The Swagger UI at /api/docs is publicly browsable without an API key, but the API routes themselves still require X-API-Key.
  • identifier: Use the correct identifier shape for the endpoint.

Stay inside these non-goals unless the user explicitly asks and has the right access:

  • Do not broadcast blockchain transactions.
  • Do not invent undocumented endpoints.
  • Do not simulate response data, call the live API

Workflow

  1. Determine the data source you actually need.

Use the narrowest public endpoint that answers the request.

  1. Normalize the identifier before making the request.

Domain: use name.hl. Label: use name with no .hl suffix. Address: use a valid EVM address; checksum or lowercase is acceptable. NameHash: use 0x plus 64 hex chars. TokenId: use a numeric string.

  1. Select the narrowest endpoint that answers the question.

Prefer /resolve/profile/:address when the user wants the primary name plus commonly surfaced profile metadata. Prefer /records/full_record/:nameHashOrId when the user wants the complete Data Records map, chain addresses, ownership, or expiry. Prefer /utils/namehash/:domain only when the user needs the hash itself.

  1. Call the endpoint with the correct method and headers.
  2. Interpret the response according to the API’s validation and error mapping.

For records/full_record, always distinguish data.records from data.chainAddresses: data.records is the user-controlled text metadata map, while data.chainAddresses is the structured address map by coin type. Read references/validation-and-errors.md when inputs are malformed or results are ambiguous.

  1. Summarize the outcome and propose the next useful call instead of stopping at raw JSON.

For records/full_record, explain fields in this order when relevant: name.*, then data.records, then data.chainAddresses.

Endpoint Selection

Use this quick routing map first:

  • Need a nameHash from a domain: GET /utils/namehash/:domain
  • Need registration status from a nameHash or tokenId: GET /utils/registered/:nameHashOrId
  • Need a resolved address from a domain: GET /resolve/address/:domain
  • Need a primary name from an address: GET /resolve/primary_name/:address
  • Need a primary name plus surfaced profile metadata from an address: GET /resolve/profile/:address
  • Need historical resolved addresses for a domain: GET /resolve/past_resolved/:domain or range variant
  • Need expiry for a name: GET /metadata/expiry/:nameHashOrId
  • Need the full HLN record payload: GET /records/full_record/:nameHashOrId
  • Need the rendered SVG image: GET /records/image/:tokenId
  • Need supported coin types: GET /records/coin_types
  • Need owner or list queries: GET /utils/all_names, GET|POST /utils/all_primary_names, or GET /utils/names_owner/:address
  • Need a signed mint pass: POST /sign_mintpass/:label when the developer is ready to continue promptly into the mint transaction

Read references/endpoints.md for the full endpoint catalog, request shapes, and response notes. Read references/integration.md when the user is integrating HL Names into a HyperEVM dApp or wallet flow.

Guardrails

Apply these guardrails on every task:

  • Default read-only requests to production unless the user asks for testnet or a local environment.
  • Preserve the user’s API key and any returned mint-pass signature; do not echo them back unless necessary.
  • Treat POST /sign_mintpass/:label as a readiness check in a time-sensitive mint workflow. Request it when the developer is prepared to submit the mint transaction promptly, because the returned payload expires quickly.
  • Distinguish between “not found” and “bad input”; the API maps them differently.

Examples

Happy path:

  • User asks: “What HLN profile is attached to 0x...?”
  • Default to production unless the user asked for another environment.
  • Call GET /resolve/profile/:address.
  • Return the primary name and any surfaced profile metadata.
  • If the user wants the complete Data Records map or chain addresses, suggest GET /records/full_record/:nameHashOrId.

Full record interpretation:

  • User asks: “Is this full_record payload a fixed profile schema?”
  • Explain that data.records is a user-controlled metadata map and may include suggested keys like Avatar, Twitter, Discord, Bio, REDIRECT, or custom app-specific keys.
  • Contrast it with data.chainAddresses, which is the separate structured map of blockchain addresses by coin type.
  • If summarizing the payload, cover name.* first, then data.records, then data.chainAddresses.

Failure path:

  • User asks: “Resolve jeff.eth on HLN.”
  • Detect that the input is not an .hl domain before calling the API.
  • Explain that HLN endpoints validate .hl names and suggest the corrected target if the user intended jeff.hl.
  • If the user still wants a request attempted, expect a 422 Unprocessable Content.

References

Load only what you need:

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.68%
按下载量换算747

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills