# System Info

> Get system information, check processes, disk usage, network status

- **Type:** Skill
- **Install:** `agentstack add skill-frontier-ai-next-mgarlbot-system-info`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [frontier-ai-next](https://agentstack.voostack.com/s/frontier-ai-next)
- **Installs:** 0
- **Category:** [Cloud & Infrastructure](https://agentstack.voostack.com/c/cloud-infrastructure)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [frontier-ai-next](https://github.com/frontier-ai-next)
- **Source:** https://github.com/frontier-ai-next/mgarlbot/tree/main/skills/system_info

## Install

```sh
agentstack add skill-frontier-ai-next-mgarlbot-system-info
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

## System information (macOS)

Use shell commands to read system state.

### General

macOS version:

```
sw_vers
```

Hostname and user:

```
whoami && hostname
```

Uptime:

```
uptime
```

### Processes

List processes (truncated):

```
ps aux | head -20
```

Find a process:

```
pgrep -fl "process_name"
```

Top by CPU:

```
ps -Arco pid,pcpu,comm | head -10
```

### Disk

Overall usage:

```
df -h
```

Directory size:

```
du -sh /path/to/directory
```

### Memory & CPU

Memory:

```
vm_stat | head -10
```

CPU model:

```
sysctl -n machdep.cpu.brand_string
```

### Network

IPv4 addresses:

```
ifconfig | grep "inet " | grep -v 127.0.0.1
```

Connectivity:

```
ping -c 3 google.com
```

### Battery

```
pmset -g batt
```

### Rules

1. Pipe verbose output through `head` / `tail`.
2. Avoid commands that destabilize the system.
3. Never kill processes without explicit user confirmation.
4. Prefer short, focused commands over huge dumps.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [frontier-ai-next](https://github.com/frontier-ai-next)
- **Source:** [frontier-ai-next/mgarlbot](https://github.com/frontier-ai-next/mgarlbot)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-frontier-ai-next-mgarlbot-system-info
- Seller: https://agentstack.voostack.com/s/frontier-ai-next
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
