AI Agent Hub
Back to skills
Tencent Cloud DNSPod DNS Record Management icon

Tencent Cloud DNSPod DNS Record Management

IT Ops & Security Updated 2026.08.29

Paste the following prompt into your AI chat to install this skill:

Please follow https://skillhub.cn/install/skillhub.md and install @tencent-adm/tencentcloud-dnspod-skill.

About this skill

Problem

When an agent operates Tencent Cloud DNSPod directly, the failure mode is rarely missing tccli syntax. It is usually stale assumptions about API parameters, record types, TTL limits, record lines, or the OAuth flow. In high-risk changes, deleting a record, omitting RecordType / RecordLine / Value, or repeatedly changing DNS servers can interrupt resolution.

How it works

The skill narrows the scope to DNSPod resolution management: querying domains and records, creating, modifying, or deleting records, updating status and remarks, inspecting record lines, and using CreateRecordBatch / ModifyRecordBatch for batch work. Its operating principle is to treat tccli dnspod --help and the bundled references as the source of truth instead of guessing parameters. Credential setup prefers OAuth browser authorization, using tccli-oauth-helper.py --get-url and --code for non-interactive login, then verifying with a domain list query. Write operations are risk-graded: reads can run directly, while modifications and deletions require scope explanation and explicit confirmation.

Boundaries

It does not cover domain registration, renewal, transfer-in, SSL certificates, server management, or application deployment. Before changing DNS servers, compare EffectiveDNS with DnspodNsList and act only on a mismatch. Record propagation still depends on TTL and local DNS cache.

Use Cases

  • Add A or CNAME records to a new service domain and verify resolution.
  • Inspect domains, records, lines, and status when a DNS lookup misbehaves.
  • Onboard a new domain to DNSPod, set DNS servers, and create initial records.
  • Batch migrate records after checking tccli help for required parameters.

Best For

  • SREs who onboard domains: create, modify, and pause DNS records safely.
  • Cloud ops engineers managing credentials: configure OAuth or AK/SK and verify tccli.
  • Support engineers debugging DNS: inspect domains, records, lines, and status.
  • Infrastructure engineers batching changes: validate parameters before bulk edits.