Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

spaceship-domains宇宙飞船领域

Agent Skill

spaceship-domains 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:spaceship-domains(宇宙飞船领域)
来源仓库:https://github.com/bartwaardenburg/spaceship-skills
仓库路径:skills/spaceship-domains
安装命令:
npx skills add https://github.com/bartwaardenburg/spaceship-skills --skill spaceship-domains
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bartwaardenburg/spaceship-skills --skill spaceship-domains

简介

用于域名查询和可用性检查。spaceship-domains 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合寻找可用的网站或应用域名。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可通过 GitHub 安装,需确认是否调用外部 API。
  • 建议结合品牌策略选择易记且相关的域名。
  • 适用于新项目启动和品牌建设场景。

SKILL.md

Spaceship Domain Management

Manages domains through 48 Spaceship MCP tools across 9 categories: domain lookup, domain info, domain settings, domain lifecycle, DNS management, DNS record creation, contacts & privacy, personal nameservers, and SellerHub marketplace.

When to Use

  • Managing domains registered at Spaceship (DNS, settings, contacts, privacy)
  • Registering, renewing, transferring, or restoring domains via Spaceship
  • Configuring DNS records for domains using Spaceship nameservers
  • Setting up email (Google Workspace, Microsoft 365) on Spaceship-managed domains
  • Listing domains for sale on Spaceship SellerHub
  • Checking domain availability and pricing through Spaceship
  • Setting up vanity/glue nameservers for Spaceship domains

When NOT to Use

  • Domains managed at other registrars (Cloudflare, GoDaddy, Namecheap, etc.)
  • DNS hosted outside Spaceship (e.g. Cloudflare DNS, Route 53, Google Cloud DNS)
  • General DNS troubleshooting unrelated to Spaceship
  • Web hosting or server configuration
  • SSL certificate management (use CAA records for authorization only)
  • Email server setup beyond DNS records

Tool Loading

All Spaceship tools are deferred. Load them before use:

ToolSearch: "+spaceship <keyword>"

Examples: +spaceship dns, +spaceship domain, +spaceship contact, +spaceship sellerhub.

Tool Categories

CategoryToolsKey Operations
Domain Lookupcheck_domain_availabilityCheck availability + pricing for 1–20 domains
Domain Infolist_domains, get_domainList/inspect domains in account
Domain Settingsset_auto_renew, set_transfer_lock, update_nameservers, get_auth_codeConfigure domain settings
Domain Lifecycleregister_domain, renew_domain, restore_domain, transfer_domain, get_transfer_status, get_async_operationRegistration, renewal, transfer (all async + financial)
DNS Managementlist_dns_records, save_dns_records, delete_dns_records, check_dns_alignmentBulk DNS operations
DNS Creatorscreate_a_record, create_aaaa_record, create_cname_record, create_mx_record, create_txt_record, create_srv_record, create_ns_record, create_alias_record, create_caa_record, create_https_record, create_ptr_record, create_svcb_record, create_tlsa_recordCreate individual DNS records by type
Contacts & Privacysave_contact, get_contact, save_contact_attributes, get_contact_attributes, update_domain_contacts, set_privacy_level, set_email_protectionContact profiles, WHOIS privacy
Personal NSlist_personal_nameservers, get_personal_nameserver, update_personal_nameserver, delete_personal_nameserverVanity nameservers (glue records)
SellerHublist_sellerhub_domains, create_sellerhub_domain, get_sellerhub_domain, update_sellerhub_domain, delete_sellerhub_domain, create_checkout_link, get_verification_recordsDomain marketplace

References

  • API Reference — complete parameter specs for all 48 tools
  • Gotchas — common pitfalls, edge cases, and correct usage patterns
  • Patterns — DNS recipes for Google Workspace, Microsoft 365, Vercel, Netlify, and more

Common Workflows

Check & Register a Domain

1. check_domain_availability({ domains: ["example.com"] })
   → Returns availability + pricing
2. save_contact({ firstName, lastName, email, address1, city, country, phone })
   → Returns { contactId }
3. register_domain({ domain: "example.com", contacts: { registrant: contactId } })
   → Returns { operationId } (async, financial — confirm with user first)
4. get_async_operation({ operationId })
   → Poll until status is "completed"
5. set_privacy_level({ domain, level: "high", userConsent: true })
6. set_transfer_lock({ domain, locked: true })

Configure DNS for a Website

1. list_dns_records({ domain: "example.com" })
   → See existing records
2. create_a_record({ domain, name: "@", address: "93.184.216.34" })
3. create_cname_record({ domain, name: "www", cname: "example.com" })
4. check_dns_alignment({ domain, expectedRecords: [...] })
   → Verify all records are correct

For email, CDN, and hosting provider DNS patterns, see references/patterns.md.

Transfer a Domain to Spaceship

1. save_contact({ ... })
   → Create contact profile first
2. transfer_domain({ domain, authCode: "EPP-CODE", contacts: { registrant: contactId } })
   → Returns { operationId } (async, financial — confirm with user first)
3. get_transfer_status({ domain })
   → Check transfer progress
4. get_async_operation({ operationId })
   → Poll until complete

Sell a Domain on SellerHub

1. create_sellerhub_domain({ domain, binPrice: { amount: "5000", currency: "USD" }, binPriceEnabled: true })
2. get_verification_records()
   → Get DNS verification records (account-level)
3. create_txt_record({ domain, name, value })
   → Add the verification TXT record
4. create_checkout_link({ domain, type: "buyNow" })
   → Returns shareable purchase URL

Key Gotchas

  • Async + financial: register_domain, renew_domain, restore_domain, transfer_domain return {operationId} — always confirm with user before executing, then poll with get_async_operation
  • DNS creators replace: Each create_*_record replaces ALL existing records with the same name+type
  • Privacy requires consent: set_privacy_level needs {userConsent: true} — mandatory
  • Rate limits: 5 requests per 300 seconds per domain for write endpoints

For the full list with examples, see references/gotchas.md.

Instructions

  1. Identify the action from the user's request
  2. Load required tools via ToolSearch with +spaceship <keyword>
  3. Confirm destructive/financial operations before executing (register, renew, restore, transfer, delete DNS)
  4. Follow the appropriate workflow above, or check references/patterns.md for service-specific DNS recipes
  5. Poll async operations for lifecycle operations
  6. Report results clearly — show domain status, DNS records, pricing, or operation results in readable format

If $ARGUMENTS is provided, interpret it as the domain name or action to perform.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.48%
按下载量换算22

Claude

30.96%
按下载量换算20

Cursor

19.5%
按下载量换算13

Gemini CLI

9.16%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills