dorkos 0.12.0 → 0.13.0

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
@@ -81,6 +81,7 @@ dorkos config # Show all settings
81
81
  dorkos config set <key> <val> # Update a setting
82
82
  dorkos init # Interactive setup wizard
83
83
  dorkos init --yes # Accept all defaults
84
+ dorkos cleanup # Remove all DorkOS data
84
85
  ```
85
86
 
86
87
  ### Flags
@@ -143,6 +144,24 @@ docker run --rm -p 4242:4242 \
143
144
  dorkos
144
145
  ```
145
146
 
147
+ ## Updating
148
+
149
+ DorkOS checks for new versions on startup and displays an update notice when one is available. Check your current version:
150
+
151
+ ```bash
152
+ dorkos --version
153
+ ```
154
+
155
+ Update to the latest release:
156
+
157
+ ```bash
158
+ npm install -g dorkos@latest
159
+ # or
160
+ pnpm add -g dorkos@latest
161
+ ```
162
+
163
+ For Homebrew, Docker, and other update methods, see the [full upgrade guide](https://dorkos.ai/docs/getting-started/installation#updating).
164
+
146
165
  ## API Documentation
147
166
 
148
167
  Interactive API docs at `/api/docs` (Scalar UI) and raw OpenAPI spec at `/api/openapi.json`.