Spaces:
Sleeping
Sleeping
File size: 1,480 Bytes
383cb38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | ---
name: atom-status
description: Check Atom OS daemon status (running state, PID, uptime, memory, CPU)
version: 1.0.0
author: Atom Team
tags: [atom, cli, status, monitoring]
maturity_level: STUDENT
governance:
maturity_requirement: STUDENT
reason: "Read-only status check, safe for all maturity levels"
---
# Atom Status Checker
Check the running status of the Atom OS daemon process.
## Usage
Execute this skill to check daemon status:
```
atom-os status
```
## Output
Returns daemon status information:
**If running:**
- Status: RUNNING
- PID: Process identifier
- Memory: Memory usage in MB
- CPU: CPU usage percentage
- Uptime: Time since daemon started (seconds)
- Dashboard URL: http://localhost:8000
**If stopped:**
- Status: STOPPED
- Note: Additional information (if available)
## Examples
Check if daemon is running:
```
atom-os status
```
Expected output:
```
Status: RUNNING
PID: 12345
Memory: 256.5 MB
CPU: 5.2%
Uptime: 3600s
Dashboard: http://localhost:8000
```
Check stopped daemon:
```
atom-os status
```
Expected output:
```
Status: STOPPED
```
## Notes
✓ **Read-only operation** - Safe for all maturity levels (STUDENT+)
This command does not modify any system state. It only reads daemon status information from PID file and process table.
## Requirements
- Atom CLI must be installed (`atom-os` command available)
- No special permissions required
|