diff --git a/Cargo.lock b/Cargo.lock
index e8501d1..f160f51 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2054,7 +2054,7 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
[[package]]
name = "status-panel"
-version = "0.1.4"
+version = "0.1.5"
dependencies = [
"anyhow",
"assert_cmd",
diff --git a/Cargo.toml b/Cargo.toml
index 81df358..99af624 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "status-panel"
-version = "0.1.4"
+version = "0.1.5"
edition = "2021"
[features]
diff --git a/README.md b/README.md
index b37b3b6..b8b618d 100644
--- a/README.md
+++ b/README.md
@@ -1,237 +1,196 @@
-[](https://github.com/trydirect/status/actions/workflows/ci.yml)
-
-
-
-
-
-[](https://gitter.im/try-direct/community)
-
- 
+# Status Panel
-## Quick Install
+**A lightweight infrastructure agent for server and container management.**
-Install the latest release (Linux x86_64):
+Monitors health, collects metrics, manages Docker containers, and executes commands — all from a single statically-linked binary.
-```bash
-curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
-```
+[](https://github.com/trydirect/status/actions/workflows/ci.yml)
+[](https://hub.docker.com/r/trydirect/status)
+[](https://github.com/trydirect/status/releases/latest)
+[](https://discord.gg/nsjje55wuu)
-Pin a specific version:
+
-```bash
-VERSION=v0.1.4 curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
-```
+---
-Custom install directory:
+## Highlights
-```bash
-INSTALL_DIR=~/.local/bin curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
-```
+- **Single binary** — statically linked (musl), zero runtime dependencies
+- **Docker management** — list, start, stop, restart, pause containers; health checks and log retrieval
+- **System metrics** — CPU, memory, disk usage via CLI or JSON API
+- **18+ remote commands** — health, logs, exec, deploy, config management, firewall, proxy, and more via Stacker integration
+- **Self-update** — download, verify (SHA256), deploy, and rollback — all built in
+- **Secure by default** — HMAC-SHA256 signed requests, replay protection, rate limiting, audit logging
+- **Vault integration** — fetch, apply, and diff app configs from HashiCorp Vault
+- **Flexible modes** — run as a CLI tool, background daemon, API server, or API+UI server
-Verify installation:
+## Quick Install
```bash
-status --version
+curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
```
-## Build
+Pin a specific version or choose a custom directory:
```bash
-cargo build --release
+VERSION=v0.1.4 curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
+INSTALL_DIR=~/.local/bin curl -sSfL https://raw.githubusercontent.com/trydirect/status/master/install.sh | sh
```
-## Run
-
-Foreground daemon (default without subcommands):
+Verify:
```bash
-./target/release/status --config config.json
+status --version
```
-Daemon mode (background):
+## CLI Commands
-```bash
-./target/release/status --daemon --config config.json
```
+status serve [--port 5000] [--with-ui] Start the HTTP API server
+status containers List all Docker containers
+status health [name] Check container or stack health
+status logs