tinyjuice 0.2.1

Pluggable token compression for OpenHuman.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
# HTML, RSS, And Page Snapshots

Real RSS feeds, noisy web pages, forum pages, and OpenHuman coverage HTML. The HTML compressor strips markup/script noise and keeps readable page text.

Each row links to the full raw input and the exact compacted output used by the benchmark.

## Cases

| Case | Input | Output | Original | Compacted | Est. token reduction | Avg latency | CCR |
| --- | --- | --- | ---: | ---: | ---: | ---: | --- |
| `04-forum-rust-users` | [input]cases/04-forum-rust-users/input.html | [output]cases/04-forum-rust-users/output.txt | 83.6 KB | 3.5 KB | 95.9% | 0.145 ms | true |
| `03-noisy-hacker-news` | [input]cases/03-noisy-hacker-news/input.html | [output]cases/03-noisy-hacker-news/output.txt | 34.3 KB | 3.9 KB | 88.7% | 0.093 ms | true |
| `08-openhuman-coverage-8` | [input]cases/08-openhuman-coverage-8/input.html | [output]cases/08-openhuman-coverage-8/output.txt | 5.2 KB | 661 B | 87.4% | 0.015 ms | true |
| `06-openhuman-coverage-6` | [input]cases/06-openhuman-coverage-6/input.html | [output]cases/06-openhuman-coverage-6/output.txt | 4.4 KB | 567 B | 87.3% | 0.013 ms | true |
| `07-openhuman-coverage-7` | [input]cases/07-openhuman-coverage-7/input.html | [output]cases/07-openhuman-coverage-7/output.txt | 6.5 KB | 1.3 KB | 80.8% | 0.021 ms | true |
| `10-openhuman-coverage-10` | [input]cases/10-openhuman-coverage-10/input.html | [output]cases/10-openhuman-coverage-10/output.txt | 5.8 KB | 1.2 KB | 79.9% | 0.019 ms | true |
| `05-openhuman-coverage-5` | [input]cases/05-openhuman-coverage-5/input.html | [output]cases/05-openhuman-coverage-5/output.txt | 6.6 KB | 1.4 KB | 79.3% | 0.020 ms | true |
| `09-openhuman-coverage-9` | [input]cases/09-openhuman-coverage-9/input.html | [output]cases/09-openhuman-coverage-9/output.txt | 24.6 KB | 5.1 KB | 79.2% | 0.080 ms | true |
| `02-rss-hacker-news` | [input]cases/02-rss-hacker-news/input.xml | [output]cases/02-rss-hacker-news/output.txt | 15.1 KB | 7.3 KB | 51.7% | 0.049 ms | true |
| `01-rss-rust-blog` | [input]cases/01-rss-rust-blog/input.xml | [output]cases/01-rss-rust-blog/output.txt | 384.1 KB | 295.9 KB | 23.0% | 1.188 ms | true |

## What TinyJuice Is Doing

HTML snapshots are converted into readable text. Script/style payloads and repeated markup disappear; the output keeps the content an agent would normally inspect.

## Syntax-Aware Samples

### `04-forum-rust-users`

- [Full input]cases/04-forum-rust-users/input.html
- [Full output]cases/04-forum-rust-users/output.txt

Input excerpt:

```html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>The Rust Programming Language Forum</title>
    <meta name="description" content="General discussion of The Rust Programming Language">
    <meta name="generator" content="Discourse 2026.7.0-latest - https://github.com/discourse/discourse version 2a08d5d5ca62c6f4fd4fba8a281bee36976e15d3">
<link rel="icon" type="image/png" href="https://us1.discourse-cdn.com/flex019/uploads/rust_lang/optimized/2X/e/e011218794dba02ebb2b368fd9b831f5585caffe_2_32x32.ico">
<link rel="apple-touch-icon" type="image/png" href="https://us1.discourse-cdn.com/flex019/uploads/rust_lang/optimized/2X/8/83e41956eccfd67ad6ff76f15a2c22e58db31d4f_2_180x180.svg">
<meta name="theme-color" media="all" content="#fff">

<meta name="color-scheme" content="light">

<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
<link rel="canonical" href="https://users.rust-lang.org/" />
<script type="application/ld+json">{"@context":"http://schema.org","@type":"WebSite","url":"https://users.rust-lang.org","name":"The Rust Programming Language Forum","potentialAction":{"@type":"SearchAction","target":"ht...
<meta name="discourse-track-view-session-id" content="P2XR9VHbIV8AYxdPxLVoIR40plyktlVB">
<link rel="search" type="application/opensearchdescription+xml" href="https://users.rust-lang.org/opensearch.xml" title="The Rust Programming Language Forum Search">

    
    <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/color_definitions_light-default_-1_1_d5537d15356de74106d0f6f9a9d1cdbf01cec97b.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" class="light-sch...

<link href="https://sea1.discourse-cdn.com/flex019/stylesheets/common_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="common"  />

<link href="https://sea1.discourse-cdn.com/flex019/stylesheets/mobile_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="(width < 40rem)" rel="stylesheet" data-target="mobile"  />
<link href="https://sea1.discourse-cdn.com/flex019/stylesheets/desktop_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="(width >= 40rem)" rel="stylesheet" data-target="desktop"  />



  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/automation_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="automation"  />
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/checklist_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="checklist"  />
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/discourse-ai_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="discourse-ai"  />
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/discourse-cakeday_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="discourse-cakeday"  />
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/discourse-data-explorer_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="discourse-data-exp...
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/discourse-details_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="discourse-details"  />
  <link href="https://sea1.discourse-cdn.com/flex019/stylesheets/discourse-github_f6d21c3b4672e59e32927108f6d7b37328968701.css?__ws=users.rust-lang.org" media="all" rel="stylesheet" data-target="discourse-github"  />

```

Output excerpt:

```text
The Rust Programming Language Forum

General discussion of The Rust Programming Language

Topic

Replies
Views
Activity

Welcome to the Rust programming language users forum

meta

This forum is for help, discussion, and announcements related to the Rust programming language.
Please read our code of conduct before participating. We will remove any posts that are not respectful, constructive, and o…

1

56124

June 24, 2022

Forum Code Formatting and Syntax Highlighting

meta

To format code in this forum you need to surround the code with three backticks (` ` `). For example, typing this...
` ` `
fn main() {
println!()
}
` ` `

...will be rendered as highlighted Rust code, like so:
fn main() …

```

### `03-noisy-hacker-news`

- [Full input](cases/03-noisy-hacker-news/input.html)
- [Full output](cases/03-noisy-hacker-news/output.txt)

Input excerpt:

```html
<html lang="en" op="news"><head><meta name="referrer" content="origin"><meta name="viewport" content="width=device-width, initial-scale=1.0"><link rel="stylesheet" type="text/css" href="news.css?Ug1GY3B6Kr5c7uonNem9"><li...
<center><span class="yclinks"><a href="newsguidelines.html">Guidelines</a> | <a href="newsfaq.html">FAQ</a> | <a href="lists">Lists</a> | <a href="https://github.com/HackerNews/API">API</a> | <a href="security.html">Secu...
<form method="get" action="//hn.algolia.com/">Search: <input type="text" name="q" size="17" autocorrect="off" spellcheck="false" autocapitalize="off" autocomplete="off"></form></center></td></tr></table></center></body><...

```

Output excerpt:

```text
Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
1.
Europe&#x27;s new climate in seven charts (bbc.com)
89 points by saikatsg 2 hours ago | hide | 56 comments
2.
Shadcn&#x2F;UI now defaults to Base UI instead of Radix (shadcn.com)
162 points by dabinat 7 hours ago | hide | 60 comments
3.
If you&#x27;re a button, you have one job (aresluna.org)
279 points by nozzlegear 10 hours ago | hide | 146 comments
4.
GPT-5.5 Codex reasoning-token clustering may be leading to degraded performance (github.com/openai)
305 points by maille 14 hours ago | hide | 116 comments
5.
Fast Software, the Best Software (craigmod.com)
38 points by ustad 4 hours ago | hide | 16 comments
6.
Pandoc Lua Filters (pandoc.org)
81 points by ankitg12 7 hours ago | hide | 5 comments
7.
Functional Programming in hica (hica.dev)
6 points by cladamski79 2 hours ago | hide | 1 comment
8.
Jellyfish can heal wounds in minutes. Scientists want their secrets (mbl.edu)
140 points by hhs 13 hours ago | hide | 30 comments
9.
Claude Design System Prompt (github.com/trystan-sa)
25 points by handfuloflight 3 hours ago | hide | 1 comment
10.
Scientist who cleaned space toilet on work now leading Mars exploration (bbc.com)
10 points by saikatsg 2 hours ago | hide | 2 comments
11.
Megawatts by Microwave (computer.rip)
31 points by eternauta3k 6 hours ago | hide | 4 comments
12.
Programmers need to start meditating (jacob.gold)

```

### `08-openhuman-coverage-8`

- [Full input](cases/08-openhuman-coverage-8/input.html)
- [Full output](cases/08-openhuman-coverage-8/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/chat</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../prettify.css" />
    <link rel="stylesheet" href="../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../index.html">All files</a> src/chat</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">55.55% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>25/45</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">46.34% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>19/41</span>
            </div>

```

Output excerpt:

```text
All files src/chat

55.55%
Statements
25/45

46.34%
Branches
19/41

80%
Functions
4/5

54.54%
Lines
24/44

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

File

Statements

Branches

Functions

Lines

chatSendError.ts

100%
2/2

```

### `06-openhuman-coverage-6`

- [Full input](cases/06-openhuman-coverage-6/input.html)
- [Full output](cases/06-openhuman-coverage-6/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/assets/icons</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../../prettify.css" />
    <link rel="stylesheet" href="../../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../../index.html">All files</a> src/assets/icons</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>0/2</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>0/1</span>
            </div>

```

Output excerpt:

```text
All files src/assets/icons

0%
Statements
0/2

0%
Branches
0/1

0%
Functions
0/1

0%
Lines
0/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

File

Statements

Branches

Functions

Lines

GoogleIcon.tsx

0%
0/2

```

### `07-openhuman-coverage-7`

- [Full input](cases/07-openhuman-coverage-7/input.html)
- [Full output](cases/07-openhuman-coverage-7/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/chat/chatSendError.ts</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../prettify.css" />
    <link rel="stylesheet" href="../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../index.html">All files</a> / <a href="index.html">src/chat</a> chatSendError.ts</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">100% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>2/2</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">100% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>0/0</span>
            </div>

```

Output excerpt:

```text
All files / src/chat chatSendError.ts

100%
Statements
2/2

100%
Branches
0/0

100%
Functions
1/1

100%
Lines
1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

1
2
3
4
5
6
7
8
9
10
11
12
13
14

```

### `10-openhuman-coverage-10`

- [Full input](cases/10-openhuman-coverage-10/input.html)
- [Full output](cases/10-openhuman-coverage-10/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/components/AppBackground.tsx</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../prettify.css" />
    <link rel="stylesheet" href="../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../index.html">All files</a> / <a href="index.html">src/components</a> AppBackground.tsx</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>0/1</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>0/1</span>
            </div>

```

Output excerpt:

```text
All files / src/components AppBackground.tsx

0%
Statements
0/1

0%
Branches
0/1

0%
Functions
0/1

0%
Lines
0/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

1
2
3
4
5
6
7
8
9
10
11
12
13
14

```

### `05-openhuman-coverage-5`

- [Full input](cases/05-openhuman-coverage-5/input.html)
- [Full output](cases/05-openhuman-coverage-5/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/assets/icons/GoogleIcon.tsx</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../../prettify.css" />
    <link rel="stylesheet" href="../../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../../index.html">All files</a> / <a href="index.html">src/assets/icons</a> GoogleIcon.tsx</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>0/2</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">0% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>0/1</span>
            </div>

```

Output excerpt:

```text
All files / src/assets/icons GoogleIcon.tsx

0%
Statements
0/2

0%
Branches
0/1

0%
Functions
0/1

0%
Lines
0/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

1
2
3
4
5
6
7
8
9
10
11
12
13
14

```

### `09-openhuman-coverage-9`

- [Full input](cases/09-openhuman-coverage-9/input.html)
- [Full output](cases/09-openhuman-coverage-9/output.txt)

Input excerpt:

```html

<!doctype html>
<html lang="en">

<head>
    <title>Code coverage report for src/chat/promptInjectionGuard.ts</title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="../../prettify.css" />
    <link rel="stylesheet" href="../../base.css" />
    <link rel="shortcut icon" type="image/x-icon" href="../../favicon.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type='text/css'>
        .coverage-summary .sorter {
            background-image: url(../../sort-arrow-sprite.png);
        }
    </style>
</head>
    
<body>
<div class='wrapper'>
    <div class='pad1'>
        <h1><a href="../../index.html">All files</a> / <a href="index.html">src/chat</a> promptInjectionGuard.ts</h1>
        <div class='clearfix'>
            
            <div class='fl pad1y space-right2'>
                <span class="strong">53.48% </span>
                <span class="quiet">Statements</span>
                <span class='fraction'>23/43</span>
            </div>
        
            
            <div class='fl pad1y space-right2'>
                <span class="strong">46.34% </span>
                <span class="quiet">Branches</span>
                <span class='fraction'>19/41</span>
            </div>

```

Output excerpt:

```text
All files / src/chat promptInjectionGuard.ts

53.48%
Statements
23/43

46.34%
Branches
19/41

75%
Functions
3/4

53.48%
Lines
23/43

Press n or j to go to the next uncovered block, b, p or k for the previous block.

Filter:

1
2
3
4
5
6
7
8
9
10
11
12
13
14

```

### `02-rss-hacker-news`

- [Full input](cases/02-rss-hacker-news/input.xml)
- [Full output](cases/02-rss-hacker-news/output.txt)

Input excerpt:

```xml
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: Front Page</title><link>https://news.ycombinator.com/</link><description>Hacker News RS...
<p>Article URL: <a href="https://www.bbc.com/news/articles/c8e2j0j87reo">https://www.bbc.com/news/articles/c8e2j0j87reo</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792790">https://news.ycombinator.com/item?id=48792790</a></p>
<p>Points: 74</p>
<p># Comments: 29</p>
]]></description><pubDate>Sun, 05 Jul 2026 09:56:10 +0000</pubDate><link>https://www.bbc.com/news/articles/c8e2j0j87reo</link><dc:creator>saikatsg</dc:creator><comments>https://news.ycombinator.com/item?id=48792790</comm...
<p>Article URL: <a href="https://www.bbc.com/news/articles/cz758x04g83o">https://www.bbc.com/news/articles/cz758x04g83o</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792780">https://news.ycombinator.com/item?id=48792780</a></p>
<p>Points: 10</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 05 Jul 2026 09:55:22 +0000</pubDate><link>https://www.bbc.com/news/articles/cz758x04g83o</link><dc:creator>saikatsg</dc:creator><comments>https://news.ycombinator.com/item?id=48792780</comm...
<p>Article URL: <a href="https://github.com/Trystan-SA/claude-design-system-prompt">https://github.com/Trystan-SA/claude-design-system-prompt</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792399">https://news.ycombinator.com/item?id=48792399</a></p>
<p>Points: 23</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 05 Jul 2026 08:43:37 +0000</pubDate><link>https://github.com/Trystan-SA/claude-design-system-prompt</link><dc:creator>handfuloflight</dc:creator><comments>https://news.ycombinator.com/item?...
<p>Article URL: <a href="https://0dd.company/galleries/triumph/1.html">https://0dd.company/galleries/triumph/1.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792352">https://news.ycombinator.com/item?id=48792352</a></p>
<p>Points: 26</p>
<p># Comments: 5</p>
]]></description><pubDate>Sun, 05 Jul 2026 08:32:09 +0000</pubDate><link>https://0dd.company/galleries/triumph/1.html</link><dc:creator>scaglio</dc:creator><comments>https://news.ycombinator.com/item?id=48792352</comment...
<p>Article URL: <a href="https://www.formaly.io/blog/knowledge-should-not-be-gated">https://www.formaly.io/blog/knowledge-should-not-be-gated</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792195">https://news.ycombinator.com/item?id=48792195</a></p>
<p>Points: 9</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 05 Jul 2026 07:59:48 +0000</pubDate><link>https://www.formaly.io/blog/knowledge-should-not-be-gated</link><dc:creator>nezhar</dc:creator><comments>https://news.ycombinator.com/item?id=48792...
<p>Article URL: <a href="https://hamiltonianresearch.xyz/blog/hr-diffuse-1.html">https://hamiltonianresearch.xyz/blog/hr-diffuse-1.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792118">https://news.ycombinator.com/item?id=48792118</a></p>
<p>Points: 12</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 05 Jul 2026 07:47:44 +0000</pubDate><link>https://hamiltonianresearch.xyz/blog/hr-diffuse-1.html</link><dc:creator>farisallafi</dc:creator><comments>https://news.ycombinator.com/item?id=487...
<p>Article URL: <a href="https://jacob.gold/posts/programmers-need-to-start-meditating-now/">https://jacob.gold/posts/programmers-need-to-start-meditating-now/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48792080">https://news.ycombinator.com/item?id=48792080</a></p>
<p>Points: 88</p>
<p># Comments: 90</p>
]]></description><pubDate>Sun, 05 Jul 2026 07:39:35 +0000</pubDate><link>https://jacob.gold/posts/programmers-need-to-start-meditating-now/</link><dc:creator>enz</dc:creator><comments>https://news.ycombinator.com/item?id...

```

Output excerpt:

```text
Hacker News: Front Pagehttps://news.ycombinator.com/Hacker News RSShttps://hnrss.org/hnrss v2.1.1Sun, 05 Jul 2026 12:06:08 +0000Article URL: https://www.bbc.com/news/articles/c8e2j0j87reo

Comments URL: https://news.ycombinator.com/item?id=48792790

Points: 74

# Comments: 29

]]>Sun, 05 Jul 2026 09:56:10 +0000https://www.bbc.com/news/articles/c8e2j0j87reosaikatsghttps://news.ycombinator.com/item?id=48792790https://news.ycombinator.com/item?id=48792790Article URL: https://www.bbc.com/news/arti...

Comments URL: https://news.ycombinator.com/item?id=48792780

Points: 10

# Comments: 2

]]>Sun, 05 Jul 2026 09:55:22 +0000https://www.bbc.com/news/articles/cz758x04g83osaikatsghttps://news.ycombinator.com/item?id=48792780https://news.ycombinator.com/item?id=48792780Article URL: https://github.com/Trystan-SA...

Comments URL: https://news.ycombinator.com/item?id=48792399

Points: 23

# Comments: 1

]]>Sun, 05 Jul 2026 08:43:37 +0000https://github.com/Trystan-SA/claude-design-system-prompthandfuloflighthttps://news.ycombinator.com/item?id=48792399https://news.ycombinator.com/item?id=48792399Article URL: https://0dd....

Comments URL: https://news.ycombinator.com/item?id=48792352

Points: 26

# Comments: 5

]]>Sun, 05 Jul 2026 08:32:09 +0000https://0dd.company/galleries/triumph/1.htmlscagliohttps://news.ycombinator.com/item?id=48792352https://news.ycombinator.com/item?id=48792352Article URL: https://www.formaly.io/blog/know...

Comments URL: https://news.ycombinator.com/item?id=48792195


```

### `01-rss-rust-blog`

- [Full input](cases/01-rss-rust-blog/input.xml)
- [Full output](cases/01-rss-rust-blog/output.txt)

Input excerpt:

```xml
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <generator uri="https://blog.rust-lang.org/" version="0.1.0">Rust Blog</generator>
    <link href="https://blog.rust-lang.org/feed.xml" rel="self" type="application/atom+xml" />
    <link href="https://blog.rust-lang.org/" rel="alternate" type="text/html" />
    <id>https://blog.rust-lang.org/</id>
    <title>Rust Blog</title>
    <subtitle>Empowering everyone to build reliable and efficient software.</subtitle>
    <author>
        <name>Maintained by the Rust Teams.</name>
        <uri>https://github.com/rust-lang/blog.rust-lang.org/</uri>
    </author>
    <updated>2026-07-03T16:22:30+00:00</updated>

    
    <entry>
        <title>Announcing Rust 1.96.1</title>
        <link rel="alternate" href="https://blog.rust-lang.org/2026/06/30/Rust-1.96.1/" type="text/html" title="Announcing Rust 1.96.1" />
        <published>2026-06-30T00:00:00+00:00</published>
        <updated>2026-06-30T00:00:00+00:00</updated>
        <id>https://blog.rust-lang.org/2026/06/30/Rust-1.96.1/</id>
        <content type="html" xml:base="https://blog.rust-lang.org/2026/06/30/Rust-1.96.1/">&lt;p&gt;The Rust team has published a new point release of Rust, 1.96.1. Rust is a programming language that is empowering every...
&lt;p&gt;If you have a previous version of Rust installed via rustup, getting Rust 1.96.1 is as easy as:&lt;/p&gt;
&lt;pre class&#x3D;&quot;giallo z-code&quot;&gt;&lt;code data-lang&#x3D;&quot;plain&quot;&gt;&lt;span class&#x3D;&quot;giallo-l&quot;&gt;&lt;span&gt;rustup update stable&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you don&#x27;t have it already, you can &lt;a rel&#x3D;&quot;external&quot; href&#x3D;&quot;https://www.rust-lang.org/install.html&quot;&gt;get &lt;code&gt;rustup&lt;/code&gt;&lt;/a&gt; from the appropriate p...
&lt;h2 id&#x3D;&quot;what-s-in-1-96-1&quot;&gt;&lt;a class&#x3D;&quot;anchor&quot; href&#x3D;&quot;#what-s-in-1-96-1&quot; aria-hidden&#x3D;&quot;true&quot;&gt;&lt;/a&gt;
What&#x27;s in 1.96.1&lt;/h2&gt;
&lt;p&gt;Rust 1.96.1 fixes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel&#x3D;&quot;external&quot; href&#x3D;&quot;https://github.com/rust-lang/cargo/pull/17131&quot;&gt;Missing retries / timeouts in Cargo&#x27;s HTTP client&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a rel&#x3D;&quot;external&quot; href&#x3D;&quot;https://github.com/rust-lang/rust/pull/158214&quot;&gt;Miscompilation in a MIR optimization&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It also &lt;a rel&#x3D;&quot;external&quot; href&#x3D;&quot;https://github.com/rust-lang/cargo/pull/17140&quot;&gt;fixes&lt;/a&gt; three CVEs
affecting libssh2 (which is compiled into Cargo):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel&#x3D;&quot;external&quot; href&#x3D;&quot;https://www.cve.org/CVERecord?id&#x3D;CVE-2025-15661&quot;&gt;CVE-2025-15661&lt;/a&gt;&lt;/li&gt;

```

Output excerpt:

```text
Rust Blog

https://blog.rust-lang.org/
Rust Blog
Empowering everyone to build reliable and efficient software.

Maintained by the Rust Teams.
https://github.com/rust-lang/blog.rust-lang.org/

2026-07-03T16:22:30+00:00

Announcing Rust 1.96.1

2026-06-30T00:00:00+00:00
2026-06-30T00:00:00+00:00
https://blog.rust-lang.org/2026/06/30/Rust-1.96.1/
<p>The Rust team has published a new point release of Rust, 1.96.1. Rust is a programming language that is empowering everyone to build reliable and efficient software.</p>
<p>If you have a previous version of Rust installed via rustup, getting Rust 1.96.1 is as easy as:</p>
<pre class&#x3D;"giallo z-code"><code data-lang&#x3D;"plain"><span class&#x3D;"giallo-l"><span>rustup update stable</span></span></code></pre>
<p>If you don&#x27;t have it already, you can <a rel&#x3D;"external" href&#x3D;"https://www.rust-lang.org/install.html">get <code>rustup</code></a> from the appropriate page on our website.</p>
<h2 id&#x3D;"what-s-in-1-96-1"><a class&#x3D;"anchor" href&#x3D;"#what-s-in-1-96-1" aria-hidden&#x3D;"true"></a>
What&#x27;s in 1.96.1</h2>
<p>Rust 1.96.1 fixes:</p>
<ul>
<li><a rel&#x3D;"external" href&#x3D;"https://github.com/rust-lang/cargo/pull/17131">Missing retries / timeouts in Cargo&#x27;s HTTP client</a></li>
<li><a rel&#x3D;"external" href&#x3D;"https://github.com/rust-lang/rust/pull/158214">Miscompilation in a MIR optimization</a></li>
</ul>
<p>It also <a rel&#x3D;"external" href&#x3D;"https://github.com/rust-lang/cargo/pull/17140">fixes</a> three CVEs
affecting libssh2 (which is compiled into Cargo):</p>
<ul>
<li><a rel&#x3D;"external" href&#x3D;"https://www.cve.org/CVERecord?id&#x3D;CVE-2025-15661">CVE-2025-15661</a></li>
<li><a rel&#x3D;"external" href&#x3D;"https://www.cve.org/CVERecord?id&#x3D;CVE-2026-55199">CVE-2026-55199</a></li>
<li><a rel&#x3D;"external" href&#x3D;"https://www.cve.org/CVERecord?id&#x3D;CVE-2026-55200">CVE-2026-55200</a></li>
</ul>
<h3 id&#x3D;"contributors-to-1-96-1"><a class&#x3D;"anchor" href&#x3D;"#contributors-to-1-96-1" aria-hidden&#x3D;"true"></a>
Contributors to 1.96.1</h3>

```