6Kmfi6HP

Itdog Skill — Development skill for Claude Code

Development community

itdog.cn 网络测速工具 - Clawdbot Skill Batch Ping / HTTP 测速 / 全国多节点.

How to install Itdog Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open 6Kmfi6HP/itdog-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Itdog Skill does

itdog.cn 网络测速工具 - Clawdbot Skill Batch Ping / HTTP 测速 / 全国多节点.

Alternatives in Development

  • Peon Ping — Warcraft III Peon voice notifications (+ StarCraft, Portal, Zelda) for Claude Code and other agents 4k ★
  • Antigravity Claude Proxy — Proxy that exposes Antigravity provided claude / gemini models, so we can use them in Claude Code and OpenClaw 3.5k ★
  • Claude Autopilot — VS Code/Cursor extension for automating Claude Code tasks with intelligent queuing, batch processing, and auto 218 ★

README

🐕 clawdbot-skill-itdog

Clawdbot Skill: itdog.cn 网络测速工具

[![Clawdbot Skill](https://img.shields.io/badge/Clawdbot-Skill-purple.svg)](https://github.com/clawdbot/clawdbot) [![Python](https://img.shields.io/badge/Python-3.7+-blue.svg)](https://www.python.org/) [![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)

这是一个 [Clawdbot](https://github.com/clawdbot/clawdbot) 技能插件,提供 itdog.cn 网络测速功能。纯 Python 实现,无需浏览器,支持从全国/海外节点进行 Ping 测试和 HTTP 网站测速。

📦 安装

clawdbot skill add 6Kmfi6HP/clawdbot-skill-itdog

或手动克隆到 skills 目录:

cd ~/.clawdbot/skills
git clone https://github.com/6Kmfi6HP/clawdbot-skill-itdog.git itdog

✨ 功能特性

  • 🌍 Batch Ping - 从多个节点批量 Ping 测试 IP/域名
  • 🌐 HTTP 测速 - 测试网站在各节点的响应时间
  • 🔒 反爬虫处理 - 自动处理 guard/guardret Cookie
  • ⚡ 实时结果 - 通过 WebSocket 实时接收测速数据
  • 📊 多节点支持 - 覆盖三大运营商 + 海外节点

🎯 触发词

在 Clawdbot 中使用以下关键词触发此技能:

  • itdog
  • 网络测速
  • ping测试
  • 批量ping
  • http测速
  • cloudflare优选
  • 延迟测试

💬 使用示例

用户: 帮我用 itdog 测试一下 1.1.1.1 的延迟

Clawdbot: 🚀 发起 Batch Ping 测试...
目标: 1.1.1.1 (Cloudflare DNS)
节点: 北京电信、北京联通、北京移动

✅ 北京电信: 85ms
✅ 北京移动: 226ms
✅ 北京联通: 287ms

📊 测试完成

📍 常用节点

节点组 节点 ID 说明
北京三网 1310,1273,1250 电信/联通/移动
上海三网 1227,1254,1249 电信/联通/移动
广深三网 1169,1278,1290 电信/联通/移动
海外节点 1315,1316,1213 香港/新加坡/日本

完整节点列表见 [references/nodes.md](references/nodes.md)

📖 API 文档

`batch_ping(host, node_id, callback, **kwargs)`

参数 类型 默认值 说明
host str / list - IP/域名,支持 CIDR
node_id str - 节点 ID,逗号分隔
callback callable - 结果回调函数
cidr_filter bool True 过滤网络/广播地址
gateway str "last" 网关位置
timeout int 10 WebSocket 超时(秒)

**回调数据格式:**

{
    'ip': '1.1.1.1',
    'result': '85',           # 延迟(ms)
    'node_id': '1310',
    'task_num': 1,
    'address': 'cloudflare.com'
}

`http_test(url, callback, **kwargs)`

|