Guides
Status checking
Latency, uptime state, dead list detection.
const board = await lists.refreshStatus();
board.summary; // { live: 33, deprecated: 0, shutdown: 0, unknown: 0 }
board.entries[0];
// { listId, listName, website, state, httpStatus, latencyMs, lastChecked }
// probe, print the unicode console table, get github issue links for dead lists
await lists.checkAndReportStatus();| State | Meaning | What happens |
|---|---|---|
live | Website answered HTTP < 500 | Stays in the registry |
deprecated | Superseded or announced end of life | PR opens to remove it |
shutdown | Unreachable or parked domain | PR opens to remove it |
unknown | 5xx answers, list is struggling | Kept, watched closely |
InfoThe hourly GitHub workflow updates the README table and website on main directly. Only deprecated or shutdown detections open a pull request, so registry changes always get a human review.