coding-agent-harness 1.0.2 → 1.0.4

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 (177) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/CONTRIBUTING.md +98 -0
  3. package/README.md +211 -86
  4. package/README.zh-CN.md +54 -34
  5. package/SKILL.md +25 -18
  6. package/docs-release/README.md +9 -5
  7. package/docs-release/architecture/overview.md +17 -5
  8. package/docs-release/architecture/overview.zh-CN.md +9 -5
  9. package/docs-release/assets/dashboard-overview.png +0 -0
  10. package/docs-release/guides/agent-installation.en-US.md +31 -8
  11. package/docs-release/guides/agent-installation.md +34 -9
  12. package/docs-release/guides/contributing.md +100 -0
  13. package/docs-release/guides/contributing.zh-CN.md +99 -0
  14. package/docs-release/guides/document-audience-and-surfaces.en-US.md +3 -2
  15. package/docs-release/guides/document-audience-and-surfaces.md +3 -2
  16. package/docs-release/guides/full-legacy-migration-subagent-strategy.md +2 -2
  17. package/docs-release/guides/full-legacy-migration-subagent-strategy.zh-CN.md +2 -2
  18. package/docs-release/guides/legacy-migration-agent-prompt.md +0 -11
  19. package/docs-release/guides/legacy-migration-agent-prompt.zh-CN.md +0 -11
  20. package/docs-release/guides/migration-playbook.en-US.md +14 -15
  21. package/docs-release/guides/migration-playbook.md +14 -15
  22. package/docs-release/guides/parent-control-repository-pattern.en-US.md +7 -5
  23. package/docs-release/guides/parent-control-repository-pattern.md +7 -5
  24. package/docs-release/guides/preset-development.md +214 -0
  25. package/docs-release/guides/repository-operating-models.en-US.md +5 -4
  26. package/docs-release/guides/repository-operating-models.md +5 -4
  27. package/docs-release/guides/task-state-machine.en-US.md +207 -0
  28. package/docs-release/guides/task-state-machine.md +214 -0
  29. package/docs-release/intl/en-US.md +1 -1
  30. package/docs-release/intl/zh-CN.md +1 -1
  31. package/examples/minimal-project/docs/09-PLANNING/TASKS/demo-task/findings.md +7 -0
  32. package/package.json +8 -3
  33. package/presets/legacy-migration/checks/preset-check.mjs +3 -0
  34. package/presets/legacy-migration/preset.yaml +134 -0
  35. package/presets/legacy-migration/scripts/plan-work-queue.mjs +4 -0
  36. package/presets/legacy-migration/scripts/scaffold-task-contracts.mjs +4 -0
  37. package/presets/legacy-migration/templates/execution_strategy.append.md +18 -0
  38. package/presets/legacy-migration/templates/findings.seed.md +17 -0
  39. package/presets/legacy-migration/templates/review.seed.md +12 -0
  40. package/presets/legacy-migration/templates/task_plan.append.md +9 -0
  41. package/presets/legacy-migration/templates/visual_map.append.md +12 -0
  42. package/presets/legacy-migration/workbench/dashboard-panels.yaml +2 -0
  43. package/presets/legacy-migration/workbench/migration-queue.schema.json +23 -0
  44. package/presets/lesson-sedimentation/preset.yaml +23 -0
  45. package/presets/lesson-sedimentation/templates/prompt.md +23 -0
  46. package/presets/module/preset.yaml +25 -0
  47. package/presets/module/templates/execution_strategy.append.md +8 -0
  48. package/presets/module/templates/task_plan.append.md +17 -0
  49. package/presets/standard-task/preset.yaml +31 -0
  50. package/presets/standard-task/templates/task_plan.append.md +7 -0
  51. package/references/adversarial-review-standard.md +2 -2
  52. package/references/agents-md-pattern.md +2 -2
  53. package/references/delivery-operating-model-standard.md +3 -3
  54. package/references/docs-directory-standard.md +6 -7
  55. package/references/harness-ledger.md +53 -96
  56. package/references/lessons-governance.md +88 -93
  57. package/references/module-parallel-standard.md +14 -14
  58. package/references/planning-loop.md +12 -6
  59. package/references/pull-request-standard.md +118 -0
  60. package/references/repo-governance-standard.md +11 -2
  61. package/references/review-routing-standard.md +7 -1
  62. package/references/ssot-governance.md +67 -59
  63. package/references/taskr-gap-analysis.md +600 -0
  64. package/references/walkthrough-closeout.md +7 -7
  65. package/scripts/check-harness.mjs +40 -301
  66. package/scripts/commands/dashboard-command.mjs +67 -0
  67. package/scripts/commands/migration-command.mjs +96 -0
  68. package/scripts/commands/preset-command.mjs +73 -0
  69. package/scripts/commands/task-command.mjs +327 -0
  70. package/scripts/harness.mjs +55 -260
  71. package/scripts/lib/capability-registry.mjs +66 -8
  72. package/scripts/lib/check-module-parallel.mjs +237 -0
  73. package/scripts/lib/check-profiles.mjs +61 -153
  74. package/scripts/lib/check-task-contracts.mjs +47 -0
  75. package/scripts/lib/core-shared.mjs +10 -0
  76. package/scripts/lib/dashboard-data.mjs +29 -6
  77. package/scripts/lib/dashboard-workbench.mjs +52 -12
  78. package/scripts/lib/dashboard-writer.mjs +14 -2
  79. package/scripts/lib/git-status-summary.mjs +46 -0
  80. package/scripts/lib/governance-index-generator.mjs +174 -0
  81. package/scripts/lib/governance-sync.mjs +514 -0
  82. package/scripts/lib/governance-table-boundary.mjs +175 -0
  83. package/scripts/lib/harness-core.mjs +5 -0
  84. package/scripts/lib/lesson-maintenance.mjs +36 -29
  85. package/scripts/lib/migration-support.mjs +1 -1
  86. package/scripts/lib/preset-audit-contracts.mjs +37 -0
  87. package/scripts/lib/preset-engine.mjs +497 -0
  88. package/scripts/lib/preset-registry.mjs +627 -0
  89. package/scripts/lib/preset-resource-contracts.mjs +83 -0
  90. package/scripts/lib/review-confirm-git-gate.mjs +248 -0
  91. package/scripts/lib/status-dashboard-renderer.mjs +102 -0
  92. package/scripts/lib/subagent-authorization-audit.mjs +196 -0
  93. package/scripts/lib/task-completion-consistency.mjs +16 -0
  94. package/scripts/lib/task-index.mjs +93 -0
  95. package/scripts/lib/task-lesson-candidates.mjs +242 -0
  96. package/scripts/lib/task-lesson-sedimentation.mjs +326 -0
  97. package/scripts/lib/task-lifecycle/review-confirm.mjs +101 -0
  98. package/scripts/lib/task-lifecycle/review-gates.mjs +70 -0
  99. package/scripts/lib/task-lifecycle/text-utils.mjs +24 -0
  100. package/scripts/lib/task-lifecycle.mjs +297 -403
  101. package/scripts/lib/task-review-model.mjs +469 -0
  102. package/scripts/lib/task-scanner.mjs +130 -236
  103. package/scripts/lib/task-tombstone-commands.mjs +140 -0
  104. package/scripts/postinstall.mjs +14 -0
  105. package/skills/preset-creator/SKILL.md +179 -0
  106. package/skills/preset-creator/references/complex-task-skeleton/README.md +31 -0
  107. package/skills/preset-creator/references/complex-task-skeleton/artifacts/INDEX.md +12 -0
  108. package/skills/preset-creator/references/complex-task-skeleton/brief.md +32 -0
  109. package/skills/preset-creator/references/complex-task-skeleton/execution_strategy.md +71 -0
  110. package/skills/preset-creator/references/complex-task-skeleton/findings.md +24 -0
  111. package/skills/preset-creator/references/complex-task-skeleton/lesson_candidates.md +70 -0
  112. package/skills/preset-creator/references/complex-task-skeleton/long-running-task-contract.md +76 -0
  113. package/skills/preset-creator/references/complex-task-skeleton/progress.md +33 -0
  114. package/skills/preset-creator/references/complex-task-skeleton/references/INDEX.md +13 -0
  115. package/skills/preset-creator/references/complex-task-skeleton/review.md +107 -0
  116. package/skills/preset-creator/references/complex-task-skeleton/task_plan.md +111 -0
  117. package/skills/preset-creator/references/complex-task-skeleton/visual_map.md +50 -0
  118. package/skills/preset-creator/references/preset-package-skeleton.md +296 -0
  119. package/templates/AGENTS.md.template +19 -15
  120. package/templates/dashboard/assets/app-src/00-state.js +1 -0
  121. package/templates/dashboard/assets/app-src/10-router.js +2 -1
  122. package/templates/dashboard/assets/app-src/20-overview.js +11 -5
  123. package/templates/dashboard/assets/app-src/30-tasks.js +92 -246
  124. package/templates/dashboard/assets/app-src/35-task-detail.js +246 -0
  125. package/templates/dashboard/assets/app-src/45-review.js +241 -22
  126. package/templates/dashboard/assets/app-src/50-migration.js +24 -10
  127. package/templates/dashboard/assets/app-src/90-bindings.js +171 -29
  128. package/templates/dashboard/assets/app.css +698 -156
  129. package/templates/dashboard/assets/app.css.manifest.json +9 -0
  130. package/templates/dashboard/assets/app.js +662 -91
  131. package/templates/dashboard/assets/app.manifest.json +1 -0
  132. package/templates/dashboard/assets/css-src/00-foundation.css +342 -0
  133. package/templates/dashboard/assets/css-src/10-panels-flow.css +236 -0
  134. package/templates/dashboard/assets/css-src/20-briefs-controls.css +398 -0
  135. package/templates/dashboard/assets/css-src/30-task-index.css +739 -0
  136. package/templates/dashboard/assets/css-src/35-review-workspace.css +507 -0
  137. package/templates/dashboard/assets/css-src/40-detail-modules-migration.css +427 -0
  138. package/templates/dashboard/assets/css-src/50-responsive-overrides.css +551 -0
  139. package/templates/dashboard/assets/i18n.js +123 -21
  140. package/templates/ledger/Harness-Ledger.md +13 -25
  141. package/templates/lessons/lesson-arch-process-change.md +1 -1
  142. package/templates/lessons/lesson-new-doc.md +1 -1
  143. package/templates/lessons/lesson-ref-change.md +1 -1
  144. package/templates/planning/execution_strategy.md +31 -0
  145. package/templates/planning/lesson_candidates.md +18 -6
  146. package/templates/planning/optional/artifacts/INDEX.md +3 -3
  147. package/templates/planning/optional/references/INDEX.md +3 -3
  148. package/templates/planning/review.md +59 -0
  149. package/templates/planning/task_plan.md +36 -13
  150. package/templates/reference/execution-workflow-standard.md +4 -3
  151. package/templates/reference/pull-request-standard.md +80 -0
  152. package/templates/reference/repo-governance-standard.md +7 -6
  153. package/templates/reference/review-routing-standard.md +6 -0
  154. package/templates/reference/walkthrough-standard.md +2 -1
  155. package/templates/verifier/verifier-output.md +1 -1
  156. package/templates-zh-CN/AGENTS.md.template +20 -16
  157. package/templates-zh-CN/ledger/Harness-Ledger.md +17 -40
  158. package/templates-zh-CN/planning/execution_strategy.md +30 -0
  159. package/templates-zh-CN/planning/lesson_candidates.md +18 -6
  160. package/templates-zh-CN/planning/review.md +59 -1
  161. package/templates-zh-CN/planning/task_plan.md +30 -10
  162. package/templates-zh-CN/reference/adversarial-review-standard.md +1 -1
  163. package/templates-zh-CN/reference/docs-library-standard.md +1 -1
  164. package/templates-zh-CN/reference/execution-workflow-standard.md +4 -3
  165. package/templates-zh-CN/reference/harness-ledger-standard.md +2 -2
  166. package/templates-zh-CN/reference/pull-request-standard.md +106 -0
  167. package/templates-zh-CN/reference/repo-governance-standard.md +4 -3
  168. package/templates-zh-CN/reference/review-routing-standard.md +8 -1
  169. package/templates-zh-CN/reference/walkthrough-standard.md +3 -2
  170. package/templates-zh-CN/walkthrough/Closeout-SSoT.md +1 -1
  171. package/docs-release/assets/dashboard-overview-en.png +0 -0
  172. package/scripts/smoke-dashboard.mjs +0 -92
  173. package/scripts/test-harness.mjs +0 -1395
  174. package/templates/ssot/Feature-SSoT.md +0 -43
  175. package/templates/ssot/Lessons-SSoT.md +0 -44
  176. package/templates-zh-CN/ssot/Feature-SSoT.md +0 -49
  177. package/templates-zh-CN/ssot/Lessons-SSoT.md +0 -49
@@ -0,0 +1,427 @@
1
+ /* Detail view panels */
2
+ .detail-hero {
3
+ display: flex;
4
+ justify-content: space-between;
5
+ gap: 18px;
6
+ padding: 24px;
7
+ margin-bottom: 20px;
8
+ }
9
+
10
+ .detail-hero > div {
11
+ min-width: 0;
12
+ }
13
+
14
+ .crumbs,
15
+ .eyebrow {
16
+ overflow-wrap: anywhere;
17
+ }
18
+
19
+ .detail-score {
20
+ font-size: 42px;
21
+ font-weight: 800;
22
+ color: var(--accent);
23
+ line-height: 1;
24
+ }
25
+
26
+ .phase-timeline {
27
+ display: grid;
28
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
29
+ gap: 12px;
30
+ margin-bottom: 24px;
31
+ }
32
+
33
+ .phase-timeline h2 {
34
+ grid-column: 1 / -1;
35
+ margin: 0 0 4px;
36
+ font-size: 16px;
37
+ }
38
+
39
+ .phase-step {
40
+ background: var(--paper);
41
+ border: 1px solid var(--line);
42
+ border-radius: 12px;
43
+ padding: 16px;
44
+ box-shadow: var(--shadow);
45
+ transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
46
+ cursor: pointer;
47
+ }
48
+
49
+ .card-header-actions {
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: flex-end;
53
+ gap: 8px;
54
+ min-width: 0;
55
+ }
56
+
57
+ .phase-step:hover {
58
+ transform: translateY(-2px);
59
+ box-shadow: var(--shadow-hover);
60
+ }
61
+
62
+ .phase-step strong {
63
+ font-size: 14px;
64
+ font-weight: 800;
65
+ }
66
+
67
+ .phase-step p {
68
+ color: var(--muted);
69
+ min-height: 42px;
70
+ font-size: 12px;
71
+ margin: 8px 0;
72
+ line-height: 1.4;
73
+ }
74
+
75
+ .detail-grid {
76
+ display: grid;
77
+ grid-template-columns: minmax(0, 1.8fr) minmax(280px, 360px);
78
+ gap: 20px;
79
+ align-items: start;
80
+ }
81
+
82
+ .detail-main {
83
+ display: grid;
84
+ gap: 20px;
85
+ }
86
+
87
+ .doc-section {
88
+ padding: 24px;
89
+ min-width: 0;
90
+ max-width: 100%;
91
+ overflow: hidden;
92
+ }
93
+
94
+ .doc-library {
95
+ padding: 22px;
96
+ }
97
+
98
+ .doc-accordion-list {
99
+ display: grid;
100
+ gap: 10px;
101
+ }
102
+
103
+ .doc-accordion {
104
+ border: 1px solid var(--line);
105
+ border-radius: 10px;
106
+ background: var(--paper-2);
107
+ overflow: clip;
108
+ }
109
+
110
+ .doc-accordion[open] {
111
+ background: var(--paper);
112
+ box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
113
+ }
114
+
115
+ .doc-accordion summary {
116
+ cursor: pointer;
117
+ display: grid;
118
+ grid-template-columns: minmax(120px, max-content) minmax(0, 1fr);
119
+ gap: 12px;
120
+ align-items: center;
121
+ padding: 14px 16px;
122
+ list-style: none;
123
+ }
124
+
125
+ .doc-accordion summary::-webkit-details-marker {
126
+ display: none;
127
+ }
128
+
129
+ .doc-accordion summary::before {
130
+ content: "›";
131
+ width: 20px;
132
+ height: 20px;
133
+ display: inline-grid;
134
+ place-items: center;
135
+ grid-column: 1;
136
+ grid-row: 1;
137
+ margin-right: 8px;
138
+ color: var(--accent);
139
+ transform: rotate(0deg);
140
+ transition: transform 0.2s ease;
141
+ }
142
+
143
+ .doc-accordion[open] summary::before {
144
+ transform: rotate(90deg);
145
+ }
146
+
147
+ .doc-accordion summary span {
148
+ grid-column: 1;
149
+ grid-row: 1;
150
+ padding-left: 28px;
151
+ font-weight: 850;
152
+ color: var(--ink);
153
+ }
154
+
155
+ .doc-accordion summary small {
156
+ min-width: 0;
157
+ overflow: hidden;
158
+ text-overflow: ellipsis;
159
+ white-space: nowrap;
160
+ color: var(--muted);
161
+ font-family: var(--font-mono);
162
+ font-size: 11px;
163
+ }
164
+
165
+ .doc-accordion .markdown {
166
+ border-top: 1px solid var(--line);
167
+ padding: 18px 22px 22px;
168
+ }
169
+
170
+ .detail-side {
171
+ display: grid;
172
+ gap: 16px;
173
+ position: sticky;
174
+ top: 16px;
175
+ }
176
+
177
+ .side-panel {
178
+ padding: 20px;
179
+ min-width: 0;
180
+ max-width: 100%;
181
+ }
182
+
183
+ .side-panel a {
184
+ display: inline-flex;
185
+ margin: 6px 6px 0 0;
186
+ padding: 6px 12px;
187
+ border-radius: 8px;
188
+ background: var(--paper-2);
189
+ border: 1px solid var(--line);
190
+ font-size: 12px;
191
+ font-weight: 700;
192
+ transition: all 0.2s ease;
193
+ }
194
+
195
+ .side-panel a:hover {
196
+ background: var(--accent);
197
+ color: var(--paper);
198
+ border-color: var(--accent);
199
+ }
200
+
201
+ .finding {
202
+ display: grid;
203
+ gap: 4px;
204
+ padding: 10px 0;
205
+ border-bottom: 1px solid var(--line);
206
+ }
207
+
208
+ .finding:last-child {
209
+ border-bottom: none;
210
+ }
211
+
212
+ .finding.open {
213
+ color: var(--danger);
214
+ border-left: 2px solid var(--danger);
215
+ padding-left: 8px;
216
+ }
217
+
218
+ .finding strong {
219
+ font-size: 12px;
220
+ text-transform: uppercase;
221
+ letter-spacing: 0.05em;
222
+ }
223
+
224
+ .finding span {
225
+ font-size: 13px;
226
+ font-weight: 500;
227
+ }
228
+
229
+ /* Module Grid */
230
+ .module-grid {
231
+ display: grid;
232
+ grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
233
+ gap: 16px;
234
+ }
235
+
236
+ .module-card {
237
+ padding: 24px;
238
+ }
239
+
240
+ .module-more {
241
+ display: inline-flex;
242
+ margin-top: 14px;
243
+ padding: 8px 16px;
244
+ border-radius: 999px;
245
+ background: var(--paper-2);
246
+ border: 1px solid var(--line);
247
+ font-size: 12px;
248
+ font-weight: 700;
249
+ transition: all 0.2s ease;
250
+ }
251
+
252
+ .module-more:hover {
253
+ background: var(--accent);
254
+ color: var(--paper);
255
+ border-color: var(--accent);
256
+ }
257
+
258
+ /* Migration workbench */
259
+ .migration-grid {
260
+ display: grid;
261
+ grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
262
+ gap: 12px;
263
+ margin-bottom: 16px;
264
+ }
265
+
266
+ .migration-grid > div,
267
+ .migration-grid > button,
268
+ .lesson {
269
+ background: var(--paper-2);
270
+ color: var(--ink);
271
+ border: 1px solid var(--line);
272
+ border-radius: 10px;
273
+ padding: 16px;
274
+ text-align: left;
275
+ transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
276
+ }
277
+
278
+ .migration-grid > button {
279
+ cursor: pointer;
280
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
281
+ }
282
+
283
+ .migration-grid > button.active,
284
+ .migration-grid > button:hover {
285
+ border-color: var(--accent);
286
+ background: var(--paper);
287
+ transform: translateY(-2px);
288
+ box-shadow: var(--shadow);
289
+ }
290
+
291
+ .migration-grid p {
292
+ margin: 6px 0 0;
293
+ color: var(--muted);
294
+ font-size: 12px;
295
+ }
296
+
297
+ .warning-workbench {
298
+ border-top: 1px solid var(--line);
299
+ padding-top: 20px;
300
+ }
301
+
302
+ .warning-toolbar,
303
+ .pager {
304
+ display: flex;
305
+ align-items: center;
306
+ gap: 10px;
307
+ flex-wrap: wrap;
308
+ }
309
+
310
+ .warning-toolbar {
311
+ justify-content: space-between;
312
+ margin-bottom: 14px;
313
+ color: var(--muted);
314
+ font-size: 13px;
315
+ font-weight: 500;
316
+ }
317
+
318
+ .pager button {
319
+ border: 1px solid var(--line);
320
+ background: var(--paper);
321
+ color: var(--ink);
322
+ border-radius: 999px;
323
+ padding: 6px 14px;
324
+ font-size: 12px;
325
+ font-weight: 700;
326
+ cursor: pointer;
327
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
328
+ }
329
+
330
+ .pager button:disabled {
331
+ opacity: 0.3;
332
+ cursor: not-allowed;
333
+ }
334
+
335
+ .pager button:hover:not(:disabled) {
336
+ background: var(--paper-2);
337
+ border-color: var(--muted);
338
+ }
339
+
340
+ .warning-list {
341
+ display: grid;
342
+ border: 1px solid var(--line);
343
+ border-radius: 12px;
344
+ overflow: hidden;
345
+ box-shadow: var(--shadow);
346
+ }
347
+
348
+ .warning-row {
349
+ display: grid;
350
+ grid-template-columns: minmax(220px, 1.2fr) auto 80px 120px 140px minmax(220px, 1.5fr);
351
+ gap: 12px;
352
+ align-items: center;
353
+ padding: 14px 18px;
354
+ background: var(--paper);
355
+ border-bottom: 1px solid var(--line);
356
+ transition: all 0.2s ease;
357
+ }
358
+
359
+ .warning-row:last-child {
360
+ border-bottom: 0;
361
+ }
362
+
363
+ .warning-row:hover {
364
+ background: var(--paper-2);
365
+ }
366
+
367
+ .warning-row p {
368
+ margin: 0;
369
+ color: var(--muted);
370
+ font-size: 12px;
371
+ font-weight: 500;
372
+ line-height: 1.4;
373
+ }
374
+
375
+ .warning-row strong {
376
+ font-size: 13px;
377
+ font-weight: 800;
378
+ }
379
+
380
+ .lesson + .lesson {
381
+ margin-top: 10px;
382
+ }
383
+
384
+ .lesson:hover {
385
+ transform: translateY(-1px);
386
+ box-shadow: var(--shadow);
387
+ }
388
+
389
+ .health-panel {
390
+ display: grid;
391
+ grid-template-columns: 280px minmax(0, 1fr);
392
+ gap: 24px;
393
+ }
394
+
395
+ .health-lists {
396
+ display: grid;
397
+ gap: 10px;
398
+ }
399
+
400
+ details {
401
+ background: var(--paper-2);
402
+ border: 1px solid var(--line);
403
+ border-radius: 8px;
404
+ padding: 12px 16px;
405
+ transition: all 0.2s ease;
406
+ }
407
+
408
+ details[open] {
409
+ background: var(--paper);
410
+ border-color: var(--accent);
411
+ }
412
+
413
+ details summary {
414
+ font-weight: 700;
415
+ cursor: pointer;
416
+ font-size: 13px;
417
+ }
418
+
419
+ .empty {
420
+ color: var(--muted);
421
+ border: 2px dashed var(--line);
422
+ border-radius: 8px;
423
+ padding: 24px;
424
+ text-align: center;
425
+ font-weight: 500;
426
+ font-size: 13px;
427
+ }