Back to skills
SkillHub ClubShip Full StackFull Stack

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 running.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,074
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
S96.0

Install command

npx @skill-hub/cli install openclaw-skills-system-uptime

Repository

openclaw/skills

Skill path: skills/alamby/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 running.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install system-uptime into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding system-uptime to shared team environments
  • Use system-uptime for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
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

---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "alamby",
  "slug": "system-uptime",
  "displayName": "System Uptime",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1772250183012,
    "commit": "https://github.com/openclaw/skills/commit/43f843b364233c97800b85539c09bd26efc4fa68"
  },
  "history": []
}

```

system-uptime | SkillHub