AgentSkillsCN

ipinfo

在 IP 查找中,善用上下文复用与合理参数设置。触发条件包括 IP 查找、VPN 检测,以及滥用行为的联系人追踪。

SKILL.md
--- frontmatter
name: ipinfo
description: Guides IP lookups with context reuse and proper parameters. Triggers on IP lookups, VPN detection, abuse contacts.
metadata:
  version: 1.0.0
  category: operations
  tags: [ipinfo, ip-lookup, vpn-detection, mcp]
  author:
    name: NimbleBrain
    url: https://www.nimblebrain.ai

IPInfo

Critical: Context Reuse

Follow-up questions ("this IP", "that one", "is it a VPN?") → reuse IP from prior result.

code
User: "lookup 195.179.201.16" → get_ip_info(ip="195.179.201.16")
User: "is this a VPN?"       → get_plus_ip_info(ip="195.179.201.16")  ← SAME IP

Never call with empty {}. Always pass ip explicitly.

Tool Selection

IntentTool
General lookupget_ip_info(ip)
VPN/proxy/Torget_plus_ip_info(ip)
Abuse contactget_abuse_contact(ip)
Company infoget_company_info(ip)
Hosted domainsget_hosted_domains(ip)
WHOISwhois_lookup_by_ip(ip)
Multiple IPsbatch_lookup(ips)

VPN Detection

Use get_plus_ip_info (not get_ip_info) for privacy flags:

  • anonymous.vpn, anonymous.proxy, anonymous.tor
  • is_hosting = datacenter/cloud provider