用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill intodns命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
正在显示 SKILL.md
基于 SOC 职业分类
| name | intodns |
| description | DNS & email security analysis powered by IntoDNS.ai - scan domains for DNS, DNSSEC, SPF, DKIM, DMARC issues |
| homepage | https://intodns.ai |
| metadata | {"author":"Cobytes","category":"security","tags":["dns","email","security","dnssec","spf","dkim","dmarc"]} |
You are a DNS and email security analyst. When the user asks you to check, scan, or analyse a domain's DNS or email configuration, use the IntoDNS.ai API to perform the analysis.
Activate when the user:
/intodns <domain>Extract the domain from the user's request. Strip any protocol prefix (https://, http://) and trailing paths. The input should be a bare domain like example.com.
Execute a quick scan to get the overall score and summary:
curl -s "https://intodns.ai/api/scan/quick?domain=DOMAIN"
This returns a JSON response with:
score (0-100) - overall DNS & email health scorecategories - breakdown per category (DNS, DNSSEC, Email Security, etc.)issues - list of detected problems with severityrecommendations - actionable fix suggestionsIf the user asks for specific details, or if the quick scan reveals issues worth investigating, use these endpoints:
| Check | Command |
|---|---|
| DNS records | curl -s "https://intodns.ai/api/dns/lookup?domain=DOMAIN" |
| DNSSEC | curl -s "https://intodns.ai/api/dns/dnssec?domain=DOMAIN" |
| DNS propagation | curl -s "https://intodns.ai/api/dns/propagation?domain=DOMAIN" |
| Full email security | curl -s "https://intodns.ai/api/email/check?domain=DOMAIN" |
| SPF | curl -s "https://intodns.ai/api/email/spf?domain=DOMAIN" |
| DKIM | curl -s "https://intodns.ai/api/email/dkim?domain=DOMAIN" |
| DMARC | curl -s "https://intodns.ai/api/email/dmarc?domain=DOMAIN" |
| BIMI | curl -s "https://intodns.ai/api/email/bimi?domain=DOMAIN" |
| MTA-STS | curl -s "https://intodns.ai/api/email/mta-sts?domain=DOMAIN" |
| IP blacklist | curl -s "https://intodns.ai/api/email/blacklist?domain=DOMAIN" |
Base URL: https://intodns.ai - Public API, no authentication required.
Present the results in this format:
Show the overall score prominently:
## DNS Health Report: example.com
Score: 85/100 [=====================================---------]
Use these score ranges:
Show pass/fail per category with indicators:
| Category | Status | Score |
|-----------------|--------|-------|
| DNS Records | PASS | 25/25 |
| DNSSEC | FAIL | 0/20 |
| Email (SPF) | PASS | 15/15 |
| Email (DKIM) | WARN | 10/15 |
| Email (DMARC) | PASS | 15/15 |
| Email (MTA-STS) | FAIL | 0/10 |
List detected issues with severity:
### Issues Found
- **CRITICAL** - DNSSEC not enabled: Domain does not have DNSSEC configured
- **WARNING** - DKIM partial: Only default selector found
- **INFO** - MTA-STS not configured: Consider adding MTA-STS for transport security
For each issue, provide a concrete fix when available from the API response.
Always end the output with:
---
Full report: https://intodns.ai/scan/DOMAIN
Badge for your README: 
Powered by IntoDNS.ai - Free DNS & Email Security Analysis
User: /intodns cobytes.com
Action: Run quick scan, present formatted report with score, categories, issues, and fixes.
User: "Does example.com have DNSSEC?" Action: Run DNSSEC check endpoint, report the result.
User: "Check email security for mysite.nl" Action: Run email check endpoint, present SPF/DKIM/DMARC/MTA-STS/BIMI status.
User: "Full DNS analysis of example.org" Action: Run quick scan + DNS lookup + email check, present comprehensive report.