openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > System Uptime

Get the current system uptime using the native 'uptime' command. Use when: user asks about system uptime, system status, or how long the system has been runn...

数据与表格

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 198 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:alamby/system-uptime

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

This skill is internally consistent with its description: it simply runs the local 'uptime' command (via a small Node CLI) and does not request credentials, network access, or unrelated system data.

目的

Name/description match the implementation. The skill requires the 'uptime' binary and its code calls 'uptime' to produce output — this is proportionate and expected.

说明范围

SKILL.md only directs running the local 'uptime' command or the included node CLI. The runtime instructions do not read files, environment variables, or send data externally.

安装机制

There is no install spec (instruction-only behavior). A small package.json and a single CLI file are included; nothing is downloaded from external URLs or extracted to disk during install.

证书

No environment variables, credentials, or config paths are requested. The skill does not access sensitive variables or unrelated services.

持久

The skill is not forced-always, does not request persistent elevated privileges, and does not modify other skills or global agent configuration.

综合结论

This skill is low-risk: it runs a single local command ('uptime') and prints the result. Before installing, you can (1) verify the file contents (uptime-cli.js is short and only execs a fixed 'uptime' command), (2) confirm the 'uptime' binary exists on your target OS, and (3) note that it requires Node only if you use the provided CLI; otherwise you can run the native 'uptime' directly. Because the package source and owner are unknown, inspect…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「System Uptime」。简介:Get the current system uptime using the native 'uptime' command. Use when: user…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alamby/system-uptime/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: system-uptime
description: "Get the current system uptime using the native 'uptime' command. Use when: user asks about system uptime, system status, or how long the system has been running."
metadata: { "openclaw": { "emoji": "⏱️", "requires": { "bins": ["uptime"] } } }
---

# System Uptime Skill

Get the current system uptime using the built-in `uptime` command.

## When to Use

✅ **USE this skill when:**

- "What's the system uptime?"
- "How long has the system been running?"
- "Show system status"
- "When was the last reboot?"

## When NOT to Use

❌ **DON'T use this skill when:**

- Need detailed system metrics → use monitoring tools
- Remote system uptime → use SSH or remote monitoring
- Historical uptime data → check system logs

## Commands

### Get System Uptime

```bash
# Basic uptime
uptime

# Using the skill CLI
node uptime-cli.js
```

## Example Output

```
11:30:45 up 2 days, 4:23, 2 users, load average: 1.23, 1.15, 1.08
```

## Notes

- Uses the standard Unix `uptime` command
- Works on macOS, Linux, and other Unix-like systems
- No additional dependencies required