x-ipe 1.0.24__py3-none-any.whl → 1.0.25__py3-none-any.whl

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.
Files changed (139) hide show
  1. x_ipe/app.py +25 -3
  2. x_ipe/handlers/terminal_handlers.py +6 -0
  3. x_ipe/handlers/voice_handlers.py +5 -0
  4. x_ipe/resources/copilot-instructions.md +19 -6
  5. x_ipe/resources/skills/lesson-learned/SKILL.md +208 -0
  6. x_ipe/resources/skills/lesson-learned/references/examples.md +238 -0
  7. x_ipe/resources/skills/project-quality-board-management/SKILL.md +135 -298
  8. x_ipe/resources/skills/project-quality-board-management/references/evaluation-principles.md +213 -0
  9. x_ipe/resources/skills/project-quality-board-management/references/evaluation-procedures.md +214 -0
  10. x_ipe/resources/skills/project-quality-board-management/templates/quality-report.md +70 -18
  11. x_ipe/resources/skills/task-execution-guideline/SKILL.md +2 -2
  12. x_ipe/resources/skills/task-execution-guideline/templates/task-record.yaml +1 -1
  13. x_ipe/resources/skills/task-type-code-implementation/SKILL.md +72 -270
  14. x_ipe/resources/skills/task-type-code-implementation/references/implementation-guidelines.md +432 -0
  15. x_ipe/resources/skills/task-type-code-refactor-v2/SKILL.md +127 -353
  16. x_ipe/resources/skills/task-type-code-refactor-v2/references/refactoring-techniques.md +373 -0
  17. x_ipe/resources/skills/task-type-feature-breakdown/SKILL.md +31 -243
  18. x_ipe/resources/skills/task-type-feature-breakdown/references/breakdown-guidelines.md +330 -0
  19. x_ipe/resources/skills/task-type-feature-refinement/SKILL.md +27 -180
  20. x_ipe/resources/skills/task-type-feature-refinement/references/specification-writing-guide.md +267 -0
  21. x_ipe/resources/skills/task-type-idea-mockup/SKILL.md +38 -276
  22. x_ipe/resources/skills/task-type-idea-mockup/references/mockup-guidelines.md +299 -0
  23. x_ipe/resources/skills/task-type-idea-to-architecture/SKILL.md +20 -218
  24. x_ipe/resources/skills/task-type-idea-to-architecture/references/architecture-patterns.md +342 -0
  25. x_ipe/resources/skills/task-type-ideation/SKILL.md +10 -266
  26. x_ipe/resources/skills/task-type-ideation/references/folder-naming-guide.md +55 -0
  27. x_ipe/resources/skills/task-type-ideation/references/tool-usage-guide.md +236 -0
  28. x_ipe/resources/skills/task-type-ideation-v2/SKILL.md +488 -0
  29. x_ipe/resources/skills/task-type-ideation-v2/references/examples.md +377 -0
  30. x_ipe/resources/skills/task-type-ideation-v2/references/folder-naming-guide.md +74 -0
  31. x_ipe/resources/skills/task-type-ideation-v2/references/tool-usage-guide.md +145 -0
  32. x_ipe/resources/skills/task-type-ideation-v2/references/visualization-guide.md +160 -0
  33. x_ipe/resources/skills/task-type-ideation-v2/templates/idea-summary.md +86 -0
  34. x_ipe/resources/skills/task-type-refactoring-analysis/SKILL.md +83 -145
  35. x_ipe/resources/skills/task-type-refactoring-analysis/references/output-schema.md +172 -0
  36. x_ipe/resources/skills/task-type-technical-design/SKILL.md +28 -214
  37. x_ipe/resources/skills/task-type-technical-design/references/design-templates.md +422 -0
  38. x_ipe/resources/skills/task-type-test-generation/SKILL.md +47 -332
  39. x_ipe/resources/skills/task-type-test-generation/references/test-patterns.md +368 -0
  40. x_ipe/resources/skills/tool-tracing-creator/SKILL.md +312 -0
  41. x_ipe/resources/skills/tool-tracing-creator/references/examples.md +324 -0
  42. x_ipe/resources/skills/tool-tracing-instrumentation/SKILL.md +373 -0
  43. x_ipe/resources/skills/tool-tracing-instrumentation/references/examples.md +264 -0
  44. x_ipe/resources/skills/x-ipe-skill-creator-v3/SKILL.md +486 -0
  45. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/10. example-gate-conditions.md +73 -0
  46. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/11. reference-quality-standards.md +127 -0
  47. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/2. reference-section-order.md +127 -0
  48. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/3. example-step-based-code-review.md +84 -0
  49. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/4. example-step-based-feature-implementation.md +113 -0
  50. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/5. example-function-based-validation.md +73 -0
  51. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/6. example-function-based-analysis.md +94 -0
  52. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/7. example-task-io-code-implementation.md +36 -0
  53. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/8. example-structured-summary.md +43 -0
  54. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/9. example-dor-dod.md +77 -0
  55. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/examples.md +429 -0
  56. x_ipe/resources/skills/x-ipe-skill-creator-v3/references/skill-general-guidelines-v2.md +611 -0
  57. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-meta.md +153 -0
  58. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-task-based.md +324 -0
  59. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-task-category.md +109 -0
  60. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/skill-meta-x-ipe-tool.md +205 -0
  61. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-meta.md +334 -0
  62. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-task-based.md +279 -0
  63. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-tool.md +175 -0
  64. x_ipe/resources/skills/x-ipe-skill-creator-v3/templates/x-ipe-workflow-orchestration.md +329 -0
  65. x_ipe/resources/skills/x-ipe-task-based-ideation/SKILL.md +487 -0
  66. x_ipe/resources/skills/x-ipe-task-based-ideation/references/examples.md +377 -0
  67. x_ipe/resources/skills/x-ipe-task-based-ideation/references/folder-naming-guide.md +74 -0
  68. x_ipe/resources/skills/x-ipe-task-based-ideation/references/tool-usage-guide.md +145 -0
  69. x_ipe/resources/skills/x-ipe-task-based-ideation/references/visualization-guide.md +160 -0
  70. x_ipe/resources/skills/x-ipe-task-based-ideation/templates/idea-summary.md +86 -0
  71. x_ipe/routes/__init__.py +2 -0
  72. x_ipe/routes/ideas_routes.py +17 -0
  73. x_ipe/routes/kb_routes.py +80 -0
  74. x_ipe/routes/main_routes.py +18 -0
  75. x_ipe/routes/project_routes.py +7 -0
  76. x_ipe/routes/proxy_routes.py +2 -0
  77. x_ipe/routes/quality_evaluation_routes.py +193 -0
  78. x_ipe/routes/settings_routes.py +6 -0
  79. x_ipe/routes/tools_routes.py +6 -0
  80. x_ipe/routes/tracing_routes.py +232 -0
  81. x_ipe/routes/uiux_feedback_routes.py +30 -0
  82. x_ipe/services/__init__.py +5 -0
  83. x_ipe/services/config_service.py +6 -0
  84. x_ipe/services/file_service.py +20 -0
  85. x_ipe/services/homepage_service.py +160 -0
  86. x_ipe/services/ideas_service.py +19 -0
  87. x_ipe/services/kb_service.py +378 -0
  88. x_ipe/services/proxy_service.py +4 -0
  89. x_ipe/services/settings_service.py +13 -0
  90. x_ipe/services/skills_service.py +4 -0
  91. x_ipe/services/terminal_service.py +24 -0
  92. x_ipe/services/themes_service.py +4 -0
  93. x_ipe/services/tools_config_service.py +4 -0
  94. x_ipe/services/tracing_service.py +333 -0
  95. x_ipe/services/uiux_feedback_service.py +32 -0
  96. x_ipe/services/voice_input_service_v2.py +11 -0
  97. x_ipe/static/css/base.css +7 -0
  98. x_ipe/static/css/homepage-infinity.css +330 -0
  99. x_ipe/static/css/kb-core.css +301 -0
  100. x_ipe/static/css/quality-evaluation.css +345 -0
  101. x_ipe/static/css/sidebar.css +14 -4
  102. x_ipe/static/css/terminal.css +1 -0
  103. x_ipe/static/css/tracing-dashboard.css +796 -0
  104. x_ipe/static/css/workplace.css +20 -0
  105. x_ipe/static/img/homepage-infinity-loop.png +0 -0
  106. x_ipe/static/js/features/homepage-infinity.js +314 -0
  107. x_ipe/static/js/features/kb-core.js +371 -0
  108. x_ipe/static/js/features/quality-evaluation.js +387 -0
  109. x_ipe/static/js/features/sidebar.js +255 -12
  110. x_ipe/static/js/features/tracing-dashboard.js +855 -0
  111. x_ipe/static/js/features/tracing-graph.js +1031 -0
  112. x_ipe/static/js/features/tree-search.js +6 -2
  113. x_ipe/static/js/features/workplace.js +200 -6
  114. x_ipe/static/js/init.js +76 -0
  115. x_ipe/static/js/uiux-feedback.js +18 -2
  116. x_ipe/templates/base.html +19 -0
  117. x_ipe/templates/index.html +7 -1
  118. x_ipe/templates/knowledge-base.html +110 -0
  119. x_ipe/templates/workplace.html +4 -0
  120. x_ipe/tracing/__init__.py +37 -0
  121. x_ipe/tracing/buffer.py +135 -0
  122. x_ipe/tracing/context.py +125 -0
  123. x_ipe/tracing/decorator.py +288 -0
  124. x_ipe/tracing/middleware.py +197 -0
  125. x_ipe/tracing/parser.py +235 -0
  126. x_ipe/tracing/redactor.py +111 -0
  127. x_ipe/tracing/writer.py +122 -0
  128. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/METADATA +2 -2
  129. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/RECORD +132 -62
  130. x_ipe/resources/skills/x-ipe-skill-creator/SKILL.md +0 -329
  131. x_ipe/resources/skills/x-ipe-skill-creator/references/output-patterns.md +0 -169
  132. x_ipe/resources/skills/x-ipe-skill-creator/references/skill-structure.md +0 -162
  133. x_ipe/resources/skills/x-ipe-skill-creator/references/workflows.md +0 -110
  134. x_ipe/resources/skills/x-ipe-skill-creator/templates/references/examples.md +0 -113
  135. x_ipe/resources/skills/x-ipe-skill-creator/templates/skill-category-skill.md +0 -296
  136. x_ipe/resources/skills/x-ipe-skill-creator/templates/task-type-skill.md +0 -269
  137. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/WHEEL +0 -0
  138. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/entry_points.txt +0 -0
  139. {x_ipe-1.0.24.dist-info → x_ipe-1.0.25.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,345 @@
1
+ /**
2
+ * FEATURE-024: Project Quality Evaluation UI Styles
3
+ *
4
+ * Styles for the quality evaluation view in Workplace.
5
+ */
6
+
7
+ /* =============================================================================
8
+ CSS Variables - Quality Theme
9
+ ============================================================================= */
10
+
11
+ :root {
12
+ --quality-primary: #0d9488;
13
+ --quality-primary-light: #14b8a6;
14
+ --quality-primary-dark: #0f766e;
15
+ --quality-bg: #f0fdfa;
16
+ --quality-border: #99f6e4;
17
+
18
+ /* Metric status colors */
19
+ --quality-status-good: #22c55e;
20
+ --quality-status-warn: #f59e0b;
21
+ --quality-status-bad: #ef4444;
22
+ }
23
+
24
+ /* =============================================================================
25
+ Main Container
26
+ ============================================================================= */
27
+
28
+ .quality-eval-view {
29
+ display: flex;
30
+ flex-direction: column;
31
+ height: 100%;
32
+ background: var(--bs-body-bg);
33
+ }
34
+
35
+ /* =============================================================================
36
+ Action Bar
37
+ ============================================================================= */
38
+
39
+ .quality-action-bar {
40
+ display: flex;
41
+ justify-content: flex-end;
42
+ align-items: center;
43
+ gap: 0.5rem;
44
+ padding: 0.75rem 1rem;
45
+ background: var(--bs-tertiary-bg);
46
+ border-bottom: 1px solid var(--bs-border-color);
47
+ }
48
+
49
+ .quality-action-bar .btn-evaluate {
50
+ background: var(--quality-primary);
51
+ border-color: var(--quality-primary);
52
+ color: white;
53
+ display: flex;
54
+ align-items: center;
55
+ gap: 0.375rem;
56
+ font-weight: 500;
57
+ }
58
+
59
+ .quality-action-bar .btn-evaluate:hover {
60
+ background: var(--quality-primary-dark);
61
+ border-color: var(--quality-primary-dark);
62
+ }
63
+
64
+ /* Refactoring Dropdown */
65
+ .quality-action-bar .dropdown-refactoring {
66
+ position: relative;
67
+ }
68
+
69
+ .quality-action-bar .dropdown-refactoring .btn-refactoring {
70
+ background: transparent;
71
+ border: 1px solid var(--bs-border-color);
72
+ color: var(--bs-body-color);
73
+ display: flex;
74
+ align-items: center;
75
+ gap: 0.375rem;
76
+ }
77
+
78
+ .quality-action-bar .dropdown-refactoring .btn-refactoring:hover {
79
+ background: var(--bs-secondary-bg);
80
+ }
81
+
82
+ .quality-action-bar .dropdown-refactoring .dropdown-menu {
83
+ display: none;
84
+ position: absolute;
85
+ top: 100%;
86
+ right: 0;
87
+ min-width: 220px;
88
+ background: var(--bs-body-bg);
89
+ border: 1px solid var(--bs-border-color);
90
+ border-radius: 0.375rem;
91
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
92
+ z-index: 1000;
93
+ padding: 0.25rem 0;
94
+ margin-top: 2px;
95
+ }
96
+
97
+ .quality-action-bar .dropdown-refactoring:hover .dropdown-menu {
98
+ display: block;
99
+ }
100
+
101
+ .quality-action-bar .dropdown-menu .dropdown-item {
102
+ display: flex;
103
+ align-items: center;
104
+ gap: 0.5rem;
105
+ padding: 0.5rem 0.75rem;
106
+ color: var(--bs-body-color);
107
+ text-decoration: none;
108
+ cursor: pointer;
109
+ }
110
+
111
+ .quality-action-bar .dropdown-menu .dropdown-item:hover {
112
+ background: var(--bs-secondary-bg);
113
+ }
114
+
115
+ .quality-action-bar .dropdown-menu .dropdown-item i {
116
+ width: 1rem;
117
+ text-align: center;
118
+ color: var(--bs-secondary-color);
119
+ }
120
+
121
+ .quality-action-bar .dropdown-menu .dropdown-divider {
122
+ height: 0;
123
+ margin: 0.25rem 0;
124
+ border-top: 1px solid var(--bs-border-color);
125
+ }
126
+
127
+ /* =============================================================================
128
+ Version Timeline
129
+ ============================================================================= */
130
+
131
+ .quality-version-timeline {
132
+ display: flex;
133
+ gap: 0;
134
+ padding: 0 1rem;
135
+ background: var(--bs-tertiary-bg);
136
+ border-bottom: 1px solid var(--bs-border-color);
137
+ }
138
+
139
+ .quality-version-tab {
140
+ padding: 0.625rem 1rem;
141
+ cursor: pointer;
142
+ border-bottom: 2px solid transparent;
143
+ color: var(--bs-secondary-color);
144
+ font-size: 0.875rem;
145
+ display: flex;
146
+ flex-direction: column;
147
+ align-items: center;
148
+ gap: 0.125rem;
149
+ transition: all 0.15s ease;
150
+ }
151
+
152
+ .quality-version-tab:hover {
153
+ color: var(--bs-body-color);
154
+ background: var(--bs-secondary-bg);
155
+ }
156
+
157
+ .quality-version-tab.active {
158
+ color: var(--quality-primary);
159
+ border-bottom-color: var(--quality-primary);
160
+ font-weight: 500;
161
+ }
162
+
163
+ .quality-version-tab .version-number {
164
+ font-weight: 500;
165
+ }
166
+
167
+ .quality-version-tab .version-date {
168
+ font-size: 0.75rem;
169
+ color: var(--bs-secondary-color);
170
+ }
171
+
172
+ .quality-version-tab.active .version-date {
173
+ color: var(--quality-primary);
174
+ opacity: 0.8;
175
+ }
176
+
177
+ /* =============================================================================
178
+ Markdown Preview
179
+ ============================================================================= */
180
+
181
+ .quality-markdown-preview {
182
+ flex: 1;
183
+ overflow-y: auto;
184
+ padding: 1.5rem;
185
+ }
186
+
187
+ .quality-markdown-content {
188
+ max-width: 900px;
189
+ margin: 0 auto;
190
+ font-size: 0.9375rem;
191
+ line-height: 1.7;
192
+ }
193
+
194
+ .quality-markdown-content h1 {
195
+ font-size: 1.75rem;
196
+ font-weight: 600;
197
+ margin-bottom: 1rem;
198
+ padding-bottom: 0.5rem;
199
+ border-bottom: 2px solid var(--quality-border);
200
+ color: var(--quality-primary-dark);
201
+ }
202
+
203
+ .quality-markdown-content h2 {
204
+ font-size: 1.375rem;
205
+ font-weight: 600;
206
+ margin-top: 1.5rem;
207
+ margin-bottom: 0.75rem;
208
+ color: var(--bs-heading-color);
209
+ }
210
+
211
+ .quality-markdown-content h3 {
212
+ font-size: 1.125rem;
213
+ font-weight: 600;
214
+ margin-top: 1.25rem;
215
+ margin-bottom: 0.5rem;
216
+ }
217
+
218
+ .quality-markdown-content table {
219
+ width: 100%;
220
+ border-collapse: collapse;
221
+ margin: 1rem 0;
222
+ font-size: 0.875rem;
223
+ }
224
+
225
+ .quality-markdown-content table th,
226
+ .quality-markdown-content table td {
227
+ padding: 0.625rem 0.75rem;
228
+ border: 1px solid var(--bs-border-color);
229
+ text-align: left;
230
+ }
231
+
232
+ .quality-markdown-content table th {
233
+ background: var(--bs-tertiary-bg);
234
+ font-weight: 600;
235
+ }
236
+
237
+ .quality-markdown-content table tr:hover {
238
+ background: var(--bs-secondary-bg);
239
+ }
240
+
241
+ .quality-markdown-content code {
242
+ background: var(--bs-tertiary-bg);
243
+ padding: 0.125rem 0.375rem;
244
+ border-radius: 0.25rem;
245
+ font-size: 0.875em;
246
+ }
247
+
248
+ .quality-markdown-content pre {
249
+ background: var(--bs-tertiary-bg);
250
+ padding: 1rem;
251
+ border-radius: 0.375rem;
252
+ overflow-x: auto;
253
+ margin: 1rem 0;
254
+ }
255
+
256
+ .quality-markdown-content pre code {
257
+ background: transparent;
258
+ padding: 0;
259
+ }
260
+
261
+ .quality-markdown-content ul,
262
+ .quality-markdown-content ol {
263
+ padding-left: 1.5rem;
264
+ margin: 0.5rem 0;
265
+ }
266
+
267
+ .quality-markdown-content li {
268
+ margin: 0.25rem 0;
269
+ }
270
+
271
+ /* =============================================================================
272
+ Empty State
273
+ ============================================================================= */
274
+
275
+ .quality-empty-state {
276
+ display: flex;
277
+ flex-direction: column;
278
+ align-items: center;
279
+ justify-content: center;
280
+ height: 100%;
281
+ padding: 3rem;
282
+ text-align: center;
283
+ }
284
+
285
+ .quality-empty-icon {
286
+ width: 80px;
287
+ height: 80px;
288
+ border-radius: 50%;
289
+ background: var(--quality-bg);
290
+ display: flex;
291
+ align-items: center;
292
+ justify-content: center;
293
+ margin-bottom: 1.5rem;
294
+ }
295
+
296
+ .quality-empty-icon i {
297
+ font-size: 2.5rem;
298
+ color: var(--quality-primary);
299
+ }
300
+
301
+ .quality-empty-title {
302
+ font-size: 1.25rem;
303
+ font-weight: 600;
304
+ margin-bottom: 0.5rem;
305
+ color: var(--bs-heading-color);
306
+ }
307
+
308
+ .quality-empty-desc {
309
+ color: var(--bs-secondary-color);
310
+ margin-bottom: 1.5rem;
311
+ max-width: 400px;
312
+ }
313
+
314
+ .quality-empty-state .btn-evaluate {
315
+ background: var(--quality-primary);
316
+ border-color: var(--quality-primary);
317
+ color: white;
318
+ display: flex;
319
+ align-items: center;
320
+ gap: 0.375rem;
321
+ padding: 0.625rem 1.25rem;
322
+ font-weight: 500;
323
+ }
324
+
325
+ .quality-empty-state .btn-evaluate:hover {
326
+ background: var(--quality-primary-dark);
327
+ border-color: var(--quality-primary-dark);
328
+ }
329
+
330
+ /* =============================================================================
331
+ Loading State
332
+ ============================================================================= */
333
+
334
+ .quality-loading {
335
+ display: flex;
336
+ align-items: center;
337
+ justify-content: center;
338
+ height: 100%;
339
+ }
340
+
341
+ .quality-loading .spinner-border {
342
+ width: 2rem;
343
+ height: 2rem;
344
+ color: var(--quality-primary);
345
+ }
@@ -126,12 +126,22 @@
126
126
  cursor: pointer;
127
127
  user-select: none;
128
128
  transition: background-color 0.15s;
129
+ background-color: rgba(49, 50, 68, 0.35);
130
+ border-radius: 6px;
131
+ margin: 2px 8px;
129
132
  }
130
133
 
131
134
  .nav-section-header:hover {
132
135
  background-color: var(--sidebar-hover);
133
136
  }
134
137
 
138
+ /* Child items under sections - no background */
139
+ .nav-section-header.sidebar-child {
140
+ background-color: transparent;
141
+ border-radius: 0;
142
+ margin: 0;
143
+ }
144
+
135
145
  .nav-section-header i {
136
146
  margin-right: 0.5rem;
137
147
  font-size: 0.9rem;
@@ -146,14 +156,14 @@
146
156
  transform: rotate(-90deg);
147
157
  }
148
158
 
149
- /* Workplace header - special styling */
159
+ /* Workplace header */
150
160
  .nav-workplace-header {
151
- background-color: rgba(255, 193, 7, 0.1);
152
- border-left: 3px solid #ffc107;
161
+ background-color: transparent;
162
+ border-left: none;
153
163
  }
154
164
 
155
165
  .nav-workplace-header:hover {
156
- background-color: rgba(255, 193, 7, 0.2);
166
+ background-color: var(--sidebar-hover);
157
167
  }
158
168
 
159
169
  .nav-section-content {
@@ -25,6 +25,7 @@
25
25
  /* Expanded state */
26
26
  .terminal-panel.expanded {
27
27
  height: 300px;
28
+ flex-shrink: 0; /* Prevent flex container from shrinking panel below set height */
28
29
  }
29
30
 
30
31
  /* Zen mode - full screen overlay */