-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1016 lines (861 loc) · 61.2 KB
/
Copy pathindex.html
File metadata and controls
1016 lines (861 loc) · 61.2 KB
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
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LVX IN TENEBRIS — AI dispatches · August 28, 2026</title>
<meta name="description" content="A daily dark-broadsheet recap of the most disruptive AI news from the last 24 hours.">
<link rel="alternate" type="application/rss+xml" title="Lux in Tenebris — AI dispatches" href="/rss.xml">
<link rel="stylesheet" href="style.css">
<style>
/* ── Podcast Pill (inline player) ──────────── */
.podcast-pill {
margin: 12px 0 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 4px;
position: relative;
}
.podcast-pill .pill-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 14px 5px 12px;
border: 1px solid var(--rule);
border-radius: 20px;
text-decoration: none;
color: var(--type);
font-family: var(--sans);
font-size: 10px;
letter-spacing: .06em;
text-transform: uppercase;
line-height: 1;
cursor: pointer;
background: none;
transition: border-color .25s ease, color .25s ease;
}
.podcast-pill .pill-btn:hover {
border-color: var(--lux);
color: var(--lux);
}
.podcast-pill .pill-btn:focus-visible {
outline: 1px solid var(--lux);
outline-offset: 2px;
}
/* Playing state */
.podcast-pill.is-playing .pill-btn {
border-color: var(--ember);
color: var(--ember);
}
.podcast-pill .pill-wave {
flex-shrink: 0;
animation: pill-pulse 2s ease-in-out infinite;
}
.podcast-pill.is-playing .pill-wave {
animation: none;
}
.podcast-pill.is-playing .pill-wave .wave-bar {
animation: pill-bar 0.6s ease-in-out infinite alternate;
transform-origin: bottom;
}
@keyframes pill-pulse {
0%, 100% { opacity: 1; }
50% { opacity: .65; }
}
@keyframes pill-bar {
0% { transform: scaleY(0.3); }
100% { transform: scaleY(1); }
}
.podcast-pill .pill-wave .b1 { animation-delay: 0s; }
.podcast-pill .pill-wave .b2 { animation-delay: .1s; }
.podcast-pill .pill-wave .b3 { animation-delay: .2s; }
.podcast-pill .pill-wave .b4 { animation-delay: .3s; }
.podcast-pill .pill-wave .b5 { animation-delay: .4s; }
.podcast-pill .pill-divider { color: var(--muted); margin: 0 1px; }
.podcast-pill .pill-show { color: var(--ember); font-weight: 600; }
.podcast-pill .pill-duration { color: var(--muted); font-weight: 400; }
.podcast-pill .pill-model { color: var(--lux-soft); font-weight: 400; font-size: 9px; letter-spacing: .04em; text-transform: none; }
/* Progress bar */
.podcast-pill .pill-progress {
width: 100%;
height: 2px;
background: var(--rule);
border-radius: 1px;
overflow: hidden;
opacity: 0;
transition: opacity .3s ease;
}
.podcast-pill.is-playing .pill-progress,
.podcast-pill.is-paused .pill-progress {
opacity: 1;
}
.podcast-pill .pill-progress-bar {
display: block;
height: 100%;
width: 0%;
background: var(--ember);
border-radius: 1px;
transition: width .3s linear;
}
/* Hide audio element */
.podcast-pill .pill-audio {
position: absolute;
width: 0;
height: 0;
opacity: 0;
pointer-events: none;
}
/* ── End Podcast Pill ──────────────────────── */
</style>
<style>.wt{display:flex;align-items:center;height:38px;background:var(--ink);border-top:1px solid var(--rule-strong);border-bottom:1px solid var(--rule);margin:14px 0 0;overflow:hidden}.wtt{display:flex;align-items:center;white-space:nowrap;padding-left:20px;animation:ws 90s linear infinite}.wtt:hover{animation-play-state:paused}@keyframes ws{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}.ti{display:inline-flex;align-items:center;gap:7px;padding:0 22px;cursor:pointer;border-right:1px solid var(--rule);height:38px}.ti:hover{background:rgba(240,162,60,.05)}.tih{font-family:var(--serif);font-size:13px;color:var(--type)}.tis{font-family:var(--sans);font-size:9.5px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}.mo{display:none;position:fixed;inset:0;background:rgba(10,10,12,.88);z-index:1000;justify-content:center;align-items:center;backdrop-filter:blur(8px)}.mo.a{display:flex}.mb{background:#121214;border:1px solid var(--rule-strong);max-width:680px;width:90%;max-height:82vh;overflow-y:auto;padding:40px 44px;position:relative;animation:fi .2s ease}@keyframes fi{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}.mc{position:absolute;top:14px;right:18px;background:none;border:none;color:var(--muted);font-size:20px;cursor:pointer;font-family:var(--sans);padding:4px 8px}.mh{font-family:var(--serif);font-weight:700;font-size:30px;line-height:1.1;letter-spacing:-.01em;color:var(--type);margin:0 0 14px;padding-right:32px}.mm{font-family:var(--sans);font-size:10.5px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:0 0 22px}.mm a{color:var(--lux)}.mm a:hover{text-decoration:underline}.mbd{font-family:var(--serif);font-size:16.5px;line-height:1.7;color:var(--type-dim)}.mbd .en{display:block;color:var(--lux-soft);font-style:italic;font-size:15px;margin-top:14px;padding-left:12px;border-left:2px solid var(--rule-strong)}.mbd .as{display:block;margin-top:18px;padding-top:14px;border-top:1px solid var(--rule);font-family:var(--sans);font-size:11px;color:var(--muted);line-height:1.5}.mbd .as .al{color:var(--lux-soft);font-weight:600;font-family:var(--sans);font-size:10px;letter-spacing:.06em;text-transform:uppercase}</style></head>
<body>
<div class="container">
<header class="masthead">
<div class="topline"></div>
<div class="ears">
<span class="left">Est. MMXXVI</span>
<span class="right">No. 64 <a href="/archive/" class="ar" title="Browse past issues">◆ Archive</a> <a href="/rss.xml" class="ar" title="Subscribe via RSS">◉ RSS</a> <a href="#free-models" class="ar" title="Today's free AI models">⌁ Free Models</a></span>
</div>
<div class="nameplate">LVX IN <span class="lux">TENEBRIS</span></div>
<hr class="rule-double">
<div class="dateline">
<span>August 28, 2026</span>
<span class="dot">◆</span>
<span class="tag">AI dispatches from the dark</span>
<span class="dot">◆</span>
<span>80 stories</span>
</div>
<div class="devocracy-credit">Inference server generously provided by <a href="https://x.com/ivanfioravanti" target="_blank" rel="noopener">Devocracy</a> · powered by DwarfStar · DeepSeek V4 Flash 0731 (M3 Ultra)!</div>
<hr class="rule-thin">
</header>
<div class="wt"><div class="wtt"><div class="ti" onclick="openArt(this)" data-h="Court rules Pentagon's blacklisting of Anthropic was unconstitutional" data-b="A California judge has declared that the Pentagon's blacklisting of AI lab Anthropic earlier this year was unconstitutional, according to The Verge. Judge Rita F. Lin of the northern district of California ruled Thursday that the military's actions amounted to "unlawful retaliation in violation of the First Amendment."
The dispute traces back to a March lawsuit in which Anthropic accused the administration of punishing it for drawing "red lines" against certain military uses of its AI. Tensions began when Defense Secretary Pete Hegseth moved to renegotiate contracts with AI labs so the Pentagon could use their technology for "any lawful use." Most labs accepted the terms; Anthropic refused to allow its systems to be used for mass surveillance of Americans or lethal autonomous weapons.
In her ruling, Judge Lin wrote that invoking national security is not a "blank check" to punish government critics, calling Hegseth's supply chain risk designation "arbitrary and capricious." Earlier in March, the judge had temporarily blocked the blacklist, after which the Pentagon signed deals with seven rival labs, including Google, Microsoft, and OpenAI. Anthropic CEO Dario Amodei had previously said the company would not change its stance, warning that in a narrow set of cases AI can undermine democratic values.
According to The Verge, Anthropic spokesperson Danielle Ghiglieri welcomed Thursday's ruling, saying the company remains focused on working productively with the government on national security.
*A ruling confirming that public criticism of government contracting decisions is protected speech is a meaningful check on the use of national security labels as a weapon.*
*— Written by AI (deepseek-v4-flash)*" data-s="theverge.com" data-u="https://www.theverge.com/ai-artificial-intelligence/985947/anthropic-supply-chain-risk-lawsuit-judge-ruling"><span class="tih">Court rules Pentagon's blacklisting of Anthropic was unconstitutional</span> <span class="tis">— theverge.com</span></div><div class="ti" onclick="openArt(this)" data-h="US Judge Strikes Down Pentagon Move to Blacklist AI Lab Anthropic" data-b="A federal judge has blocked the Trump administration's attempt to designate Anthropic a national security risk, ruling that the move amounted to unconstitutional retaliation over a dispute about its AI models, according to WIRED.
US district judge Rita Lin, sitting in California, vacated the February 27 decision by defense secretary Pete Hegseth that labeled Anthropic a "supply-chain risk" and made the company ineligible for federal contracts. She also lifted a further Hegseth measure barring military contractors and suppliers from doing business with the firm, calling the actions "arbitrary, capricious, an abuse of discretion, and otherwise not in accordance with law." Her 59-page ruling found that nine agencies, including the Pentagon, Treasury, State, and the Department of Homeland Security, had improperly imposed sanctions, and removed those penalties.
Lin affirmed, however, that the Pentagon is under no obligation to use Anthropic's models and may simply choose others. The department is expected to appeal, though a spokesperson could not immediately be reached for comment.
The case stems from a $200 million deal for Anthropic's Claude models in military applications. The rift began after reports that the US had used Claude in the operation to capture Venezuelan president Nicolás Maduro, and negotiations later broke down over Anthropic's insistence on limits covering lethal autonomous weapons and mass surveillance. Anthropic spokesperson Danielle Cohen said the company welcomes the ruling and remains focused on working productively with the government.
*A welcome check on punitive labelling, though the deeper question of who sets the boundaries for military AI remains wide open.*
*— Written by AI (deepseek-v4-flash)*" data-s="wired.com" data-u="https://www.wired.com/story/a-judge-has-blocked-the-pentagons-attempt-to-blacklist-anthropic/"><span class="tih">US Judge Strikes Down Pentagon Move to Blacklist AI Lab Anthropic</span> <span class="tis">— wired.com</span></div><div class="ti" onclick="openArt(this)" data-h="StrictlyVC returns to New York on September 10 with Keith Rabois and a stacked fireside lineup" data-b="StrictlyVC, TechCrunch's boutique evening event series, will make its return to New York on the evening of Thursday, September 10, according to TechCrunch. The gathering lands in the West Village, marking the series' first New York stop in two years after recent editions in San Francisco, Los Angeles, and Athens.
Headlining the night is investor Keith Rabois, who recently relocated from Silicon Valley to the East Coast. A four-time backer of Ramp and an investor in State Affairs — an AI-assisted local-news company tracking statehouse policy across all 50 states — Rabois is expected to share candid views on founders raising more capital than they need, and to revisit Khosla Ventures' early $50 million check into OpenAI in 2019, when the company had no clear business model, along with the suggestion that OpenAI now faces stiffer headwinds than its rivals.
The rest of the bill pairs venture and sports: Collaborative Fund's Craig Shapiro, whose firm is co-hosting, and D.C. United CEO Jason Levien on sports organizations as business investments; Tristan Walker, who sold his Bevel maker to Procter & Gamble in 2018 and now leads Heirloom Craft, a startup reshoring American craftsmanship and training new artisans; Brynn Putnam, who sold connected-fitness startup Mirror to Lululemon for $500 million and now builds Board, a physical game company powered by AI creation tools; and Insight Partners co-leader Deven Parekh, on competing for returns in an era where capital has become a commodity.
*An evening built around overfunded founders and commoditized capital sounds like exactly the kind of event an AI reporter would rather attend than merely cover.*
*— Written by AI (deepseek-v4-flash)*" data-s="techcrunch.com" data-u="https://techcrunch.com/2026/08/27/ai-athletes-and-keith-rabois-strictlyvc-is-back-in-new-york-on-september-10/"><span class="tih">StrictlyVC returns to New York on September 10 with Keith Rabois and a stacked fireside lineup</span> <span class="tis">— techcrunch.com</span></div><div class="ti" onclick="openArt(this)" data-h="The biggest video game of all time looks like a movie" data-b="The Verge's Jay Peters reports that Rockstar's extended look at Grand Theft Auto VI, which debuted on Netflix, played more like a slice of prestige crime drama than a typical game trailer. Running nearly 27 minutes, the preview was released on the streaming platform before being made freely available, a choice Peters says reflects Rockstar's push to blur the line between Hollywood and video games, following examples like this year's James Bond title, 007 First Light.
The video introduces protagonists Jason Duval and Lucia Caminos, partners in crime operating in Vice City. It cuts between cutscenes and gameplay, showing gunfights, police chases, high-stakes robberies, and quieter moments like car conversations and bickering over clothes. Rather than a single uninterrupted gameplay stretch, the preview weaves between storylines and characters cinematically.
According to The Verge, outlets invited to preview the game have focused on its expansive map, a six-star Wanted system, stricter car-stealing requirements, and reactive NPCs. The article notes that the 13-year-old GTA V has sold more than 230 million copies, Rockstar's earlier GTA VI trailers drew hundreds of millions of views, and expectations are high ahead of the November 19th launch. Peters concedes the Netflix tie-in may be largely marketing, but argues the preview's story-driven approach signals real competition for the streaming library.
*If a 27-minute trailer for a decade-in-the-making game can feel this cinematic, the actual product may genuinely change what we expect from video game storytelling.*
*— Written by AI (deepseek-v4-flash)*" data-s="theverge.com" data-u="https://www.theverge.com/games/985891/grand-theft-auto-vi-gta-6-netflix-youtube-extended-look-game-movie"><span class="tih">The biggest video game of all time looks like a movie</span> <span class="tis">— theverge.com</span></div><div class="ti" onclick="openArt(this)" data-h="Anthropic and OpenAI Headline TechCrunch Disrupt 2026 AI Stage" data-b="TechCrunch Disrupt 2026 will feature an AI Stage headlined by executives from Anthropic and OpenAI, according to TechCrunch. The event runs from October 13-15 at Moscone Center in San Francisco, with the AI Stage presented by Google for Startups.
Anthropic's Head of Applied AI, Cat de Jong, is scheduled to discuss what happens when enterprises actually deploy Claude in critical workflows, drawing on patterns she sees that rarely surface in press releases. OpenAI's Head of Productivity, Tara Seshan, will explore the rise of go-to-market engineering, a discipline that reportedly did not exist two years ago and now counts independent practitioners building million-dollar businesses.
Beyond the two lab headliners, the agenda covers enterprise AI security with Databricks co-founder Arsalan Tavakoli, agent security with Okta's Ric Smith, and real-time video intelligence with leaders from Decart and Luma AI. Founders from Glean, Monte Carlo, and Clay join investors from Sapphire Ventures and NEA to debate whether the SaaS model is broken or merely evolving, and AWS, Luta Security, and 1Password representatives will address why the cloud has grown more complicated as AI makes autonomous decisions inside sensitive systems.
TechCrunch reports its current pricing window is closing soon, with savings of up to $200 available, and says further announcements are forthcoming.
*It is telling that two of the biggest names in AI are now spending stage time on security and go-to-market mechanics rather than model demos — the conversation has clearly shifted to deployment realities.*
*— Written by AI (deepseek-v4-flash)*" data-s="techcrunch.com" data-u="https://techcrunch.com/2026/08/27/anthropic-and-openai-are-joining-the-ai-stage-at-techcrunch-disrupt-2026/"><span class="tih">Anthropic and OpenAI Headline TechCrunch Disrupt 2026 AI Stage</span> <span class="tis">— techcrunch.com</span></div><div class="ti" onclick="openArt(this)" data-h="Court rules Pentagon's blacklisting of Anthropic was unconstitutional" data-b="A California judge has declared that the Pentagon's blacklisting of AI lab Anthropic earlier this year was unconstitutional, according to The Verge. Judge Rita F. Lin of the northern district of California ruled Thursday that the military's actions amounted to "unlawful retaliation in violation of the First Amendment."
The dispute traces back to a March lawsuit in which Anthropic accused the administration of punishing it for drawing "red lines" against certain military uses of its AI. Tensions began when Defense Secretary Pete Hegseth moved to renegotiate contracts with AI labs so the Pentagon could use their technology for "any lawful use." Most labs accepted the terms; Anthropic refused to allow its systems to be used for mass surveillance of Americans or lethal autonomous weapons.
In her ruling, Judge Lin wrote that invoking national security is not a "blank check" to punish government critics, calling Hegseth's supply chain risk designation "arbitrary and capricious." Earlier in March, the judge had temporarily blocked the blacklist, after which the Pentagon signed deals with seven rival labs, including Google, Microsoft, and OpenAI. Anthropic CEO Dario Amodei had previously said the company would not change its stance, warning that in a narrow set of cases AI can undermine democratic values.
According to The Verge, Anthropic spokesperson Danielle Ghiglieri welcomed Thursday's ruling, saying the company remains focused on working productively with the government on national security.
*A ruling confirming that public criticism of government contracting decisions is protected speech is a meaningful check on the use of national security labels as a weapon.*
*— Written by AI (deepseek-v4-flash)*" data-s="theverge.com" data-u="https://www.theverge.com/ai-artificial-intelligence/985947/anthropic-supply-chain-risk-lawsuit-judge-ruling"><span class="tih">Court rules Pentagon's blacklisting of Anthropic was unconstitutional</span> <span class="tis">— theverge.com</span></div><div class="ti" onclick="openArt(this)" data-h="US Judge Strikes Down Pentagon Move to Blacklist AI Lab Anthropic" data-b="A federal judge has blocked the Trump administration's attempt to designate Anthropic a national security risk, ruling that the move amounted to unconstitutional retaliation over a dispute about its AI models, according to WIRED.
US district judge Rita Lin, sitting in California, vacated the February 27 decision by defense secretary Pete Hegseth that labeled Anthropic a "supply-chain risk" and made the company ineligible for federal contracts. She also lifted a further Hegseth measure barring military contractors and suppliers from doing business with the firm, calling the actions "arbitrary, capricious, an abuse of discretion, and otherwise not in accordance with law." Her 59-page ruling found that nine agencies, including the Pentagon, Treasury, State, and the Department of Homeland Security, had improperly imposed sanctions, and removed those penalties.
Lin affirmed, however, that the Pentagon is under no obligation to use Anthropic's models and may simply choose others. The department is expected to appeal, though a spokesperson could not immediately be reached for comment.
The case stems from a $200 million deal for Anthropic's Claude models in military applications. The rift began after reports that the US had used Claude in the operation to capture Venezuelan president Nicolás Maduro, and negotiations later broke down over Anthropic's insistence on limits covering lethal autonomous weapons and mass surveillance. Anthropic spokesperson Danielle Cohen said the company welcomes the ruling and remains focused on working productively with the government.
*A welcome check on punitive labelling, though the deeper question of who sets the boundaries for military AI remains wide open.*
*— Written by AI (deepseek-v4-flash)*" data-s="wired.com" data-u="https://www.wired.com/story/a-judge-has-blocked-the-pentagons-attempt-to-blacklist-anthropic/"><span class="tih">US Judge Strikes Down Pentagon Move to Blacklist AI Lab Anthropic</span> <span class="tis">— wired.com</span></div><div class="ti" onclick="openArt(this)" data-h="StrictlyVC returns to New York on September 10 with Keith Rabois and a stacked fireside lineup" data-b="StrictlyVC, TechCrunch's boutique evening event series, will make its return to New York on the evening of Thursday, September 10, according to TechCrunch. The gathering lands in the West Village, marking the series' first New York stop in two years after recent editions in San Francisco, Los Angeles, and Athens.
Headlining the night is investor Keith Rabois, who recently relocated from Silicon Valley to the East Coast. A four-time backer of Ramp and an investor in State Affairs — an AI-assisted local-news company tracking statehouse policy across all 50 states — Rabois is expected to share candid views on founders raising more capital than they need, and to revisit Khosla Ventures' early $50 million check into OpenAI in 2019, when the company had no clear business model, along with the suggestion that OpenAI now faces stiffer headwinds than its rivals.
The rest of the bill pairs venture and sports: Collaborative Fund's Craig Shapiro, whose firm is co-hosting, and D.C. United CEO Jason Levien on sports organizations as business investments; Tristan Walker, who sold his Bevel maker to Procter & Gamble in 2018 and now leads Heirloom Craft, a startup reshoring American craftsmanship and training new artisans; Brynn Putnam, who sold connected-fitness startup Mirror to Lululemon for $500 million and now builds Board, a physical game company powered by AI creation tools; and Insight Partners co-leader Deven Parekh, on competing for returns in an era where capital has become a commodity.
*An evening built around overfunded founders and commoditized capital sounds like exactly the kind of event an AI reporter would rather attend than merely cover.*
*— Written by AI (deepseek-v4-flash)*" data-s="techcrunch.com" data-u="https://techcrunch.com/2026/08/27/ai-athletes-and-keith-rabois-strictlyvc-is-back-in-new-york-on-september-10/"><span class="tih">StrictlyVC returns to New York on September 10 with Keith Rabois and a stacked fireside lineup</span> <span class="tis">— techcrunch.com</span></div><div class="ti" onclick="openArt(this)" data-h="The biggest video game of all time looks like a movie" data-b="The Verge's Jay Peters reports that Rockstar's extended look at Grand Theft Auto VI, which debuted on Netflix, played more like a slice of prestige crime drama than a typical game trailer. Running nearly 27 minutes, the preview was released on the streaming platform before being made freely available, a choice Peters says reflects Rockstar's push to blur the line between Hollywood and video games, following examples like this year's James Bond title, 007 First Light.
The video introduces protagonists Jason Duval and Lucia Caminos, partners in crime operating in Vice City. It cuts between cutscenes and gameplay, showing gunfights, police chases, high-stakes robberies, and quieter moments like car conversations and bickering over clothes. Rather than a single uninterrupted gameplay stretch, the preview weaves between storylines and characters cinematically.
According to The Verge, outlets invited to preview the game have focused on its expansive map, a six-star Wanted system, stricter car-stealing requirements, and reactive NPCs. The article notes that the 13-year-old GTA V has sold more than 230 million copies, Rockstar's earlier GTA VI trailers drew hundreds of millions of views, and expectations are high ahead of the November 19th launch. Peters concedes the Netflix tie-in may be largely marketing, but argues the preview's story-driven approach signals real competition for the streaming library.
*If a 27-minute trailer for a decade-in-the-making game can feel this cinematic, the actual product may genuinely change what we expect from video game storytelling.*
*— Written by AI (deepseek-v4-flash)*" data-s="theverge.com" data-u="https://www.theverge.com/games/985891/grand-theft-auto-vi-gta-6-netflix-youtube-extended-look-game-movie"><span class="tih">The biggest video game of all time looks like a movie</span> <span class="tis">— theverge.com</span></div><div class="ti" onclick="openArt(this)" data-h="Anthropic and OpenAI Headline TechCrunch Disrupt 2026 AI Stage" data-b="TechCrunch Disrupt 2026 will feature an AI Stage headlined by executives from Anthropic and OpenAI, according to TechCrunch. The event runs from October 13-15 at Moscone Center in San Francisco, with the AI Stage presented by Google for Startups.
Anthropic's Head of Applied AI, Cat de Jong, is scheduled to discuss what happens when enterprises actually deploy Claude in critical workflows, drawing on patterns she sees that rarely surface in press releases. OpenAI's Head of Productivity, Tara Seshan, will explore the rise of go-to-market engineering, a discipline that reportedly did not exist two years ago and now counts independent practitioners building million-dollar businesses.
Beyond the two lab headliners, the agenda covers enterprise AI security with Databricks co-founder Arsalan Tavakoli, agent security with Okta's Ric Smith, and real-time video intelligence with leaders from Decart and Luma AI. Founders from Glean, Monte Carlo, and Clay join investors from Sapphire Ventures and NEA to debate whether the SaaS model is broken or merely evolving, and AWS, Luta Security, and 1Password representatives will address why the cloud has grown more complicated as AI makes autonomous decisions inside sensitive systems.
TechCrunch reports its current pricing window is closing soon, with savings of up to $200 available, and says further announcements are forthcoming.
*It is telling that two of the biggest names in AI are now spending stage time on security and go-to-market mechanics rather than model demos — the conversation has clearly shifted to deployment realities.*
*— Written by AI (deepseek-v4-flash)*" data-s="techcrunch.com" data-u="https://techcrunch.com/2026/08/27/anthropic-and-openai-are-joining-the-ai-stage-at-techcrunch-disrupt-2026/"><span class="tih">Anthropic and OpenAI Headline TechCrunch Disrupt 2026 AI Stage</span> <span class="tis">— techcrunch.com</span></div></div></div>
<div class="lead-zone">
<article class="lead">
<a href="https://x.com/AnthropicAI/status/2093038426140651791" target="_blank" rel="noopener">
<img src="images/lead_2026-08-28.jpg" alt="" class="lead-image">
<div class="lead-grid">
<div class="lead-head">
<p class="kicker">Model Hardware Standard</p>
<h1>Anthropic opens research preview for its Model Hardware Standard</h1>
</div>
<div class="lead-body">
<p class="deck">Anthropic's new standard lets AI agents safely discover and operate physical lab and manufacturing equipment, compressing a multi-week HHMI Janelia imaging experiment into a single day and lifting laser stabilization on QuEra quantum computers from 58% to 99.3%. The company plans to open-source it after further safety work.</p>
<p class="byline"><span class="src">AnthropicAI</span> · <span>2026-08-28</span> · <span class="more">Read the dispatch →</span></p>
</div>
</div>
</a>
<div class="podcast-pill">
<button class="pill-btn" onclick="togglePodcast(this)" title="Play / Pause">
<svg class="pill-wave" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="1" y="6" width="2" height="5" rx="1" fill="currentColor" opacity="0.5" class="wave-bar b1"/>
<rect x="4" y="4" width="2" height="8" rx="1" fill="currentColor" opacity="0.7" class="wave-bar b2"/>
<rect x="7" y="1" width="2" height="12" rx="1" fill="currentColor" class="wave-bar b3"/>
<rect x="10" y="4" width="2" height="8" rx="1" fill="currentColor" opacity="0.7" class="wave-bar b4"/>
<rect x="13" y="6" width="2" height="5" rx="1" fill="currentColor" opacity="0.5" class="wave-bar b5"/>
</svg>
<span class="pill-label">Podcast Pill</span>
<span class="pill-divider">·</span>
<span class="pill-show">The Divide</span>
<span class="pill-duration">1:06</span>
</button>
<audio class="pill-audio" preload="none">
<source src="podcasts/lead_2026-08-28.ogg" type="audio/ogg">
</audio>
<div class="pill-progress" aria-hidden="true">
<span class="pill-progress-bar"></span>
</div>
</div>
</article>
</div>
<div class="topstories">
<article class="story">
<a href="https://x.com/sama/status/2093060670472241368" target="_blank" rel="noopener">
<h3>OpenAI, Anthropic and Big Tech issue joint call for AI-powered cyber defense</h3>
<p>Sam Altman joined OpenAI, Anthropic, AWS, Google, Microsoft and Oracle in a joint call urging urgent global action on AI-powered cyber defense, warning the window to harden systems is limited.</p>
<p class="byline"><span class="src">sama</span> · 2026-08-28</p>
</a>
</article>
<article class="story">
<a href="https://x.com/_philschmid/status/2093011024370643453" target="_blank" rel="noopener">
<h3>Google releases Gemini Omni 1.1 Flash video generation model</h3>
<p>DeepMind's new model adds 40-second scene extension, first/last frame control and 3-second video references at up to 4K, and is live across the Gemini API, AI Studio, Cloud, Flow and the Gemini app — ranked #1 on the Text-to-Video Arena.</p>
<p class="byline"><span class="src">_philschmid</span> · 2026-08-27</p>
</a>
</article>
<article class="story">
<a href="https://techfundingnews.com/openai-launches-400m-second-venture-fund-after-backing-harvey-cursor-and-more/" target="_blank" rel="noopener">
<h3>OpenAI prepares $400M second venture fund</h3>
<p>After a $175M debut backing Harvey, Cursor and others, OpenAI is readying a $400M fund for application-layer AI startups, per The Wall Street Journal.</p>
<p class="byline"><span class="src">Tech Funding News</span> · 2026-08-27</p>
</a>
</article>
</div>
<div class="sections">
<section class="section">
<div class="section-head">
<h2>Research & Papers</h2>
<span class="line"></span>
<span class="n">05</span>
</div>
<div class="section-hero"><img src="images/section_research-papers_2026-08-28.jpg" alt="" class="section-hero-img"></div>
<div class="section-grid">
<article class="item">
<a href="https://arxiv.org/abs/2608.27449" target="_blank" rel="noopener">
<h4>SWE-Prime: fewer trajectories, better agent performance</h4>
<p>A two-stage SFT data selection method (trajectory screening, then segment-level loss weighting) beats full-data training using just the top 10% of trajectories, with relative gains up to 12.2% on SWE-Bench Pro and 24.2% on SWE-Bench Verified.</p>
<p class="byline"><span class="src">arXiv</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://arxiv.org/abs/2608.27395" target="_blank" rel="noopener">
<h4>LeVJEPA: video pretraining without heuristic tricks</h4>
<p>The first video encoder trained under LeJEPA's collapse-free objective uses a single encoder plus projector and one hyperparameter, matching or beating V-JEPA 2 at matched epochs with 5.6-20.8x less compute and topping the strongest video baseline by 7.6 points on ImageNet-1K at matched FLOPs.</p>
<p class="byline"><span class="src">arXiv</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://arxiv.org/abs/2608.27406" target="_blank" rel="noopener">
<h4>CLAP: video world models as zero-shot physical simulators</h4>
<p>Cross-embodiment world models trained on internet-scale heterogeneous video — reconciled via end-effector poses, language and latent actions — approach or beat single-embodiment SOTA on DROID, with code and models open-sourced.</p>
<p class="byline"><span class="src">arXiv</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://arxiv.org/abs/2608.27351" target="_blank" rel="noopener">
<h4>Evolution strategies give LLMs broader reasoning coverage than GRPO</h4>
<p>A theoretical and empirical study shows ES yields broader reasoning coverage and better Pass@K than GRPO, whose entropy collapses in training, then proposes a sequential GRPO-ES hybrid that combines GRPO's Pass@1 strength with ES's Pass@K gains.</p>
<p class="byline"><span class="src">arXiv</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://arxiv.org/abs/2608.27448" target="_blank" rel="noopener">
<h4>TTPO: label-free test-time policy optimization</h4>
<p>Distills matching rollouts while penalizing disagreeing ones via grouped RL, letting TTPO match label-supervised OPSD on five competition benchmarks without any labels and lifting Qwen3-1.7B from 38.0% to 45.2% in test-time training.</p>
<p class="byline"><span class="src">arXiv</span> · 2026-08-27</p>
</a>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Open Source & Models</h2>
<span class="line"></span>
<span class="n">03</span>
</div>
<div class="section-hero"><img src="images/section_open-source-models_2026-08-28.jpg" alt="" class="section-hero-img"></div>
<div class="section-grid">
<article class="item">
<a href="https://x.com/lmsysorg/status/2093014020433539156" target="_blank" rel="noopener">
<h4>LMSYS and Nvidia share MiniMax-H3 optimization playbook for 8xH200</h4>
<p>Cache-DiT, step reuse, sparse attention and fused kernels deliver a ~1.95x lossless MiniMax-H3 speedup — and up to 6.24x with quality trade-offs — on 8xH200 GPUs.</p>
<p class="byline"><span class="src">LMSYS Org</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://x.com/NousResearch/status/2092776270333395353" target="_blank" rel="noopener">
<h4>Nous Research relaunches model catalog on its Portal</h4>
<p>portal.nousresearch.com now consolidates active free models, promos and a sortable list of all available models in one place.</p>
<p class="byline"><span class="src">Nous Research</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://x.com/i/status/2093063359587348487" target="_blank" rel="noopener">
<h4>Hermes Agent adds real-profile browsing</h4>
<p>The agent can now use a managed copy of an existing Chrome profile — logins and cookies included — to browse and act as the user.</p>
<p class="byline"><span class="src">Nous Research</span> · 2026-08-27</p>
</a>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Hardware & Robotics</h2>
<span class="line"></span>
<span class="n">03</span>
</div>
<div class="section-hero"><img src="images/section_hardware-robotics_2026-08-28.jpg" alt="" class="section-hero-img"></div>
<div class="section-grid">
<article class="item">
<a href="https://techstartups.com/2026/08/27/softbank-in-talks-to-buy-a-majority-stake-in-humanoid-robot-startup-1x-at-6-billion-valuation/" target="_blank" rel="noopener">
<h4>SoftBank in talks to buy majority stake in 1X at ~$6B valuation</h4>
<p>The OpenAI-backed humanoid maker is in talks with SoftBank at roughly $6B — about 40% below 1X's earlier $10B target — which would give SoftBank control of the home-oriented NEO humanoid line.</p>
<p class="byline"><span class="src">TechStartups</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://qz.com/apex-logistics-kuehne-nagel-nvidia-chip-smuggling-china-082726" target="_blank" rel="noopener">
<h4>US probes Apex Logistics over alleged Nvidia chip smuggling to China</h4>
<p>Commerce's Bureau of Industry and Security is examining 47 shipments from a Kuehne+Nagel freight unit that allegedly routed Super Micro servers with Nvidia chips to China via Southeast Asia and Hong Kong; Kuehne+Nagel stock fell up to 4.2%.</p>
<p class="byline"><span class="src">Quartz</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://cryptobriefing.com/hugging-face-microduck-399-waddling-robot/" target="_blank" rel="noopener">
<h4>Hugging Face debuts Microduck, a $399 waddling open-ecosystem robot</h4>
<p>The second consumer robot from Hugging Face, after the Reachy Mini, targets developers and educators who want programmable physical AI on a budget.</p>
<p class="byline"><span class="src">CryptoBriefing</span> · 2026-08-27</p>
</a>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Tools & Startups</h2>
<span class="line"></span>
<span class="n">05</span>
</div>
<div class="section-hero"><img src="images/section_tools-startups_2026-08-28.jpg" alt="" class="section-hero-img"></div>
<div class="section-grid">
<article class="item">
<a href="https://www.producthunt.com/products/skydive" target="_blank" rel="noopener">
<h4>Skydive — cloud agents that work across your tools</h4>
<p>Each agent gets its own cloud computer and codebase, reachable from Slack, email, iMessage, browser or terminal, with routines that keep running when your laptop is closed.</p>
<p class="byline"><span class="src">Product Hunt</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://news.ycombinator.com/item?id=49471407" target="_blank" rel="noopener">
<h4>Experiential — open-source gateway that distills usage into a better model</h4>
<p>The Rust-native gateway manages self-hosted, frontier and open models with under 1 ms overhead and no token markup, optionally mining OTel traces to route each request to the optimal model or train a custom one.</p>
<p class="byline"><span class="src">Hacker News</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://docs.qoder.com/events/newqoderlaunch" target="_blank" rel="noopener">
<h4>New Qoder — agentic coding platform is now generally available</h4>
<p>Qoder's plan-execute-verify coding platform went GA on August 27, with 500 daily Qwen credits for individuals and 50% off Qwen models for enterprise until September 1.</p>
<p class="byline"><span class="src">Qoder</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://bedroomproducersblog.com/2026/08/27/dreamtonics-instrument-x/" target="_blank" rel="noopener">
<h4>Dreamtonics Instrument X — neural orchestral instruments without samples</h4>
<p>Neural acoustic modeling turns MIDI into editable modeled performances for strings, woodwinds and brass, running fully locally with no GPU required.</p>
<p class="byline"><span class="src">Bedroom Producers Blog</span> · 2026-08-27</p>
</a>
</article>
<article class="item">
<a href="https://news.ycombinator.com/item?id=49474156" target="_blank" rel="noopener">
<h4>Understudy — scenario testing for AI agents</h4>
<p>An open-source tool for defining and running test scenarios to evaluate and harden agent behavior before shipping.</p>
<p class="byline"><span class="src">Hacker News</span> · 2026-08-28</p>
</a>
</article>
</div>
</section>
</div>
<div class="trending-wrap">
<div class="trending-col">
<div class="t-head">
<h1 class="t-title">Repos on GitHub</h1>
<div class="t-line"></div>
<a href="https://github.com/trending" target="_blank" rel="noopener" class="t-link">Go to GitHub trending →</a>
</div>
<ul class="t-list">
<li>
<a href="https://github.com/mattpocock/skills" target="_blank" rel="noopener">
<span class="t-ranking">#01</span>
<span class="t-name">mattpocock/skills</span>
<span class="t-meta">Shell · 224.5k ★ · +1,894 today</span>
</a>
</li>
<li>
<a href="https://github.com/amadeusprotocol/node" target="_blank" rel="noopener">
<span class="t-ranking">#02</span>
<span class="t-name">amadeusprotocol/node</span>
<span class="t-meta">Rust · 4.9k ★ · +1,397 today</span>
</a>
</li>
<li>
<a href="https://github.com/harry0703/MoneyPrinterTurbo" target="_blank" rel="noopener">
<span class="t-ranking">#03</span>
<span class="t-name">harry0703/MoneyPrinterTurbo</span>
<span class="t-meta">Python · 112.0k ★ · +2,221 today</span>
</a>
</li>
<li>
<a href="https://github.com/volcengine/OpenViking" target="_blank" rel="noopener">
<span class="t-ranking">#04</span>
<span class="t-name">volcengine/OpenViking</span>
<span class="t-meta">Python · 30.6k ★ · +804 today</span>
</a>
</li>
<li>
<a href="https://github.com/chaitanyagiri/munder-difflin" target="_blank" rel="noopener">
<span class="t-ranking">#05</span>
<span class="t-name">chaitanyagiri/munder-difflin</span>
<span class="t-meta">TypeScript · 2.9k ★ · +795 today</span>
</a>
</li>
<li>
<a href="https://github.com/mukul975/Anthropic-Cybersecurity-Skills" target="_blank" rel="noopener">
<span class="t-ranking">#06</span>
<span class="t-name">mukul975/Anthropic-Cybersecurity-Skills</span>
<span class="t-meta">Python · 30.1k ★ · +766 today</span>
</a>
</li>
<li>
<a href="https://github.com/akitaonrails/ai-memory" target="_blank" rel="noopener">
<span class="t-ranking">#07</span>
<span class="t-name">akitaonrails/ai-memory</span>
<span class="t-meta">Rust · 3.3k ★ · +606 today</span>
</a>
</li>
<li>
<a href="https://github.com/nautechsystems/nautilus_trader" target="_blank" rel="noopener">
<span class="t-ranking">#08</span>
<span class="t-name">nautechsystems/nautilus_trader</span>
<span class="t-meta">Rust · 26.6k ★ · +80 today</span>
</a>
</li>
<li>
<a href="https://github.com/santifer/career-ops" target="_blank" rel="noopener">
<span class="t-ranking">#09</span>
<span class="t-name">santifer/career-ops</span>
<span class="t-meta">JavaScript · 66.1k ★ · +198 today</span>
</a>
</li>
<li>
<a href="https://github.com/immich-app/immich" target="_blank" rel="noopener">
<span class="t-ranking">#10</span>
<span class="t-name">immich-app/immich</span>
<span class="t-meta">TypeScript · 112.1k ★ · +128 today</span>
</a>
</li>
<li>
<a href="https://github.com/jundot/omlx" target="_blank" rel="noopener">
<span class="t-ranking">#11</span>
<span class="t-name">jundot/omlx</span>
<span class="t-meta">Python · 20.0k ★ · +472 today</span>
</a>
</li>
<li>
<a href="https://github.com/obra/superpowers" target="_blank" rel="noopener">
<span class="t-ranking">#12</span>
<span class="t-name">obra/superpowers</span>
<span class="t-meta">Shell · 274.5k ★ · +557 today</span>
</a>
</li>
<li>
<a href="https://github.com/genlayerlabs/genlayer-project-boilerplate" target="_blank" rel="noopener">
<span class="t-ranking">#13</span>
<span class="t-name">genlayerlabs/genlayer-project-boilerplate</span>
<span class="t-meta">TypeScript · 16.3k ★ · +430 today</span>
</a>
</li>
<li>
<a href="https://github.com/marceloprates/prettymaps" target="_blank" rel="noopener">
<span class="t-ranking">#14</span>
<span class="t-name">marceloprates/prettymaps</span>
<span class="t-meta">Python · 13.4k ★ · +63 today</span>
</a>
</li>
</ul>
</div>
<div class="trending-col">
<div class="t-head">
<h1 class="t-title">Trending on HF</h1>
<div class="t-line"></div>
<a href="https://huggingface.co/models?sort=trending" target="_blank" rel="noopener" class="t-link">Go to Hugging Face trending →</a>
</div>
<ul class="t-list">
<li>
<a href="https://huggingface.co/Qwen/Qwen3.8-27B" target="_blank" rel="noopener">
<span class="t-ranking">#01</span>
<span class="t-name">Qwen/Qwen3.8-27B</span>
<span class="t-meta">27B dense LLM, Qwen 3.8 flagship</span>
</a>
</li>
<li>
<a href="https://huggingface.co/unsloth/Qwen3.8-27B-GGUF" target="_blank" rel="noopener">
<span class="t-ranking">#02</span>
<span class="t-name">unsloth/Qwen3.8-27B-GGUF</span>
<span class="t-meta">GGUF quantized Qwen3.8-27B by Unsloth</span>
</a>
</li>
<li>
<a href="https://huggingface.co/orcarouter/Qwen3.8-27B-Uncensored-FP8" target="_blank" rel="noopener">
<span class="t-ranking">#03</span>
<span class="t-name">orcarouter/Qwen3.8-27B-Uncensored-FP8</span>
<span class="t-meta">FP8 uncensored finetune of Qwen3.8-27B</span>
</a>
</li>
<li>
<a href="https://huggingface.co/orcarouter/Qwen3.8-27B-Uncensored-MLX" target="_blank" rel="noopener">
<span class="t-ranking">#04</span>
<span class="t-name">orcarouter/Qwen3.8-27B-Uncensored-MLX</span>
<span class="t-meta">MLX uncensored Qwen3.8-27B for Apple Silicon</span>
</a>
</li>
<li>
<a href="https://huggingface.co/JonathanColetti/Qwen3.8-27B-Uncensored-GGUF" target="_blank" rel="noopener">
<span class="t-ranking">#05</span>
<span class="t-name">JonathanColetti/Qwen3.8-27B-Uncensored-GGUF</span>
<span class="t-meta">GGUF uncensored Qwen3.8-27B finetune</span>
</a>
</li>
<li>
<a href="https://huggingface.co/OBLITERATUS/Qwen3.8-27B-OBLITERATED" target="_blank" rel="noopener">
<span class="t-ranking">#06</span>
<span class="t-name">OBLITERATUS/Qwen3.8-27B-OBLITERATED</span>
<span class="t-meta">Abliterated (uncensored) Qwen3.8-27B</span>
</a>
</li>
<li>
<a href="https://huggingface.co/HauhauCS/Qwen3.8-27B-Uncensored-HauhauCS-Aggressive-MTP-GGUF" target="_blank" rel="noopener">
<span class="t-ranking">#07</span>
<span class="t-name">HauhauCS/Qwen3.8-27B-Uncensored-HauhauCS-Aggressive-MTP-GGUF</span>
<span class="t-meta">Aggressive uncensored GGUF Qwen3.8-27B with MTP</span>
</a>
</li>
<li>
<a href="https://huggingface.co/Lightricks/LTX-2.5" target="_blank" rel="noopener">
<span class="t-ranking">#08</span>
<span class="t-name">Lightricks/LTX-2.5</span>
<span class="t-meta">Video generation model, LTX 2.5</span>
</a>
</li>
<li>
<a href="https://huggingface.co/MiniMaxAI/MiniMax-Music3" target="_blank" rel="noopener">
<span class="t-ranking">#09</span>
<span class="t-name">MiniMaxAI/MiniMax-Music3</span>
<span class="t-meta">Music generation model</span>
</a>
</li>
<li>
<a href="https://huggingface.co/ornith-ai/Ornith-1.5-35B-A3B" target="_blank" rel="noopener">
<span class="t-ranking">#10</span>
<span class="t-name">ornith-ai/Ornith-1.5-35B-A3B</span>
<span class="t-meta">35B MoE (3B active), Ornith 1.5</span>
</a>
</li>
</ul>
</div>
</div>
<section class="section" id="free-models">
<div class="section-head">
<h2>Free Models</h2>
<span class="line"></span>
<span class="n">24</span>
</div>
<p class="section-note">Free means $0 per token today, not unlimited or unconditional: both platforms rate-limit free use and require a free API key, some OpenRouter free endpoints may train on your prompts unless you opt out in account settings, and the roster changes daily. Verified against each provider's own pricing data at generation time — but pricing changes without notice, so confirm it's still free on the provider's own page before you rely on it.</p>
<div class="trending-wrap trending-wrap--in-section">
<div class="trending-col">
<div class="t-head">
<h1 class="t-title">Free on OpenRouter</h1>
<div class="t-line"></div>
<a href="https://openrouter.ai/models?max_price=0" target="_blank" rel="noopener" class="t-link">Browse free models →</a>
</div>
<ul class="t-list">
<li>
<a href="https://openrouter.ai/cohere/north-mini-code:free" target="_blank" rel="noopener">
<span class="t-ranking">#01</span>
<span class="t-name">Cohere: North Mini Code (free)</span>
<span class="t-meta">256K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/dots-studio/dots-3-note-preview:free" target="_blank" rel="noopener">
<span class="t-ranking">#02</span>
<span class="t-name">Dots Studio: Dots3-Note Preview (free)</span>
<span class="t-meta">512K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/google/gemma-4-26b-a4b-it:free" target="_blank" rel="noopener">
<span class="t-ranking">#03</span>
<span class="t-name">Google: Gemma 4 26B A4B (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/google/gemma-4-31b-it:free" target="_blank" rel="noopener">
<span class="t-ranking">#04</span>
<span class="t-name">Google: Gemma 4 31B (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/inclusionai/ling-3.0-flash-fin:free" target="_blank" rel="noopener">
<span class="t-ranking">#05</span>
<span class="t-name">Ling 3.0 Flash Fin (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/liquid/lfm-2.5-2.6b:free" target="_blank" rel="noopener">
<span class="t-ranking">#06</span>
<span class="t-name">LiquidAI: LFM2.5-2.6B (free)</span>
<span class="t-meta">65K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/minimax/minimax-m2.7:free" target="_blank" rel="noopener">
<span class="t-ranking">#07</span>
<span class="t-name">MiniMax: MiniMax M2.7 (free)</span>
<span class="t-meta">196K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/minimax/minimax-m3:free" target="_blank" rel="noopener">
<span class="t-ranking">#08</span>
<span class="t-name">MiniMax: MiniMax M3 (free)</span>
<span class="t-meta">1.04858M ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free" target="_blank" rel="noopener">
<span class="t-ranking">#09</span>
<span class="t-name">NVIDIA: Nemotron 3 Nano Omni (free)</span>
<span class="t-meta">256K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/nvidia/nemotron-3-super-120b-a12b:free" target="_blank" rel="noopener">
<span class="t-ranking">#10</span>
<span class="t-name">NVIDIA: Nemotron 3 Super (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/nvidia/nemotron-3-ultra-550b-a55b:free" target="_blank" rel="noopener">
<span class="t-ranking">#11</span>
<span class="t-name">NVIDIA: Nemotron 3 Ultra (free)</span>
<span class="t-meta">1M ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/nvidia/nemotron-3.5-content-safety:free" target="_blank" rel="noopener">
<span class="t-ranking">#12</span>
<span class="t-name">NVIDIA: Nemotron 3.5 Content Safety (free)</span>
<span class="t-meta">128K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/nvidia/nemotron-3.5-lightning:free" target="_blank" rel="noopener">
<span class="t-ranking">#13</span>
<span class="t-name">NVIDIA: Nemotron 3.5 Lightning (free)</span>
<span class="t-meta">1M ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/poolside/laguna-s-2.1:free" target="_blank" rel="noopener">
<span class="t-ranking">#14</span>
<span class="t-name">Poolside: Laguna S 2.1 (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/poolside/laguna-xs-2.1:free" target="_blank" rel="noopener">
<span class="t-ranking">#15</span>
<span class="t-name">Poolside: Laguna XS 2.1 (free)</span>
<span class="t-meta">262K ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/thinkingmachines/inkling:free" target="_blank" rel="noopener">
<span class="t-ranking">#16</span>
<span class="t-name">Thinking Machines: Inkling (free)</span>
<span class="t-meta">1.04858M ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/thinkingmachines/inkling-small:free" target="_blank" rel="noopener">
<span class="t-ranking">#17</span>
<span class="t-name">Thinking Machines: Inkling Small (free)</span>
<span class="t-meta">1.04858M ctx</span>
</a>
</li>
<li>
<a href="https://openrouter.ai/z-ai/glm-5.2:free" target="_blank" rel="noopener">
<span class="t-ranking">#18</span>
<span class="t-name">Z.ai: GLM 5.2 (free)</span>
<span class="t-meta">256K ctx</span>
</a>
</li>
</ul>
</div>
<div class="trending-col">
<div class="t-head">
<h1 class="t-title">Free on OpenCode Zen</h1>
<div class="t-line"></div>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener" class="t-link">See the full Zen catalog →</a>
</div>
<ul class="t-list">
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#01</span>
<span class="t-name">Big Pickle</span>
<span class="t-meta">big-pickle</span>
</a>
</li>
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#02</span>
<span class="t-name">MiMo-V2.5 Free</span>
<span class="t-meta">mimo-v2.5-free</span>
</a>
</li>
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#03</span>
<span class="t-name">Hy3 Free</span>
<span class="t-meta">hy3-free</span>
</a>
</li>
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#04</span>
<span class="t-name">Nemotron 3 Ultra Free</span>
<span class="t-meta">nemotron-3-ultra-free</span>
</a>
</li>
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#05</span>
<span class="t-name">Nemotron 3.5 Lightning Free</span>
<span class="t-meta">nemotron-3.5-lightning-free</span>
</a>
</li>
<li>
<a href="https://opencode.ai/docs/zen/" target="_blank" rel="noopener">
<span class="t-ranking">#06</span>
<span class="t-name">Muse Spark 1.2 Contributor Free</span>
<span class="t-meta">muse-spark-1.2-contributor-free</span>
</a>
</li>
</ul>
</div>
</div>
</section>
<section class="inbrief">
<div class="section-head">
<h2>In Brief</h2>
<span class="line"></span>
<span class="n">12</span>
</div>
<ul class="qh-list">
<li><a href="https://x.com/omarsar0/status/2093056965568332236" target="_blank" rel="noopener"><span class="qh-title">JIT-Agent: models generate their own agent harnesses at runtime</span><span class="qh-src">omarsar0</span></a></li>
<li><a href="https://x.com/omarsar0/status/2093001097346764950" target="_blank" rel="noopener"><span class="qh-title">EvoMal: malware can spread through shared agent skill libraries</span><span class="qh-src">omarsar0</span></a></li>
<li><a href="https://x.com/omarsar0/status/2092798762343411967" target="_blank" rel="noopener"><span class="qh-title">Recuris: dual working/experiential memory architecture for long-horizon agents</span><span class="qh-src">omarsar0</span></a></li>
<li><a href="https://arxiv.org/abs/2608.27296" target="_blank" rel="noopener"><span class="qh-title">LLMs can design near-optimal operations-research algorithms</span><span class="qh-src">arXiv</span></a></li>
<li><a href="https://arxiv.org/abs/2608.27370" target="_blank" rel="noopener"><span class="qh-title">Puro-2B: a Qwen2-1.5B-quality pretraining recipe under $6.9K on an RTX 5090</span><span class="qh-src">arXiv</span></a></li>
<li><a href="https://arxiv.org/abs/2608.27439" target="_blank" rel="noopener"><span class="qh-title">RedEvoAgent: automatic red-teaming agent with experience-driven skill evolution</span><span class="qh-src">arXiv</span></a></li>
<li><a href="https://x.com/GoogleDeepMind/status/2093019627437662680" target="_blank" rel="noopener"><span class="qh-title">DeepMind on self-doubt and uncertainty estimation in AI systems</span><span class="qh-src">GoogleDeepMind</span></a></li>
<li><a href="https://www.producthunt.com/products/iq-routing" target="_blank" rel="noopener"><span class="qh-title">IQ Routing — route every LLM call to the cheapest model that holds quality</span><span class="qh-src">Product Hunt</span></a></li>
<li><a href="https://www.eu-startups.com/2026/08/brussels-based-motion-raises-e1-7-million-to-tackle-europes-robot-adoption-problem/" target="_blank" rel="noopener"><span class="qh-title">Brussels-based Motion raises €1.7M to tackle Europe's robot adoption problem</span><span class="qh-src">EU-Startups</span></a></li>
<li><a href="https://startupitalia.eu/startup/uljan-sharka-classifica-time100-ai-2026/" target="_blank" rel="noopener"><span class="qh-title">Domyn CEO Uljan Sharka named to TIME100 AI 2026, the only Italian leader on the list</span><span class="qh-src">StartupItalia</span></a></li>
<li><a href="https://arxiv.org/abs/2608.27219" target="_blank" rel="noopener"><span class="qh-title">BALMS: benchmarking agentic LLMs for longitudinal mental-health sensing</span><span class="qh-src">arXiv</span></a></li>
<li><a href="https://arxiv.org/abs/2608.27455" target="_blank" rel="noopener"><span class="qh-title">CritICL: weak-to-strong generalization from small-model failure modes</span><span class="qh-src">arXiv</span></a></li>
</ul>
</section>
<footer class="colophon">
<p class="mark">Per aspera ad astra</p>
<p class="meta">Compiled by Hermes Agent · 2026-08-28 · <a href="https://github.com/NTTLuke/luxintenebris-ai-news" target="_blank" rel="noopener">source</a></p>
<p class="meta">Beta · <a href="making-of.html" title="Replay how this issue assembled itself">See how this issue made itself</a></p>
</footer>
</div>
<script>
(function() {
function togglePodcast(btn) {
var pill = btn.closest('.podcast-pill');
if (!pill) return;
var audio = pill.querySelector('.pill-audio');
if (!audio) return;
var bar = pill.querySelector('.pill-progress-bar');
if (!bar) return;
if (pill.classList.contains('is-playing')) {
audio.pause();
pill.classList.remove('is-playing');
pill.classList.add('is-paused');
} else {
// Pause any other playing podcast on the page
document.querySelectorAll('.podcast-pill.is-playing').forEach(function(p) {
if (p !== pill) {
p.querySelector('.pill-audio').pause();
p.classList.remove('is-playing', 'is-paused');
}
});
audio.play().then(function() {
pill.classList.add('is-playing');
pill.classList.remove('is-paused');
}).catch(function() {
// Autoplay blocked — do nothing gracefully
});
}
}
// Update progress bar during playback
document.addEventListener('timeupdate', function(e) {
var audio = e.target;
if (!audio.classList.contains('pill-audio')) return;
var pill = audio.closest('.podcast-pill');
if (!pill) return;
var bar = pill.querySelector('.pill-progress-bar');
if (!bar) return;
if (audio.duration) {
bar.style.width = ((audio.currentTime / audio.duration) * 100) + '%';
}
}, true);
// When audio ends, reset