Li Sentry Check
/install li-sentry-check
li_sentry_check
Multi-platform server inspection and health check via SSH.
Security Declaration
This skill is strictly read-only and does NOT:
- ❌ Modify any server configuration
- ❌ Install or remove software
- ❌ Restart or stop services
- ❌ Write to any file on the remote server
- ❌ Exfiltrate data to external services
- ❌ Access local files other than:
references/targets.yaml,references/checks.yaml, and the SSH private key specified inkeyPath - ❌ Make any network connections other than SSH to the target server specified in
targets.yaml - ❌ Execute arbitrary commands — only commands from
references/checks.yamlare allowed
This skill ONLY:
- ✅ Reads system information via predefined read-only commands
- ✅ Generates a local Markdown/JSON report
- ✅ Connects to ONE remote server via SSH using the key specified in
targets.yaml
Overview
Read-only inspection of remote Linux hosts over SSH using a dedicated key. Collects system metrics, service status, security events, and generates a structured Markdown report with anomaly highlighting.
Platform Support
| Platform | Script | Runtime |
|---|---|---|
| OpenClaw | scripts/inspect.mjs |
Node.js 24+ |
| NanoBot | scripts/inspect.py |
Python 3.10+ |
| Hermes | scripts/inspect.py |
Python 3.10+ |
Safety (Default Deny)
- Only run commands defined in
references/checks.yaml - No state-changing commands (no installs, no config edits, no restarts)
- Only SSH key authentication (no passwords)
- BatchMode=yes — non-interactive SSH only
Config
- Targets:
references/targets.yaml - Allowed checks:
references/checks.yaml
How To Run
NanoBot / Hermes (Python)
python3 scripts/inspect.py --target bogon --checks daily
OpenClaw (Node.js)
node scripts/inspect.mjs --target bogon --checks daily
Options
| Option | Description | Default |
|---|---|---|
--target |
Target name from targets.yaml |
(required) |
--checks |
Check group: basic, services, daily |
basic |
--format |
Output format: markdown, json |
markdown |
--output |
Write report to file instead of stdout | stdout |
Check Groups
| Group | Description |
|---|---|
basic |
Hardware resources: CPU, memory, disk, network |
services |
Service status and error logs (from targets.yaml) |
daily |
Full inspection: basic + services + security + logs |
Extending
- Add target: Edit
references/targets.yaml - Add checks: Edit
references/checks.yaml - Add check group: Define new group in
checks.yaml
SSH Key Setup
# Generate key pair
ssh-keygen -t rsa -b 4096 -f ~/.ssh/li_sentry_check -N ""
# Copy to remote server
ssh-copy-id -i ~/.ssh/li_sentry_check.pub inspector@\x3CSERVER_IP>
# Test connection
ssh -i ~/.ssh/li_sentry_check inspector@\x3CSERVER_IP>
Security Best Practices
- Key permissions:
chmod 600 ~/.ssh/li_sentry_check - Host verification: For production, pre-populate
known_hostsinstead ofaccept-new - Service names: Only alphanumeric, hyphens, underscores allowed (validated before use)
- Command allowlist: Never modify
checks.yamlwith state-changing commands - Report handling: Reports may contain system data — do not share publicly
Report Output
Reports are generated in Markdown format with:
- Summary section: Overall health status, anomaly count
- Anomaly section: ⚠️ Highlighted issues requiring attention
- Normal section: Collapsible normal check results
- Details: Full command output for each check
Architecture
li_sentry_check/
├── SKILL.md # This file
├── _meta.json # Skill metadata
├── references/
│ ├── targets.yaml # Target server configuration
│ └── checks.yaml # Command allowlist
└── scripts/
├── inspect.mjs # Node.js implementation (OpenClaw)
└── inspect.py # Python implementation (NanoBot/Hermes)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install li-sentry-check - 安装完成后,直接呼叫该 Skill 的名称或使用
/li-sentry-check触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Li Sentry Check 是什么?
Multi-platform server inspection and health check skill. SSH into remote Linux servers using key-based authentication, run read-only inspection commands (CPU... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 56 次。
如何安装 Li Sentry Check?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install li-sentry-check」即可一键安装,无需额外配置。
Li Sentry Check 是免费的吗?
是的,Li Sentry Check 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Li Sentry Check 支持哪些平台?
Li Sentry Check 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Li Sentry Check?
由 Terry S Fisher(@43622283)开发并维护,当前版本 v0.4.0。