{"id":29019194,"url":"https://github.com/prioff3690/vitals","last_synced_at":"2026-04-28T01:31:34.403Z","repository":{"id":301027567,"uuid":"1007828940","full_name":"PriOFF3690/vitals","owner":"PriOFF3690","description":"Vitals is a cross-platform system monitoring and diagnostics tool built in Go.","archived":false,"fork":false,"pushed_at":"2025-06-24T20:03:49.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-24T20:24:30.198Z","etag":null,"topics":["cli","command-line","cross","cybers","go","golang","monitoring","open-sou","system-moni","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PriOFF3690.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-24T15:37:34.000Z","updated_at":"2025-06-24T20:03:52.000Z","dependencies_parsed_at":"2025-06-24T20:35:15.684Z","dependency_job_id":null,"html_url":"https://github.com/PriOFF3690/vitals","commit_stats":null,"previous_names":["prioff3690/vitals"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/PriOFF3690/vitals","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PriOFF3690%2Fvitals","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PriOFF3690%2Fvitals/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PriOFF3690%2Fvitals/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PriOFF3690%2Fvitals/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PriOFF3690","download_url":"https://codeload.github.com/PriOFF3690/vitals/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PriOFF3690%2Fvitals/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261855055,"owners_count":23220190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","command-line","cross","cybers","go","golang","monitoring","open-sou","system-moni","terminal"],"created_at":"2025-06-26T00:08:24.197Z","updated_at":"2026-04-28T01:31:34.363Z","avatar_url":"https://github.com/PriOFF3690.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🩺  Vitals\n\n**Vitals** is a lightweight, cross-platform command-line tool built in Go for system monitoring and basic cybersecurity diagnostics. Inspired by how vitals are used to assess health, this tool helps analyze the digital \"health\" of your machine.\n\n---\n\n\n## 🔍 Features\n\n- View system info (hostname, OS, CPU, memory)\n- Display disk usage and partitions\n- Show network interfaces and open connections\n- Perform basic security scans\n- Monitor system vitals continuously\n- Color-coded terminal output for better visibility\n\n---\n\n## 📦 Releases\n\nDownload pre-built binaries from the [Releases](https://github.com/PriOFF3690/vitals/releases) page:\n\n- 🪟 [Windows (64-bit)](https://github.com/PriOFF3690/vitals/releases/download/v1.0.0/vitals-windows-amd64.zip)\n- 🐧 [Linux (64-bit)](https://github.com/PriOFF3690/vitals/releases/download/v1.0.0/vitals-linux-amd64.zip)\n- 🍎 [macOS (Intel)](https://github.com/PriOFF3690/vitals/releases/download/v1.0.0/vitals-darwin-amd64.zip)\n\n## 🛠 Installation\n\nYou have several options to get started with Vitals:\n\n### 1. Install via go install (requires Go installed)\n\n```bash\n  go install github.com/PriOFF3690/vitals@latest\n```\n- Installs the vitals binary to your Go bin directory (e.g. $HOME/go/bin)\n- Add that directory to your PATH to run vitals globally\n\n### 2. Build from Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/PriOFF3690/vitals.git\ncd vitals\n\n# Build the binary (Go must be installed)\ngo build -o vitals\n\n# (Optional) Install it globally\nsudo mv vitals /usr/local/bin/\n```\n    \n### 3. Download Prebuilt Binary\n\nVisit: [vitals Releases](https://github.com/PriOFF3690/vitals/releases)\n\nDownload the correct binary zip for your system and extract it. Example for Linux:\n```bash\nchmod +x vitals\n./vitals --help\n```\nFor Windows users (PowerShell):\n```powershell\n.\\vitals.exe --help\n```\n## 🚀 Usage\nRun the tool using:\n\n```bash\nvitals [command] [flags]\n```\n\n\n## 📘 Documentation\n\nAvailable Commands\n| Command   | Description                                   |\n| --------- | --------------------------------------------- |\n| `system`  | Display host information (OS, CPU, RAM, etc.) |\n| `disk`    | Show disk usage and partitions                |\n| `network` | List network interfaces and open connections  |\n| `scan`    | Perform basic security checks (expandable)    |\n| `monitor` | Monitor system vitals (CPU \u0026 memory live)     |\n\nUse --help with any command for more info:\n```bash\nvitals system --help\nvitals scan --help\n```\n## 📜 License\n\nThis project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.\n\n\n\n## 👨‍💻 Author\n### Prince Gokhale\nCybersecurity Enthusiast \u0026 passionate techie\n\n- [@LinkedIn](https://www.linkedin.com/in/prince-g-7262b123a)\n- [@TryHackMe](https://tryhackme.com/p/shodan2109)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprioff3690%2Fvitals","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprioff3690%2Fvitals","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprioff3690%2Fvitals/lists"}