claudekit-cli 3.36.0 → 3.36.2-dev.1

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.
package/README.md CHANGED
@@ -91,6 +91,9 @@ ck --help
91
91
  # Open config dashboard immediately
92
92
  ck config
93
93
 
94
+ # Expose the dashboard intentionally to your LAN/Tailscale
95
+ ck config --host 0.0.0.0 --no-open
96
+
94
97
  # Command-level help (recommended)
95
98
  ck config --help
96
99
  ck skills --help
@@ -99,6 +102,23 @@ ck commands --help
99
102
  ck migrate --help
100
103
  ```
101
104
 
105
+ ### Config Dashboard Access
106
+
107
+ By default, `ck config` binds the dashboard to `127.0.0.1` for local-only access.
108
+
109
+ Use `--host` when you intentionally want remote access from another device on the same trusted network:
110
+
111
+ ```bash
112
+ # Bind to all interfaces
113
+ ck config --host 0.0.0.0 --no-open
114
+
115
+ # Bind to a specific interface or hostname
116
+ ck config --host 100.88.12.4 --no-open
117
+ ck config --host dashboard.local --no-open
118
+ ```
119
+
120
+ The dashboard still enforces same-origin browser access. Remote access works when you open the UI from the same host/origin that reaches the server, instead of relying on a hardcoded IP allowlist.
121
+
102
122
  ### Create New Project
103
123
 
104
124
  ```bash