feat: enhance project documentation with new overview diagrams, commercialization roadmap, and technical debt backlog.

This commit is contained in:
2569718930@qq.com
2026-03-11 11:45:57 +08:00
parent 35345a1b04
commit e89fdb7e09
6 changed files with 185 additions and 115 deletions
+27 -14
View File
@@ -7,20 +7,33 @@ Purpose: keep engineering debt explicit while shipping production features.
## 1. Debt Landscape
```mermaid
mindmap
root((Tech Debt))
"Architecture"
"Monolithic bot entry"
"Shared runtime coupling"
"Product Infra"
"Entitlement hardening"
"Subscription persistence"
"Quality"
"Replay harness"
"Broader regression tests"
"Observability"
"Alert evidence trace"
"SLO dashboards"
flowchart TD
A["Tech Debt"]
subgraph AR["Architecture"]
AR1["Monolithic bot entry"]
AR2["Shared runtime coupling"]
end
subgraph PI["Product Infra"]
PI1["Entitlement hardening"]
PI2["Subscription persistence"]
end
subgraph Q["Quality"]
Q1["Replay harness"]
Q2["Broader regression tests"]
end
subgraph O["Observability"]
O1["Alert evidence trace"]
O2["SLO dashboards"]
end
A --> AR
A --> PI
A --> Q
A --> O
```
Current system health estimate: **84% stable / 16% debt**.