← Back to Skills Marketplace
domainrankhq

DomainRank Submit

by domainrankhq · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
57
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install domainrank-submit
Description
提交网站到 DomainRank.app 导航站。使用场景:(1) 用户想要提交网站到 AI 导航站,(2) 用户说"提交到 domainrank"、"submit to domainrank"、"提交网站",(3) 用户需要批量提交多个网站到导航站。触发词:domainrank、提交网站、submit site...
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Tags
requires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install domainrank-submit
  3. After installation, invoke the skill by name or use /domainrank-submit
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug domainrank-submit
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is DomainRank Submit?

提交网站到 DomainRank.app 导航站。使用场景:(1) 用户想要提交网站到 AI 导航站,(2) 用户说"提交到 domainrank"、"submit to domainrank"、"提交网站",(3) 用户需要批量提交多个网站到导航站。触发词:domainrank、提交网站、submit site... It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.

How do I install DomainRank Submit?

Run "/install domainrank-submit" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is DomainRank Submit free?

Yes, DomainRank Submit is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does DomainRank Submit support?

DomainRank Submit is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created DomainRank Submit?

It is built and maintained by domainrankhq (@domainrankhq); the current version is v1.0.1.

💬 Comments