Skip to main content

pingdom

Monitor uptime and performance via Pingdom API. Manage checks and view reports.

インストールへ移動

ソース情報

リポジトリ
Kernel8901/ai-agent-skills-classification
ソースの最終更新活動
2026年4月4日 15:26
検出された SKILL.md の言語
英語
スター
4
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
2 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
pingdom
description
Monitor uptime and performance via Pingdom API. Manage checks and view reports.
metadata
{"clawdbot":{"emoji":"📡","requires":{"env":"[Truncated]"}}}
# Pingdom Uptime monitoring. ## Environment ```bash export PINGDOM_API_TOKEN="xxxxxxxxxx" ``` ## List Checks ```bash curl "https://api.pingdom.com/api/3.1/checks" -H "Authorization: Bearer $PINGDOM_API_TOKEN" ``` ## Get Check Results ```bash curl "https://api.pingdom.com/api/3.1/results/{checkId}" -H "Authorization: Bearer $PINGDOM_API_TOKEN" ``` ## Create Check ```bash curl -X POST "https://api.pingdom.com/api/3.1/checks" \ -H "Authorization: Bearer $PINGDOM_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"name": "My Website", "host": "example.com", "type": "http"}' ``` ## Links - Docs: https://docs.pingdom.com/api/
GitHubで見る