← 返回 Skills 市场
domainrankhq

DomainRank Submit

作者 domainrankhq · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
57
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install domainrank-submit
功能描述
提交网站到 DomainRank.app 导航站。使用场景:(1) 用户想要提交网站到 AI 导航站,(2) 用户说"提交到 domainrank"、"submit to domainrank"、"提交网站",(3) 用户需要批量提交多个网站到导航站。触发词:domainrank、提交网站、submit site...
使用说明 (SKILL.md)

DomainRank 导航站提交

通过 API 将网站提交到 DomainRank.app AI 导航站。

API 端点

POST https://domainrank.app/api/submit-item

认证

使用 Bearer Token 认证,API Key 从 DomainRank 设置页面获取。

Authorization: Bearer \x3CYOUR_DOMAINRANK_API_KEY>

\x3CYOUR_DOMAINRANK_API_KEY> 替换为你自己的 API Key。建议通过环境变量传入,不要硬编码到代码中。

请求参数

参数 类型 必填 说明
name string 网站名称
link string 网站 URL
pricePlan string 定价方案:basic(默认)、pro、ultra

定价方案与积分消耗

方案 积分 功能
basic 100 基础收录
pro 200 收录 + 社交媒体推广
ultra 2000 收录 + 社交媒体 + AI 目录分发

提交示例

curl -X POST https://domainrank.app/api/submit-item \
  -H "Authorization: Bearer \x3CYOUR_DOMAINRANK_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My Website",
    "link": "https://example.com",
    "pricePlan": "basic"
  }'

响应格式

成功响应 (200):

{
  "success": true,
  "item": "https://domainrank.app/item/my-website",
  "name": "My Website",
  "link": "https://example.com",
  "pricePlan": "basic",
  "creditsConsumed": 100,
  "creditsRemaining": 4900
}

错误响应:

  • 401: API Key 无效或缺失
  • 400: 参数错误 (name/link 缺失或 pricePlan 无效)
  • 402: 积分不足
  • 409: 网站已存在
  • 500: 服务器错误

批量提交

批量提交多个网站时,必须先向用户确认以下信息,得到明确同意后再执行

  • 提交的网站列表
  • 每个网站使用的 pricePlan
  • 预计总积分消耗

确认后再依次调用 API:

for site in "Site1|https://site1.com" "Site2|https://site2.com"; do
  name="${site%|*}"
  link="${site#*|}"
  curl -X POST https://domainrank.app/api/submit-item \
    -H "Authorization: Bearer \x3CYOUR_DOMAINRANK_API_KEY>" \
    -H "Content-Type: application/json" \
    -d "{\"name\": \"$name\", \"link\": \"$link\", \"pricePlan\": \"basic\"}"
  sleep 1
done

注意事项

  1. URL 会自动清理:移除查询参数和尾部斜杠
  2. AI 自动填充:系统会自动抓取网站信息填充描述、分类、标签、图标
  3. 重复检测:相同 URL 无法重复提交
  4. 积分退款:如果 AI 抓取失败,积分会自动退还

更多 AI SEO 技能详见:https://domainrank.app/ai-seo-skills

安全使用建议
Install only if you intend to submit sites to DomainRank. Be ready to provide a DomainRank API key, confirm the site details and price plan, and check expected credit usage before any batch submission.
功能分析
Type: OpenClaw Skill Name: domainrank-submit Version: 1.0.1 The skill bundle provides legitimate instructions for an AI agent to interface with the DomainRank.app API for website submissions. It includes clear documentation on authentication, request parameters, and credit usage, and specifically instructs the agent to seek explicit user confirmation before performing batch operations or consuming credits. No evidence of data exfiltration, malicious execution, or prompt injection was found in SKILL.md or _meta.json.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose, API endpoint, request parameters, and credit costs all align with submitting websites to DomainRank; users should notice that submissions consume credits and may create public directory entries.
Instruction Scope
The skill documents required fields and explicitly requires confirmation before batch submissions, including site list, price plan, and estimated credit use. Single submissions are purpose-aligned but should still be checked before sending.
Install Mechanism
There is no install spec and no code files; this is an instruction-only skill with no local installation or executable helper.
Credentials
The skill requires an external HTTPS API request to DomainRank and a bearer API key, which is proportionate to the stated integration.
Persistence & Privilege
No local persistence, background behavior, or OS privileges are shown. The main privilege consideration is the DomainRank API key and the ability to spend DomainRank credits.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install domainrank-submit
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /domainrank-submit 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Security: replace hardcoded API token with placeholder; require user confirmation before batch submissions
v1.0.0
Initial release: submit websites to DomainRank.app AI directory via API
元数据
Slug domainrank-submit
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

DomainRank Submit 是什么?

提交网站到 DomainRank.app 导航站。使用场景:(1) 用户想要提交网站到 AI 导航站,(2) 用户说"提交到 domainrank"、"submit to domainrank"、"提交网站",(3) 用户需要批量提交多个网站到导航站。触发词:domainrank、提交网站、submit site... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 57 次。

如何安装 DomainRank Submit?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install domainrank-submit」即可一键安装,无需额外配置。

DomainRank Submit 是免费的吗?

是的,DomainRank Submit 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

DomainRank Submit 支持哪些平台?

DomainRank Submit 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 DomainRank Submit?

由 domainrankhq(@domainrankhq)开发并维护,当前版本 v1.0.1。

💬 留言讨论