umans-gate 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.6] - 2026-07-14
11
+
12
+ ### Added
13
+
14
+ - **Service mode display**: the upstream `/v1/usage` `service_mode` field
15
+ is now parsed and surfaced in the dashboard as a badge in the gate
16
+ status bar. Shows the current mode (e.g. `normal`, `interactive`,
17
+ `degraded`) and optional `resets_at` timestamp in the tooltip. Falls
18
+ back to `normal` when absent or on fetch failure.
19
+
10
20
  ## [0.1.5] - 2026-07-14
11
21
 
12
22
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umans-gate",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "LLM capture proxy with Anthropic cache_control TTL stamping, vision handoff, concurrency gating, rate limiting, and a live inspection dashboard",
5
5
  "repository": { "type": "git", "url": "git+https://github.com/codegiveness/umans-gate.git" },
6
6
  "homepage": "https://github.com/codegiveness/umans-gate#readme",
@@ -11,11 +11,11 @@
11
11
  "engines": { "node": ">=18.0.0" },
12
12
  "keywords": ["llm", "proxy", "capture", "anthropic", "openai", "cache-control", "ttl", "inspector", "debugger", "websocket", "claude", "prompt-engineering", "observability", "sqlite", "bun", "developer-tools", "api-proxy", "prompt-caching"],
13
13
  "optionalDependencies": {
14
- "@codegiveness/umans-gate-darwin-arm64": "0.1.5",
15
- "@codegiveness/umans-gate-darwin-x64": "0.1.5",
16
- "@codegiveness/umans-gate-linux-x64": "0.1.5",
17
- "@codegiveness/umans-gate-linux-arm64": "0.1.5",
18
- "@codegiveness/umans-gate-win32-x64": "0.1.5",
19
- "@codegiveness/umans-gate-win32-arm64": "0.1.5"
14
+ "@codegiveness/umans-gate-darwin-arm64": "0.1.6",
15
+ "@codegiveness/umans-gate-darwin-x64": "0.1.6",
16
+ "@codegiveness/umans-gate-linux-x64": "0.1.6",
17
+ "@codegiveness/umans-gate-linux-arm64": "0.1.6",
18
+ "@codegiveness/umans-gate-win32-x64": "0.1.6",
19
+ "@codegiveness/umans-gate-win32-arm64": "0.1.6"
20
20
  }
21
21
  }