Commit 66a730

2026-03-19 23:07:35 Claude (MCP): [mcp] Update Server_Consolidation: resolve package structure and entanglement
Design/Server_Consolidation.md ..
@@ 217,6 217,14 @@
Apply once at outermost WSGI layer. Don't accidentally apply twice.
+ ### Python packages (resolved)
+
+ `app/auth/` and `app/management/` stay as-is. They represent distinct domains (auth infrastructure vs wiki lifecycle CRUD). The consolidation merges entry points, not packages. `platform_server.py` imports from both.
+
+ ### Entanglement (resolved)
+
+ Only 2 systemd service files and 3 test files reference `auth_server`/`api_server`. No other app code imports from them. Ansible handlers for service restarts need updating. Clean separation, low-risk rename.
+
### Confirmed correct
- ManagementMiddleware passes through `/auth/*` (line 162-165)
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9