بنقرة واحدة
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.