rapidkit 0.25.2 → 0.25.3

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
@@ -87,10 +87,32 @@ npx rapidkit bootstrap [--profile <profile>] [--json]
87
87
  npx rapidkit setup <python|node|go> [--warm-deps]
88
88
  npx rapidkit workspace policy show
89
89
  npx rapidkit workspace policy set <key> <value>
90
+ npx rapidkit doctor
90
91
  npx rapidkit doctor workspace [--fix]
91
92
  npx rapidkit workspace list # Display all workspaces created on this system
92
93
  ```
93
94
 
95
+ ### Command ownership
96
+
97
+ RapidKit keeps the wrapper boundary explicit so users know which layer owns each action.
98
+
99
+ | Command family | Owner | Notes |
100
+ |---|---|---|
101
+ | `create workspace`, `workspace`, `cache`, `mirror` | RapidKit wrapper | Platform-level orchestration |
102
+ | `init` | Wrapper orchestrated | Chooses the right runtime flow for the current project |
103
+ | `dev`, `test`, `build`, `start` | Runtime aware | Delegates to the active project/runtime when available |
104
+ | `doctor` | Wrapper system check | Checks host prerequisites by default |
105
+ | `doctor workspace` | Workspace health | Full workspace scan with project-level details and fixes |
106
+
107
+ Use `npx rapidkit doctor` for a quick host pre-flight and `npx rapidkit doctor workspace` inside a workspace for the full health picture.
108
+
109
+ ### Doctor workspace fix behavior
110
+
111
+ - `npx rapidkit doctor workspace` reuses cached project scans when valid and refreshes evidence under `.rapidkit/reports/doctor-last-run.json`.
112
+ - `npx rapidkit doctor workspace --fix` only executes actionable fix commands.
113
+ - URL-based fixes are recorded as manual guidance (for example, install pages) and are not executed as shell commands.
114
+ - Go project fixes that require `go mod tidy` are skipped when the Go toolchain is not available, with a clear install-and-rerun hint.
115
+
94
116
  ### Project lifecycle
95
117
 
96
118
  ```bash