ur-agent 1.13.5 → 1.13.7

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.
@@ -0,0 +1,575 @@
1
+ :root {
2
+ --bg: #f6f8f7;
3
+ --surface: #ffffff;
4
+ --surface-2: #eef4f1;
5
+ --ink: #12221e;
6
+ --muted: #586b65;
7
+ --line: #d9e3df;
8
+ --accent: #2f6f63;
9
+ --accent-2: #315f9b;
10
+ --accent-3: #b46b2a;
11
+ --code-bg: #0f1917;
12
+ --code-ink: #eef8f3;
13
+ --shadow: 0 18px 42px rgba(18, 34, 30, 0.09);
14
+ --radius: 8px;
15
+ --sidebar: 292px;
16
+ font-family:
17
+ Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
18
+ sans-serif;
19
+ }
20
+
21
+ * {
22
+ box-sizing: border-box;
23
+ }
24
+
25
+ html {
26
+ scroll-behavior: smooth;
27
+ }
28
+
29
+ body {
30
+ margin: 0;
31
+ background: var(--bg);
32
+ color: var(--ink);
33
+ line-height: 1.55;
34
+ }
35
+
36
+ a {
37
+ color: inherit;
38
+ }
39
+
40
+ code,
41
+ pre {
42
+ font-family:
43
+ "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
44
+ }
45
+
46
+ code {
47
+ padding: 2px 5px;
48
+ border-radius: 5px;
49
+ background: #e9f1ee;
50
+ color: #17342e;
51
+ font-size: 0.92em;
52
+ }
53
+
54
+ pre {
55
+ position: relative;
56
+ margin: 16px 0 0;
57
+ padding: 16px;
58
+ overflow-x: auto;
59
+ color: var(--code-ink);
60
+ background: var(--code-bg);
61
+ border-radius: var(--radius);
62
+ border: 1px solid #21342f;
63
+ font-size: 13px;
64
+ line-height: 1.55;
65
+ }
66
+
67
+ pre code {
68
+ padding: 0;
69
+ background: transparent;
70
+ color: inherit;
71
+ white-space: pre;
72
+ }
73
+
74
+ .skip-link {
75
+ position: fixed;
76
+ top: 12px;
77
+ left: 12px;
78
+ z-index: 100;
79
+ padding: 10px 14px;
80
+ background: var(--ink);
81
+ color: #fff;
82
+ border-radius: var(--radius);
83
+ transform: translateY(-160%);
84
+ }
85
+
86
+ .skip-link:focus {
87
+ transform: translateY(0);
88
+ }
89
+
90
+ .sidebar {
91
+ position: fixed;
92
+ inset: 0 auto 0 0;
93
+ width: var(--sidebar);
94
+ padding: 24px 18px;
95
+ overflow-y: auto;
96
+ background: #fbfcfb;
97
+ border-right: 1px solid var(--line);
98
+ }
99
+
100
+ .brand {
101
+ display: grid;
102
+ grid-template-columns: 48px 1fr;
103
+ gap: 12px;
104
+ align-items: center;
105
+ margin-bottom: 24px;
106
+ }
107
+
108
+ .brand-mark {
109
+ display: grid;
110
+ width: 48px;
111
+ height: 48px;
112
+ place-items: center;
113
+ border-radius: var(--radius);
114
+ color: #fff;
115
+ background: linear-gradient(135deg, #17342e, #2f6f63 65%, #b46b2a);
116
+ font-weight: 800;
117
+ letter-spacing: 0;
118
+ }
119
+
120
+ .brand strong,
121
+ .brand span {
122
+ display: block;
123
+ }
124
+
125
+ .brand strong {
126
+ font-size: 17px;
127
+ }
128
+
129
+ .brand span {
130
+ color: var(--muted);
131
+ font-size: 13px;
132
+ }
133
+
134
+ .search-box {
135
+ display: block;
136
+ margin-bottom: 18px;
137
+ }
138
+
139
+ .search-box span {
140
+ display: block;
141
+ margin-bottom: 7px;
142
+ color: var(--muted);
143
+ font-size: 12px;
144
+ font-weight: 700;
145
+ text-transform: uppercase;
146
+ }
147
+
148
+ .search-box input {
149
+ width: 100%;
150
+ min-height: 40px;
151
+ padding: 10px 12px;
152
+ border: 1px solid var(--line);
153
+ border-radius: var(--radius);
154
+ background: #fff;
155
+ color: var(--ink);
156
+ outline: none;
157
+ }
158
+
159
+ .search-box input:focus {
160
+ border-color: var(--accent);
161
+ box-shadow: 0 0 0 3px rgba(47, 111, 99, 0.14);
162
+ }
163
+
164
+ .nav-list {
165
+ display: grid;
166
+ gap: 4px;
167
+ }
168
+
169
+ .nav-list a {
170
+ display: block;
171
+ padding: 10px 12px;
172
+ color: var(--muted);
173
+ text-decoration: none;
174
+ border-radius: var(--radius);
175
+ font-size: 14px;
176
+ font-weight: 650;
177
+ }
178
+
179
+ .nav-list a:hover,
180
+ .nav-list a.active {
181
+ color: var(--ink);
182
+ background: var(--surface-2);
183
+ }
184
+
185
+ .content {
186
+ margin-left: var(--sidebar);
187
+ min-width: 0;
188
+ }
189
+
190
+ .topbar {
191
+ display: flex;
192
+ justify-content: space-between;
193
+ gap: 32px;
194
+ align-items: flex-end;
195
+ padding: 56px clamp(28px, 5vw, 72px) 36px;
196
+ background:
197
+ linear-gradient(0deg, rgba(246, 248, 247, 1), rgba(246, 248, 247, 0.72)),
198
+ radial-gradient(circle at 78% 20%, rgba(49, 95, 155, 0.1), transparent 34%),
199
+ linear-gradient(120deg, #ffffff 0%, #eef5f2 52%, #f5efe8 100%);
200
+ border-bottom: 1px solid var(--line);
201
+ }
202
+
203
+ .topbar h1 {
204
+ max-width: 760px;
205
+ margin: 0;
206
+ font-size: clamp(38px, 5vw, 72px);
207
+ line-height: 0.98;
208
+ letter-spacing: 0;
209
+ }
210
+
211
+ .lead {
212
+ max-width: 760px;
213
+ margin: 18px 0 0;
214
+ color: var(--muted);
215
+ font-size: 18px;
216
+ }
217
+
218
+ .eyebrow {
219
+ margin: 0 0 10px;
220
+ color: var(--accent);
221
+ font-size: 12px;
222
+ font-weight: 800;
223
+ letter-spacing: 0.08em;
224
+ text-transform: uppercase;
225
+ }
226
+
227
+ .topbar-actions {
228
+ display: flex;
229
+ gap: 10px;
230
+ flex-wrap: wrap;
231
+ }
232
+
233
+ .button {
234
+ display: inline-flex;
235
+ min-height: 40px;
236
+ align-items: center;
237
+ justify-content: center;
238
+ padding: 10px 15px;
239
+ border-radius: var(--radius);
240
+ border: 1px solid var(--accent);
241
+ background: var(--accent);
242
+ color: #fff;
243
+ text-decoration: none;
244
+ font-weight: 750;
245
+ cursor: pointer;
246
+ }
247
+
248
+ .button.secondary {
249
+ background: #fff;
250
+ color: var(--ink);
251
+ border-color: var(--line);
252
+ }
253
+
254
+ .button.compact {
255
+ min-height: 36px;
256
+ padding: 8px 12px;
257
+ }
258
+
259
+ .section {
260
+ padding: 54px clamp(28px, 5vw, 72px);
261
+ border-bottom: 1px solid var(--line);
262
+ }
263
+
264
+ .section-heading {
265
+ max-width: 880px;
266
+ margin-bottom: 26px;
267
+ }
268
+
269
+ .section-heading h2 {
270
+ margin: 0;
271
+ font-size: clamp(28px, 3.6vw, 42px);
272
+ line-height: 1.08;
273
+ letter-spacing: 0;
274
+ }
275
+
276
+ .section-heading p:not(.eyebrow) {
277
+ margin: 12px 0 0;
278
+ color: var(--muted);
279
+ font-size: 16px;
280
+ }
281
+
282
+ .stat-grid,
283
+ .concept-grid,
284
+ .feature-grid,
285
+ .reference-grid,
286
+ .examples-grid {
287
+ display: grid;
288
+ grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
289
+ gap: 14px;
290
+ }
291
+
292
+ .stat-grid article,
293
+ .concept-grid article,
294
+ .feature-card,
295
+ .reference-grid article,
296
+ .example-card,
297
+ .command-card,
298
+ .tutorials article,
299
+ .step,
300
+ .callout {
301
+ background: var(--surface);
302
+ border: 1px solid var(--line);
303
+ border-radius: var(--radius);
304
+ box-shadow: var(--shadow);
305
+ }
306
+
307
+ .stat-grid article,
308
+ .concept-grid article,
309
+ .feature-card,
310
+ .reference-grid article,
311
+ .example-card,
312
+ .command-card {
313
+ padding: 20px;
314
+ }
315
+
316
+ .stat-grid strong,
317
+ .feature-card h3,
318
+ .concept-grid h3,
319
+ .reference-grid h3,
320
+ .example-card h3,
321
+ .command-card h3,
322
+ .tutorials h3 {
323
+ margin: 0 0 8px;
324
+ }
325
+
326
+ .stat-grid span,
327
+ .feature-card p,
328
+ .concept-grid p,
329
+ .reference-grid p,
330
+ .example-card p,
331
+ .command-card p,
332
+ .tutorials p,
333
+ .tutorials li {
334
+ color: var(--muted);
335
+ }
336
+
337
+ .steps {
338
+ display: grid;
339
+ grid-template-columns: repeat(3, minmax(0, 1fr));
340
+ gap: 14px;
341
+ }
342
+
343
+ .step {
344
+ padding: 18px;
345
+ }
346
+
347
+ .step > span {
348
+ display: grid;
349
+ width: 30px;
350
+ height: 30px;
351
+ margin-bottom: 14px;
352
+ place-items: center;
353
+ border-radius: 999px;
354
+ color: #fff;
355
+ background: var(--accent-2);
356
+ font-weight: 800;
357
+ }
358
+
359
+ .callout {
360
+ margin-top: 16px;
361
+ padding: 18px 20px;
362
+ background: #fff9ef;
363
+ border-color: #ead8bd;
364
+ }
365
+
366
+ .callout p {
367
+ margin: 6px 0 0;
368
+ color: #60472f;
369
+ }
370
+
371
+ .diagram {
372
+ margin: 0;
373
+ padding: 18px;
374
+ background: #fff;
375
+ border: 1px solid var(--line);
376
+ border-radius: var(--radius);
377
+ box-shadow: var(--shadow);
378
+ }
379
+
380
+ .diagram img {
381
+ display: block;
382
+ width: 100%;
383
+ height: auto;
384
+ }
385
+
386
+ .feature-card {
387
+ display: grid;
388
+ gap: 12px;
389
+ }
390
+
391
+ .tag-row {
392
+ display: flex;
393
+ gap: 6px;
394
+ flex-wrap: wrap;
395
+ }
396
+
397
+ .tag,
398
+ .category {
399
+ display: inline-flex;
400
+ align-items: center;
401
+ min-height: 24px;
402
+ padding: 4px 8px;
403
+ border-radius: 999px;
404
+ color: #254740;
405
+ background: #e8f2ee;
406
+ font-size: 12px;
407
+ font-weight: 750;
408
+ }
409
+
410
+ .category {
411
+ color: #4e3921;
412
+ background: #f5eadb;
413
+ }
414
+
415
+ .tutorials {
416
+ display: grid;
417
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
418
+ gap: 16px;
419
+ }
420
+
421
+ .tutorials article {
422
+ padding: 22px;
423
+ }
424
+
425
+ .tutorials ol {
426
+ margin: 10px 0 0;
427
+ padding-left: 20px;
428
+ }
429
+
430
+ .toolbar {
431
+ display: flex;
432
+ justify-content: space-between;
433
+ gap: 16px;
434
+ align-items: flex-start;
435
+ margin-bottom: 16px;
436
+ }
437
+
438
+ .filter-group {
439
+ display: flex;
440
+ gap: 8px;
441
+ flex-wrap: wrap;
442
+ }
443
+
444
+ .filter-chip {
445
+ min-height: 34px;
446
+ padding: 7px 12px;
447
+ border: 1px solid var(--line);
448
+ border-radius: var(--radius);
449
+ background: #fff;
450
+ color: var(--muted);
451
+ cursor: pointer;
452
+ font-weight: 700;
453
+ }
454
+
455
+ .filter-chip.active {
456
+ color: #fff;
457
+ background: var(--accent);
458
+ border-color: var(--accent);
459
+ }
460
+
461
+ .command-grid {
462
+ display: grid;
463
+ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
464
+ gap: 14px;
465
+ }
466
+
467
+ .command-card {
468
+ display: grid;
469
+ gap: 12px;
470
+ }
471
+
472
+ .command-title {
473
+ display: flex;
474
+ justify-content: space-between;
475
+ gap: 14px;
476
+ align-items: flex-start;
477
+ }
478
+
479
+ .command-title code {
480
+ font-size: 18px;
481
+ font-weight: 800;
482
+ color: var(--accent);
483
+ }
484
+
485
+ .aliases {
486
+ color: var(--muted);
487
+ font-size: 13px;
488
+ }
489
+
490
+ .copy-button {
491
+ position: absolute;
492
+ top: 8px;
493
+ right: 8px;
494
+ min-height: 28px;
495
+ padding: 5px 8px;
496
+ border-radius: 6px;
497
+ border: 1px solid #39524b;
498
+ color: #e8f8f2;
499
+ background: #1c2b27;
500
+ cursor: pointer;
501
+ font-size: 12px;
502
+ }
503
+
504
+ .empty-state {
505
+ padding: 30px;
506
+ border: 1px dashed var(--line);
507
+ border-radius: var(--radius);
508
+ color: var(--muted);
509
+ background: rgba(255, 255, 255, 0.6);
510
+ }
511
+
512
+ .back-to-top {
513
+ position: fixed;
514
+ right: 18px;
515
+ bottom: 18px;
516
+ z-index: 20;
517
+ display: none;
518
+ min-height: 38px;
519
+ padding: 8px 12px;
520
+ border: 1px solid var(--line);
521
+ border-radius: var(--radius);
522
+ background: #fff;
523
+ color: var(--ink);
524
+ box-shadow: var(--shadow);
525
+ cursor: pointer;
526
+ font-weight: 800;
527
+ }
528
+
529
+ .back-to-top.visible {
530
+ display: inline-flex;
531
+ align-items: center;
532
+ }
533
+
534
+ .hidden {
535
+ display: none !important;
536
+ }
537
+
538
+ @media (max-width: 980px) {
539
+ .sidebar {
540
+ position: static;
541
+ width: auto;
542
+ border-right: 0;
543
+ border-bottom: 1px solid var(--line);
544
+ }
545
+
546
+ .content {
547
+ margin-left: 0;
548
+ }
549
+
550
+ .topbar {
551
+ align-items: flex-start;
552
+ flex-direction: column;
553
+ }
554
+
555
+ .steps {
556
+ grid-template-columns: 1fr;
557
+ }
558
+ }
559
+
560
+ @media (max-width: 640px) {
561
+ .section,
562
+ .topbar {
563
+ padding-left: 18px;
564
+ padding-right: 18px;
565
+ }
566
+
567
+ .command-grid,
568
+ .tutorials {
569
+ grid-template-columns: 1fr;
570
+ }
571
+
572
+ .toolbar {
573
+ flex-direction: column;
574
+ }
575
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ur-agent",
3
- "version": "1.13.5",
3
+ "version": "1.13.7",
4
4
  "description": "UR terminal coding agent CLI",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.14",
@@ -27,6 +27,7 @@
27
27
  "bin",
28
28
  "dist",
29
29
  "docs",
30
+ "documentation",
30
31
  "examples",
31
32
  "CHANGELOG.md",
32
33
  "QUALITY.md",