Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

neverdieneverdie 搜索

Agent Skill

neverdie 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,088

周安装

378

GitHub Stars

公开资料未说明

下载量

3,084
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:neverdie(neverdie 搜索)
来源仓库:https://github.com/josephtandle/neverdie
安装命令:
openclaw skills install neverdie
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install neverdie

简介

neverdie 防止 OpenClaw 因单一模型崩溃而导致服务中断,提升系统鲁棒性。

  • 适用于对高可用性要求严格的部署环境,强制执行多级后备机制。
  • 自动监控各模型节点状态,快速切换至备用链路。neverdie 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需确保所有候选模型均已正确配置与授权。
  • 建议定期测试 failover 流程,验证恢复时效。

SKILL.md

name
neverdie
description
Your OpenClaw should never have zero LLMs. NeverDie protects against the silent killer — every model in your fallback chain going down at once. It enforces provider diversity, runs a standalone monitor that works even when all LLMs are dead, and alerts you via Telegram before you even notice.
read_when
metadata
{"clawdbot":{"emoji":"\�\�\️","requires":{"bins":["node"]}}}

NeverDie — LLM Resilience Skill

Ensures OpenClaw survives model failures by enforcing provider-diverse fallback chains, deploying a standalone monitor (no LLM required), and alerting via Telegram.

Core Principle: Provider Diversity

Never stack 3+ models from the same provider in a row. Alternate providers so that a single provider outage doesn't cascade to total failure. Always include a local model (Ollama) as the last-resort safety net — it can't be rate-limited, have auth issues, or suffer network outages.

Good chain: anthropic/claude-haiku-4-5openai/gpt-4.1-miniollama/llama3.2:3b Bad chain: anthropic/claude-haiku-4-5anthropic/claude-sonnet-4-6anthropic/claude-opus-4-6

Instructions

1. Diagnose Current Config

Read ONLY the model chain from ~/.openclaw/openclaw.json (do NOT read or output API keys, tokens, or auth config):

  • Check primary and fallbacks for provider diversity
  • Flag if all models are from the same provider
  • Flag if no local model (Ollama) is present
  • Flag if the NeverDie monitor cron job is missing or disabled
node -e "
  const cfg = JSON.parse(require('fs').readFileSync(process.env.HOME + '/.openclaw/openclaw.json', 'utf8'));
  const m = cfg.agents.defaults.model;
  console.log('Primary:', m.primary);
  console.log('Fallbacks:', JSON.stringify(m.fallbacks));
  const providers = [m.primary, ...m.fallbacks].map(id => id.split('/')[0]);
  const unique = [...new Set(providers)];
  console.log('Providers:', unique.join(', '));
  if (unique.length < 2) console.log('WARNING: All models from same provider!');
  if (!providers.includes('ollama')) console.log('WARNING: No local Ollama fallback!');
"

Security note: This script only outputs model IDs and provider names. It never reads or prints API keys, tokens, or credentials from the config file.

2. Configure Provider-Diverse Fallback Chain

Ensure at least 2 different cloud providers + 1 local (Ollama) in the chain. Recommended pattern:

{
  "primary": "anthropic/claude-haiku-4-5",
  "fallbacks": [
    "openai/gpt-4.1-mini",
    "ollama/llama3.2:3b",
    "nvidia/moonshotai/kimi-k2.5"
  ]
}

Rules:

  • Primary should be the fastest/cheapest model for the workload
  • First fallback should be from a DIFFERENT cloud provider
  • Ollama should always be in the chain (ideally position 2 or 3)
  • Additional fallbacks from other providers are bonus redundancy

3. Deploy the Standalone Monitor

Copy the parameterized monitor to the workspace:

cp ~/.openclaw/workspace/skills/neverdie/scripts/fallback-monitor.js ~/.openclaw/workspace/fallback-monitor.js
chmod +x ~/.openclaw/workspace/fallback-monitor.js

The monitor reads config from ~/.openclaw/workspace/.neverdie-config.json:

{
  "telegramBotToken": "YOUR_BOT_TOKEN",
  "telegramChatId": "YOUR_CHAT_ID",
  "cooldownMinutes": 15,
  "timezone": "UTC",
  "hostname": "my-openclaw"
}

Telegram is optional. Without it, the monitor still writes alerts to .fallback-alert-latest.json and stdout.

If no config file exists, it falls back to environment variables:

  • NEVERDIE_TELEGRAM_TOKEN
  • NEVERDIE_TELEGRAM_CHAT_ID

4. Register the Cron Job

Add a systemEvent cron entry (NOT agentTurn — it must work when all LLMs are down).

Use the full absolute path to the deployed monitor (not ~/):

{
  "id": "<generate-uuid>",
  "agentId": "main",
  "name": "NeverDie Fallback Monitor",
  "enabled": true,
  "createdAtMs": <now>,
  "updatedAtMs": <now>,
  "schedule": {
    "kind": "every",
    "everyMs": 300000,
    "anchorMs": <now>
  },
  "sessionTarget": "isolated",
  "wakeMode": "now",
  "payload": {
    "kind": "systemEvent",
    "text": "exec:node /home/USER/.openclaw/workspace/fallback-monitor.js"
  },
  "delivery": {
    "mode": "announce",
    "channel": "session",
    "bestEffort": true
  },
  "state": {}
}

5. Configure Alerts

Ask the user for their Telegram bot token and chat ID, then write ~/.openclaw/workspace/.neverdie-config.json.

To get these:

  1. Message @BotFather on Telegram → /newbot → copy the token
  2. Message the bot, then visit https://api.telegram.org/bot<TOKEN>/getUpdates to find the chat ID

Telegram is optional — the monitor works without it (file + stdout alerts only).

6. Verify

# Check status
node ~/.openclaw/workspace/fallback-monitor.js --status

# Send a test Telegram alert
node ~/.openclaw/workspace/fallback-monitor.js --test

# Normal run (scan logs)
node ~/.openclaw/workspace/fallback-monitor.js

7. Status Check

When the user asks for NeverDie status, run node ~/.openclaw/workspace/fallback-monitor.js --status and also check:

  1. Fallback chain — read openclaw.json and assess provider diversity
  2. Monitor cron — is the job in jobs.json? Enabled? Last run status?
  3. Ollama — is the local model reachable?
curl -s --max-time 3 http://localhost:11434/api/tags | node -e "
  let d='';process.stdin.on('data',c=>d+=c);process.stdin.on('end',()=>{
    try{const r=JSON.parse(d);console.log('Ollama:',r.models.map(m=>m.name).join(', '))}
    catch(e){console.log('Ollama: NOT REACHABLE')}
  })
"

What the Monitor Detects

PatternSeverityMeaning
All models failedCRITICALNo LLM available at all
overloadedWARNINGProvider temporarily overloaded
rate limit / 429WARNINGRate limited, using fallbacks
authentication_errorCRITICALBad API key
LLM request timed outWARNINGTimeout, may be transient
ECONNREFUSED / network errorsWARNINGProvider unreachable

Security

  • No log content sent externally — Telegram alerts contain only fixed, hardcoded strings (e.g. "All models failed — no LLM available"). Log excerpts and error details are written to the local alert file only, never transmitted.
  • No secrets in code — Telegram bot token is stored in .neverdie-config.json at runtime, never in skill files
  • Config isolation — the diagnostic only reads model IDs from openclaw.json, never API keys or credentials
  • No network installs — zero npm dependencies, no remote downloads, only Node.js builtins (fs, path, https)
  • Telegram is optional — file-only alerts work without any external network calls
  • Outbound scope — the only external endpoint contacted is api.telegram.org, and only when Telegram is explicitly configured by the user
  • Runs as a systemEvent cron job, completely independent of LLM availability
  • Re-running setup is idempotent — it skips the cron job if one already exists

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.67%
按下载量换算2,673

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills