원클릭으로
endpoint-check
HTTP probe (status + latency) and TLS certificate inspection (expiry, issuer, SANs).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
HTTP probe (status + latency) and TLS certificate inspection (expiry, issuer, SANs).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bounded auto-iteration for a prompt with explicit stop predicates.
Memory hygiene workflow to classify, deduplicate, and promote durable knowledge across local memory layers.
Bounded simplification pass for a file or hunk that preserves behavior while reducing complexity.
Turn a repeatable workflow into a reusable local SKILL.md with explicit steps, criteria, and safe defaults.
Bounded auto-debug loop for failing build/test commands with evidence-first diagnosis.
Safely update Nexo config files with read-before-write merges, schema-aware mapping, and reload/restart awareness.
| name | Endpoint Check |
| description | HTTP probe (status + latency) and TLS certificate inspection (expiry, issuer, SANs). |
| requires | {"bins":[],"env":[]} |
Use when the user wants to verify that an HTTP endpoint is alive, measure its latency, or inspect a TLS certificate's expiry and issuer. Combines naturally with Phase 7 heartbeat for periodic monitoring.
fetch-url or a dedicated extensionfetch-urlstatusNo args. Info + limits.
http_probe { url, method?, timeout_secs?, follow_redirects?, expected_status? }url required (http/https)method GET (default) or HEADtimeout_secs 1..60 (default 10)follow_redirects default trueexpected_status optional: returns matches_expected: boolReturns {status, latency_ms, final_url, content_type, body_preview (≤500 chars), [matches_expected]}.
ssl_cert { host, port?, timeout_secs?, warn_days? }host requiredport default 443timeout_secs 1..60 (default 10)warn_days default 30 — sets expiring_soon: true below thresholdReturns {subject, issuer, sans, serial_hex, signature_algorithm, chain_length, not_before_unix, not_after_unix, seconds_until_expiry, days_until_expiry, expiring_soon, expired}.
Note: this tool does not validate trust chains — expired/self-signed
certs still return parsed metadata. Use expired/expiring_soon to decide.
status changes or expiring_soon flips true.state_json and diff against new runs.ssl_cert is informational; for actionable alerts, use
days_until_expiry with a stricter threshold (e.g., 14 days).-32005 timeout means server did not reply within timeout_secs.-32060/-32061 in ssl_cert usually indicate DNS/TCP connect issues.