بنقرة واحدة
dns
When a user asks to resolve a hostname → return A/AAAA records (DNS lookup).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
When a user asks to resolve a hostname → return A/AAAA records (DNS lookup).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Stocks (multi-market index snapshot + daily summary via stock/summary, incl. TASI), funds (six-digit OHLCV vs NAV daily), precious metals (XAUUSD) — pick the matching REST path or MCP tool.
When a user asks for China Fuel Price by province or a recharge promo → return current/previous prices or promo result.
When a user asks for FX rates or currency conversion → return exchange rates or the converted amount.
When a user asks for the latest cached movie list → return merged movie catalog.
When a user provides China latitude/longitude → reverse geocode to province/city/district.
When a user asks whether today is a public holiday in mainland China → return holiday status/name.
| name | dns |
| description | When a user asks to resolve a hostname → return A/AAAA records (DNS lookup). |
https://example.com/path → example.com) or plain domain.example.com).domain (string, required): hostname to query.dns (string, optional): resolver IP or host; default 1.1.1.1 if omitted.GET URL (domain + dns) already 200 in this conversation → reuse data; skip call.GET /api/dns?domain=... (add &dns=... if user specified resolver).{ code, message, data }.data.records, data.domain, data.dns.Same query string ⇒ cacheable:
GET /api/dns?domain=example.com
GET /api/dns?domain=example.com&dns=1.1.1.1
Standard envelope { code, message, data }.
data.records: array of { name, type, ttl, data } (shape as returned).domain → fix input, do not retry same bad value.GET /api/dns?domain=example.com → summarize A/AAAA from data.records.dns=8.8.8.8.Always GET; follow Steps.