Metadata-Version: 2.4
Name: sysinfo-cli
Version: 0.1.0
Summary: System information CLI for humans and AI agents
Author-email: Marcus <marcus.builds.things@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/marcusbuildsthings-droid/sysinfo
Keywords: cli,system,info,monitoring,devops,ai-agent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Requires-Dist: psutil>=5.9
Dynamic: license-file

# sysinfo-cli

System information CLI for humans and AI agents.

## Install

```bash
pip install sysinfo-cli
```

## Usage

```bash
sysinfo overview          # Quick system overview
sysinfo cpu               # CPU details
sysinfo memory            # RAM and swap
sysinfo disk              # Disk usage per partition
sysinfo network           # Network interfaces
sysinfo battery           # Battery status (laptops)
sysinfo os-info           # OS details
sysinfo top               # Top processes by CPU/memory
sysinfo all               # Full system report
```

All commands support `--json` for machine-readable output:

```bash
sysinfo --json overview
sysinfo --json cpu
```

## For AI Agents

See [SKILL.md](SKILL.md) for agent-optimized documentation.

## License

MIT
