diff --git a/Directory.Build.props b/Directory.Build.props
index f94e018..6730b4d 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -11,9 +11,16 @@
https://github.com/Chrison-dev/UnifiSharp
git
MIT
+
+ README.md
true
embedded
+
+
+
+
+
diff --git a/README.md b/README.md
index 57b65e9..484e417 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,31 @@
# UnifiSharp
+[](https://www.nuget.org/packages/Chrison.UnifiSharp/)
+[](https://www.nuget.org/packages/Chrison.UnifiSharp/)
+[](https://github.com/Chrison-dev/UnifiSharp/actions/workflows/ci.yml)
+[](https://github.com/Fallout-build/Fallout)
+[](LICENSE)
+
A C# client for the **UniFi Network API** — **mostly code-generated** from
Ubiquiti's official OpenAPI spec, with a thin hand-written runtime for auth and
transport. Sibling to [ProxmoxSharp](https://github.com/Chrison-dev/ProxmoxSharp);
built to bring the UniFi-managed network under the homelab's C#-native IaC. See
-[ADR-0003](https://github.com/Chrison-dev/Homelab/blob/main/docs/adr/ADR-0003-unifisharp.md).
+[ADR-0003](https://github.com/Chrison-Homelab/Homelab/blob/main/docs/adr/ADR-0003-unifisharp.md).
+
+```sh
+dotnet add package Chrison.UnifiSharp
+```
## Approach
-```
-UniFi Network OpenAPI spec (console Settings → Integrations / beezly mirror)
- │ Kiota (pinned dotnet tool) → generated C# client (UnifiSharp.Api)
- ▼
-UnifiSharp = hand-written runtime over it (X-API-KEY auth)
+```mermaid
+flowchart LR
+ SPEC["📜 UniFi OpenAPI 3.1
(console / beezly mirror)"] --> KIOTA["⚙️ Kiota (pinned tool)
generate C# client"]
+ KIOTA --> API["📦 UnifiSharp.Api
generated · tracks UniFi release"]
+ API --> RT["✍️ UnifiSharp
hand-written runtime (X-API-KEY)"]
+ RT --> LEG["🧩 UnifiSharp.Legacy
session-auth write adapter
(port-forwards · firewall · networks)"]
+ classDef gen fill:#e0e7ff,stroke:#4f46e5;
+ class API gen;
```
The UniFi spec is already OpenAPI 3.1, so — unlike ProxmoxSharp — there's **no
diff --git a/src/UnifiSharp/UnifiSharp.csproj b/src/UnifiSharp/UnifiSharp.csproj
index 1e3da81..ee7ef78 100644
--- a/src/UnifiSharp/UnifiSharp.csproj
+++ b/src/UnifiSharp/UnifiSharp.csproj
@@ -6,7 +6,7 @@
enable
- 0.1.0
+ 0.1.1