@templmf/temp-solf-lmf 0.0.20 → 0.0.24
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/AI/345/216/237/347/224/237/346/200/273/347/273/22320251216-2(/347/273/231/345/237/272/347/241/200/347/240/224/345/217/221).pptx +0 -0
- package/package.json +1 -1
- package/test.md +117 -0
- package//344/272/244/344/272/222/346/236/266/346/236/204-/347/253/257/344/276/247.pptx +0 -0
- package//344/272/244/344/272/222/346/236/266/346/236/204.pptx +0 -0
- package//347/253/257/344/276/247/347/233/221/346/216/247&/346/262/273/347/220/206.pptx +0 -0
- package//351/231/204/344/273/266./346/236/266/346/236/204/357/274/210/347/273/231/346/236/266/346/236/204/357/274/211.pptx +0 -0
- package/gitlens-17.7.1.vsix +0 -0
|
Binary file
|
package/package.json
CHANGED
package/test.md
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
graph TB
|
|
2
|
+
%% 定义样式
|
|
3
|
+
classDef container fill:#f5f7fa,stroke:#333,stroke-width:2px,color:#333,rx:5,ry:5;
|
|
4
|
+
classDef designStage fill:#e3f2fd,stroke:#1565c0,stroke-width:2px,color:#0d47a1;
|
|
5
|
+
classDef engineeringStage fill:#fff3e0,stroke:#e65100,stroke-width:2px,color:#bf360c;
|
|
6
|
+
classDef runtimeStage fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px,color:#1b5e20;
|
|
7
|
+
classDef foundation fill:#eceff1,stroke:#546e7a,stroke-width:1px,stroke-dasharray: 5 5,color:#37474f;
|
|
8
|
+
classDef feedback stroke:#d32f2f,stroke-width:2px,stroke-dasharray: 5 5,fill:none;
|
|
9
|
+
|
|
10
|
+
%% 主标题
|
|
11
|
+
Title[B端侧架构建设体系全景图 <br/> (覆盖 App / Web / 小程序)]
|
|
12
|
+
|
|
13
|
+
%% --- 顶层:闭环与迭代 ---
|
|
14
|
+
subgraph FeedbackLoop ["持续迭代与治理闭环"]
|
|
15
|
+
GovernanceReview["治理复盘会议 <br/> (架构师/TL)"]
|
|
16
|
+
SpecOptimization["规范体系升级优化"]
|
|
17
|
+
end
|
|
18
|
+
style FeedbackLoop fill:#fff,stroke:#d32f2f,stroke-width:1px,stroke-dasharray: 5 5
|
|
19
|
+
|
|
20
|
+
%% --- 主体流程 ---
|
|
21
|
+
subgraph MainFlow ["全生命周期架构治理流程"]
|
|
22
|
+
direction LR
|
|
23
|
+
|
|
24
|
+
%% 阶段一:设计态(规则与规范确立)
|
|
25
|
+
subgraph DesignPhase ["阶段一:设计态 <br/> (立法:规则与规范确立)"]
|
|
26
|
+
class DesignPhase designStage
|
|
27
|
+
direction TB
|
|
28
|
+
|
|
29
|
+
subgraph SpecSystem ["规范体系建设"]
|
|
30
|
+
ArchPattern["架构模式规范 <br/> (MVVM/Clean Arch/模块化/组件化协议)"]
|
|
31
|
+
TechStack["技术栈选型管理 <br/> (语言版本/框架基线/依赖准入库)"]
|
|
32
|
+
CodeStyle["代码风格与质量规范 <br/> (Lint规则/命名/注释/复杂度阈值)"]
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
subgraph StandardLib ["基础设施标准"]
|
|
36
|
+
UIStd["UI/UX 设计中台规范 <br/> (Design Tokens/组件库标准)"]
|
|
37
|
+
PerfStd["性能基线标准 <br/> (启动耗时/FPS/内存水位/包体积目标)"]
|
|
38
|
+
SecurityStd["端侧安全规范 <br/> (数据加密/混淆/隐私合规)"]
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
SpecSystem --> StandardLib
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
%% 阶段二:工程态(流水线卡点与准出)
|
|
45
|
+
subgraph EngineeringPhase ["阶段二:工程态 <br/> (执法:流水线卡点与版本准出)"]
|
|
46
|
+
class EngineeringPhase engineeringStage
|
|
47
|
+
direction TB
|
|
48
|
+
|
|
49
|
+
subgraph DevFlow ["开发与本地卡点 (Pre-commit)"]
|
|
50
|
+
IDEPlugin["IDE 架构规约插件 <br/> (实时提醒)"]
|
|
51
|
+
LocalCheck["本地 Git Hooks <br/> (Lint检查/Commit信息规范)"]
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
subgraph PipelineCI ["CI流水线卡点 (Build & Test)"]
|
|
55
|
+
StaticAnalysis["静态代码与架构扫描 <br/> (Sonar/架构依赖对齐检查/非法调用拦截)"]
|
|
56
|
+
AutoTest Gate["自动化测试门禁 <br/> (单元测试覆盖率/核心UI自动化)"]
|
|
57
|
+
BuildCheck["构建产物分析 <br/> (包体积增量卡点/重复资源检查)"]
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
subgraph ReleaseGate ["版本准出门禁 (Release)"]
|
|
61
|
+
QualityGate["质量准出标准 <br/> (Bug清零/回归测试通过率)"]
|
|
62
|
+
PerfGate["性能基线准出 <br/> (预发布环境性能达标测试)"]
|
|
63
|
+
SecurityGate["安全合规扫描 <br/> (漏洞扫描/隐私合规检测)"]
|
|
64
|
+
Grayscale["灰度发布策略 <br/> (分级发布/回滚预案)"]
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
DevFlow --> PipelineCI --> ReleaseGate
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
%% 阶段三:运行态治理(监控与工单闭环)
|
|
71
|
+
subgraph RuntimePhase ["阶段三:运行态治理 <br/> (司法:监控、治理与工单跟进)"]
|
|
72
|
+
class RuntimePhase runtimeStage
|
|
73
|
+
direction TB
|
|
74
|
+
|
|
75
|
+
subgraph Monitoring ["全链路监控体系 (APM)"]
|
|
76
|
+
StabilityMon["稳定性监控 <br/> (崩溃率/ANR/JS错误/白屏)"]
|
|
77
|
+
PerfMon["性能体验监控 <br/> (首屏时间/网络耗时/卡顿率)"]
|
|
78
|
+
BusinessMon["业务可用性监控 <br/> (关键流程成功率/埋点质量)"]
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
subgraph AlertingTicketing ["告警与工单跟进系统"]
|
|
82
|
+
AlertSystem["智能告警平台 <br/> (分级告警/异常检测算法)"]
|
|
83
|
+
IssueTriage["问题分诊与定级 <br/> (自动归因/指派对应的负责人)"]
|
|
84
|
+
TicketWorkflow["工单流转与SLA <br/> (Jira集成/处理时效考核/Hotfix流程)"]
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
subgraph DataOps ["数据运营与度量"]
|
|
88
|
+
Dashboard["架构健康度大盘 <br/> (评分体系/趋势分析)"]
|
|
89
|
+
PeriodicReport["定期质量报告"]
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
Monitoring --> AlertSystem --> IssueTriage --> TicketWorkflow --> DataOps
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
%% --- 底层:多端基础 ---
|
|
97
|
+
subgraph FoundationLayer ["底层:多端融合基础架构层"]
|
|
98
|
+
class FoundationLayer foundation
|
|
99
|
+
NativeApp["Native App <br/> (iOS / Android / HarmonyOS)"]
|
|
100
|
+
WebH5["Web / H5 / Hybrid <br/> (React / Vue)"]
|
|
101
|
+
MiniProgram["小程序 <br/> (微信/支付宝/其它)"]
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
%% --- 连接关系 ---
|
|
105
|
+
Title --> MainFlow
|
|
106
|
+
DesignPhase ===> EngineeringPhase ===> RuntimePhase
|
|
107
|
+
MainFlow --- FoundationLayer
|
|
108
|
+
|
|
109
|
+
%% 核心闭环反馈路径
|
|
110
|
+
TicketWorkflow -.-> GovernanceReview
|
|
111
|
+
DataOps -.-> GovernanceReview
|
|
112
|
+
GovernanceReview ===>|驱动改进| SpecOptimization
|
|
113
|
+
SpecOptimization -.-|>|更新规则| DesignPhase
|
|
114
|
+
SpecOptimization -.-|>|调整卡点策略| EngineeringPhase
|
|
115
|
+
|
|
116
|
+
%% 样式应用
|
|
117
|
+
class MainFlow container
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/gitlens-17.7.1.vsix
DELETED
|
Binary file
|