+0.36 Steel Bank Common Lisp (www.sbcl.org S:+0.38 )
287 points by tosh 5 days ago | 107 comments on HN | Moderate positive Contested Mission · v3.7 · 2026-02-26 04:50:33 0
Summary Free Access & Scientific Progress Advocates
SBCL's About page presents an open-source compiler project with strong alignment to UDHR principles of universal access, freedom of information, education, and scientific participation. The content and structure emphasize free access to professional-grade software tools, comprehensive documentation, and community participation mechanisms without barriers. The project advocates for democratized access to technology and scientific computing capabilities across economic and geographic boundaries.
Article Heatmap
Preamble: +0.36 — Preamble P Article 1: +0.27 — Freedom, Equality, Brotherhood 1 Article 2: +0.47 — Non-Discrimination 2 Article 3: ND — Life, Liberty, Security Article 3: No Data — Life, Liberty, Security 3 Article 4: ND — No Slavery Article 4: No Data — No Slavery 4 Article 5: ND — No Torture Article 5: No Data — No Torture 5 Article 6: ND — Legal Personhood Article 6: No Data — Legal Personhood 6 Article 7: ND — Equality Before Law Article 7: No Data — Equality Before Law 7 Article 8: ND — Right to Remedy Article 8: No Data — Right to Remedy 8 Article 9: ND — No Arbitrary Detention Article 9: No Data — No Arbitrary Detention 9 Article 10: ND — Fair Hearing Article 10: No Data — Fair Hearing 10 Article 11: ND — Presumption of Innocence Article 11: No Data — Presumption of Innocence 11 Article 12: ND — Privacy Article 12: No Data — Privacy 12 Article 13: ND — Freedom of Movement Article 13: No Data — Freedom of Movement 13 Article 14: ND — Asylum Article 14: No Data — Asylum 14 Article 15: ND — Nationality Article 15: No Data — Nationality 15 Article 16: ND — Marriage & Family Article 16: No Data — Marriage & Family 16 Article 17: ND — Property Article 17: No Data — Property 17 Article 18: ND — Freedom of Thought Article 18: No Data — Freedom of Thought 18 Article 19: +0.67 — Freedom of Expression 19 Article 20: ND — Assembly & Association Article 20: No Data — Assembly & Association 20 Article 21: ND — Political Participation Article 21: No Data — Political Participation 21 Article 22: ND — Social Security Article 22: No Data — Social Security 22 Article 23: ND — Work & Equal Pay Article 23: No Data — Work & Equal Pay 23 Article 24: ND — Rest & Leisure Article 24: No Data — Rest & Leisure 24 Article 25: +0.41 — Standard of Living 25 Article 26: +0.39 — Education 26 Article 27: +0.79 — Cultural Participation 27 Article 28: ND — Social & International Order Article 28: No Data — Social & International Order 28 Article 29: ND — Duties to Community Article 29: No Data — Duties to Community 29 Article 30: ND — No Destruction of Rights Article 30: No Data — No Destruction of Rights 30
Negative Neutral Positive No Data
Aggregates
Editorial Mean +0.36 Structural Mean +0.38
Weighted Mean +0.52 Unweighted Mean +0.48
Max +0.79 Article 27 Min +0.27 Article 1
Signal 7 No Data 24
Volatility 0.17 (Medium)
Negative 0 Channels E: 0.6 S: 0.4
SETL -0.05 Structural-dominant
FW Ratio 55% 18 facts · 15 inferences
Evidence 15% coverage
3H 2M 2L 24 ND
Theme Radar
Foundation Security Legal Privacy & Movement Personal Expression Economic & Social Cultural Order & Duties Foundation: 0.36 (3 articles) Security: 0.00 (0 articles) Legal: 0.00 (0 articles) Privacy & Movement: 0.00 (0 articles) Personal: 0.00 (0 articles) Expression: 0.67 (1 articles) Economic & Social: 0.41 (1 articles) Cultural: 0.58 (2 articles) Order & Duties: 0.00 (0 articles)
HN Discussion 12 top-level · 25 replies
emptybits 2026-02-24 19:26 UTC link
Can we get a "(1999)" date on this, please? Only half joking becuase I see Common Lisp and, sure, I upvote ... but honestly, what's the purpose of this HN submission without context?

SBCL is obviously fantastic but let's contrast with another popular implementation: Embeddable Common Lisp. https://ecl.common-lisp.dev/

Top marks for SBCL performance but ECL can be a better fit for embedding into mobile applications, running on lighter weight hardware, and in the browser.

jibal 2026-02-24 19:32 UTC link
What about it?
shadowgovt 2026-02-24 19:38 UTC link
My favorite bit of SBCL trivia is the name: this is descended from Carnegie Mellon's build.

Steel. Bank.

philipkglass 2026-02-24 20:09 UTC link
Older HN users may recall when busy discussions had comments split across several pages. This is because the Arc [1] language that HN runs on was originally hosted on top of Racket [2] and the implementation was too slow to handle giant discussions at HN scale. Around September 2024 Dang et al finished porting Arc to SBCL, and performance increased so much that even the largest discussions no longer need splitting. The server is unresponsive/restarting a lot less frequently since these changes, too, despite continued growth in traffic and comments:

https://news.ycombinator.com/item?id=41679215

[1] https://paulgraham.com/arc.html

[2] https://racket-lang.org/

pjmlp 2026-02-24 20:15 UTC link
While great option, LispWorks and Allegro Common Lisp should not be overlooked, too many focus on SBCL + Emacs and then complain about Lisp tooling.
iberator 2026-02-24 21:18 UTC link
How come it is named like that? It's a product of some old school consortium?

I know that ford,gm etc also made some R&D into software

moonlion_eth 2026-02-25 02:30 UTC link
common lisp is the one true language
ivanb 2026-02-25 04:21 UTC link
It is probably the best Common Lisp compiler when it comes to type checking. However, it leaves a lot to be desired. For example, it cannot specialize an element type for lists. With lists being the go-to structure, if you attempt to (declaim) every function, you will immediately see how vague and insufficient the types come out compared to even Python.

The ability to specialize list parameter types would greatly improve type checking. It would also help the compiler to optimize lists into unboxed arrays.

Please don't tell me that static type checking doesn't lend itself to CL. The ship has sailed. It does work with SBCL rather well, but it can be better.

Some may blame the Common Lisp standard. It indeed doesn't specify a way for list specialization, but the syntax is extensible, so why not make it as a vendor extension, with a CDR? AFAIK CDR was supposed to be to Common Lisp what PEP is to Python.

I would use vectors and arrays, but in CL ergonomics is strongly on the side of lists. For short structures vectors and arrays don't make sense.

I think it is also a time to outgrow the standard and be more brave with extensions. A lot has changed since the standard. It is still very capable, but as powerful as CL is, some things just cannot be practically implemented in the language and have to be a part of the runtime. Yes, I'm talking about async stuff.

So I got the idea to see how difficult it would be to bolt on async runtime to SBCL. To my surprise the project is hosted on awfully slow SourceForge and project discussions are still happening on mailing lists. Sorry, but I am too corrupted by GitHub's convenience.

ivanb 2026-02-25 04:51 UTC link
Hijacking the thread, the JetBrains plugin for Common Lisp had not been maintained since 2023. I forked it and vibed it back to life.

You don't need Emacs. Feel free to enjoy Common Lisp in your regular IDE.

https://github.com/ivanbulanov/SLT/releases

uhoh-itsmaciek 2026-02-25 05:57 UTC link
The program with possibly my favorite error message: https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/src/runti...
eigenspace 2026-02-25 11:23 UTC link
I didn't use Common Lisp for very long, but unbeknownst to me at the time, getting interested in (SB)CL was a bit of a turning point for me from being primarily interested in physics to being interested in programming and software development.

During my physics undergrad, I was pretty uninterested in programming and I was only interested in "pen-and-paper" physics. Numerical solutions weren't very intellectually interesting to me. I knew a bit of Matlab, Python, and Mathematica, but of those languages only Mathematica was remotely intriguing to me, but I ran into some contexts already where all the above languages where just too slow to solve some important problems.

I spent the summer before my Masters degree started trying to decide on what language I should learn and master, I didn't want to have this annoying situation where I had to mix and match between slow expressive languages and fast, clunky languages.

I almost went for Fortran, but then I happened upon some old threads about Common Lisp, and people discussing some concepts I wasn't really familiar with like metaprogramming and I got quite intrigued. Metaprogramming was the first software topic that I found intellectually stimulating in its own right. Before that, programming was just a means to an end for me.

I spent a couple months reading old Common Lisp books and learning to use it, before I then stumbled upon Julia, and found that it had just about everything I was looking for -- an active scientific community, expressiveness, performance, interesting metaprogramming facilities.

At that point, I pretty much stopped all my common lisp usage in favour of Julia, and still heavily use Julia to this day in my job as a software developer, but I credit Common Lisp (and SBCL in particular) with being the thing that actually convinced me that there was something interesting about programming in its own right.

larsbrinkhoff 2026-02-25 12:06 UTC link
SBCL has been in the works since 1980.
tosh 2026-02-24 19:33 UTC link
nb: there is a SBCL release at end of every month: https://www.sbcl.org/all-news.html
wiz21c 2026-02-24 19:45 UTC link
I don't get it :-(
oytis 2026-02-24 19:46 UTC link
It's a recurrent event when someone on HN discovers some well-known piece of technology.
giraffe_lady 2026-02-24 20:02 UTC link
That's very fun and makes so much more sense than my half guess that it was from a defunct regional mid 20th century bank I had never heard of.
tmtvl 2026-02-24 20:16 UTC link
It's awesome and the lucky 10,000 deserve to be introduced to it?
cultofmetatron 2026-02-24 20:30 UTC link
> too many focus on SBCL + Emacs and then complain about Lisp tooling.

well yea, lispworks and allegro are expensive commercial projects. I wish sbcl, the defacto best open source option had better tooling. emacs is great and all for the true believers but I'm an unwashed vscode user. For plenty of reasons I can't justify it in my startup but I'd love to spend more time working with common lisp for personal projects but my time is limited so I prefer clojure or rust.

rayiner 2026-02-24 20:46 UTC link
I love this comment:

"Btw, we rolled this out over 3 weeks ago and I think you're the first person to ask about it on HN. There was one earlier question by email. I think that qualifies as a splash-free dive."

I had no idea and I'm an HN addict!

stackghost 2026-02-24 20:59 UTC link
I use emacs regularly (in fact I have it running right now) and I think the complaints against it are perfectly valid. Emacs is awesome in lots of ways, but it also really, really sucks in lots of other ways.

But putting emacs aside, the SBCL tooling seems reasonable to me. The real reason I rarely reach for lisp these days is not the tooling, but because the Common Lisp library ecosystem is a wasteland of partial implementations and abandoned code bases.

It's also been my experience that LLMs are better at writing more mainstream languages, especially "newbie-proof" languages like Go.

In any case, I don't see why one would reach for Allegro or Lispworks over SBCL unless one really enjoys writing lisp by hand and needs specific features they offer that SBCL doesn't. I would imagine those features are vanishingly few.

e12e 2026-02-24 21:11 UTC link
I suppose this version of Arc for sbcl is different from what hn runs on?:

https://github.com/pauek/arc-sbcl

And there's no version of Anarki that runs on sbcl?:

https://arclanguage.github.io/

kej 2026-02-24 21:23 UTC link
From the About page:

>SBCL derives most of its code from CMU CL, created at Carnegie Mellon University. Radical changes have been made to some parts of the system (particularly bootstrapping) but many fundamentals (like the mapping of Lisp abstractions onto the underlying hardware, the basic architecture of the compiler, and much of the runtime support code) are only slightly changed. Enough changes have been made to the interface and architecture that calling the new system CMU Common Lisp would cause confusion - the world does not need multiple incompatible systems named CMU CL. But it's appropriate to acknowledge the descent from the CMU hackers (and post-CMU CMU CL hackers) who did most of the heavy lifting to make the system work. So the system is named Steel Bank after the industries where Andrew Carnegie and Andrew Mellon, respectively, made the big bucks.

p_l 2026-02-24 21:43 UTC link
In addition to the official reference to CMU, there is a second origin for the name.

  SBCL - Sanely Bootstrappable Common Lisp
You see, when SBCL was forked from CMU, a major effort was done so that it could be compiled using any reasonably complete Common Lisp implementation, unlike CMU CL. Because CMU CL essentially could only be compiled by itself, preferably in the same version, which meant compiling and especially cross-compiling was complex process that involved bringing the internal state of CMUCL process to "new version".

SBCL redid the logic heavily into being able to host the core SBCL compiler parts in any mostly-complete (does not have to be complete!) ANSI CL implementation, then uses that to compile the complete form.

Meaning you can grab SBCL source tarball, plus one of GNU clisp, ECL, Clozure CL, even GNU Common Lisp at one point, or any of the commercial implementations, including of course CMUCL, and C compiler (for the thin runtime support) and build a complete and unproblematic SBCL release with few commands

dmux 2026-02-24 22:17 UTC link
LispWorks and Allegro are both interesting, but I've found their IDE offerings to be very limited. I haven't used either since I was playing around with CL during Covid, but from what I recall, even the basic IDE experience of writing code was severely lacking: poor autocomplete, poor syntax highlighting, clunky interfaces. In most discussions I see about them, they're only recommended for their compilers, not for their IDE offerings.
Keyframe 2026-02-24 22:20 UTC link
It was and remained an esoteric mystery to me ever since I saw Nichimen's work (with it); Pricing was just out of this world to even consider at the time.
vincent-manis 2026-02-25 03:39 UTC link
If I couldn't have Scheme, I'd happily take CL.
ethagnawl 2026-02-25 05:57 UTC link
Wow. I'd always thought/assumed the S was in reference to (Guy) Steele.
webnrrd2k 2026-02-25 06:19 UTC link
”Mr. Potatohead is on the loose!” is my favorite, iirc from an fedora linux distribution.
reikonomusha 2026-02-25 06:26 UTC link
Coalton [1] adds Haskell-style types (so typed lists, type classes, parametric polymorphism, ...) to Common Lisp, and compiles to especially efficient code in SBCL.

[1] https://coalton-lang.github.io/

cess11 2026-02-25 07:43 UTC link
How would your async stuff differ from the threading interface in SBCL and e.g. lparallel and bordeaux-threads?
atilaneves 2026-02-25 08:29 UTC link
> You don't need Emacs

Yes, I do.

a-french-anon 2026-02-25 08:49 UTC link
>For example, it cannot specialize an element type for lists.

Yes, but that would be a CL violation (or an extension to provide via something else than DEFTYPE), since DEFTYPE's body can't be infinitely recursive; cf https://www.lispworks.com/documentation/HyperSpec/Body/m_def...

>if you attempt to (declaim) every function, you will immediately see how vague and insufficient the types come out compared to even Python.

Indeed, but 1) it is used by the compiler itself while cpython currently ignores annotations and 2) runtime and buildtime typing use the same semantics and syntax, so you don't need band-aids like https://github.com/agronholm/typeguard

But yeah, CL's type system is lacking in many places. In order of practical advantages and difficulty to add (maybe): recursive DEFTYPE, typed HASH-TABLEs (I mean the keys and values), static typing of CLOS slots (invasive, like https://github.com/marcoheisig/fast-generic-functions), ..., parametric typing beyond ARRAYs.

jwr 2026-02-25 08:51 UTC link
I used both, AllegroCL commercially in production, and was disappointed in both. Especially AllegroCL given its price and promises made.
tkrn 2026-02-25 09:52 UTC link
SAVE-LISP-AND-DIE is also pretty metal function name. Goes nicely with the shout-case too.
rurban 2026-02-25 12:21 UTC link
Also racket since then was ported to use the fastest known scheme, chez, from the quite simple and slow mzscheme.
stassats 2026-02-25 14:28 UTC link
Still 40 years to go.
Editorial Channel
What the content says
+0.50
Article 27 Cultural Participation
High Advocacy Practice
Editorial
+0.50
SETL
+0.16

Content strongly advocates for participation in scientific and cultural life through free access to advanced compiler technology and participation in software development. Project enables scientific progress and technical cultural participation.

+0.45
Article 19 Freedom of Expression
High Advocacy Practice
Editorial
+0.45
SETL
-0.16

Content exemplifies freedom to seek, receive, and impart information through open publication of source code, documentation, and technical specifications. Permissive license enables unrestricted communication and knowledge sharing.

+0.40
Article 26 Education
High Advocacy Framing
Editorial
+0.40
SETL
+0.14

Content embodies commitment to education and technical capacity-building through comprehensive, free documentation and learning resources. Project supports full development of human potential in programming.

+0.35
Preamble Preamble
Medium Advocacy
Editorial
+0.35
SETL
-0.14

Content emphasizes free/open source nature and commitment to making high-performance software freely available to all; implicit advocacy for universal access to technology.

+0.30
Article 2 Non-Discrimination
Medium Framing
Editorial
+0.30
SETL
-0.13

No explicit non-discrimination statement; discrimination is implicitly absent through universal framing of access.

+0.25
Article 1 Freedom, Equality, Brotherhood
Low Framing
Editorial
+0.25
SETL
-0.12

Content implicitly acknowledges equal treatment by providing identical access and tools to all users regardless of background; no discrimination language observed.

+0.25
Article 25 Standard of Living
Low Framing
Editorial
+0.25
SETL
-0.12

Content implicitly supports adequate standard of living through provision of free, high-performance development tools that reduce barriers to software development and economic participation.

ND
Article 3 Life, Liberty, Security

Content does not address right to life, security, or personal safety; not applicable to technical software project.

ND
Article 4 No Slavery

Content does not address slavery or servitude; not applicable to open source software project.

ND
Article 5 No Torture

Content does not address torture or cruel treatment; not applicable to technical software project.

ND
Article 6 Legal Personhood

Content does not address right to recognition before law; not applicable to open source software project.

ND
Article 7 Equality Before Law

Content does not address equal protection before law; not applicable to software project context.

ND
Article 8 Right to Remedy

Content does not address remedies for rights violations; not applicable to technical project.

ND
Article 9 No Arbitrary Detention

Content does not address arbitrary arrest or detention; not applicable to software project.

ND
Article 10 Fair Hearing

Content does not address fair trial rights; not applicable to open source software project.

ND
Article 11 Presumption of Innocence

Content does not address criminal procedure or presumption of innocence; not applicable to technical project.

ND
Article 12 Privacy

Content does not address privacy, family, home, or correspondence; not applicable to software project context.

ND
Article 13 Freedom of Movement

Content does not address freedom of movement; not applicable to open source software project.

ND
Article 14 Asylum

Content does not address asylum or political refuge; not applicable to software project.

ND
Article 15 Nationality

Content does not address nationality or state membership; not applicable to technical project.

ND
Article 16 Marriage & Family

Content does not address marriage or family rights; not applicable to software project.

ND
Article 17 Property

Content does not address property rights; not applicable to open source software distribution context.

ND
Article 18 Freedom of Thought

Content does not address freedom of thought, conscience, or religion; not applicable to technical software project.

ND
Article 20 Assembly & Association

Content does not address freedom of assembly or association; not directly applicable to software project context.

ND
Article 21 Political Participation

Content does not address political participation or governance; project governance structures not detailed on page.

ND
Article 22 Social Security

Content does not address social security or cultural participation; not applicable to software project.

ND
Article 23 Work & Equal Pay

Content does not address right to work or labor conditions; not applicable to unpaid open source volunteer context.

ND
Article 24 Rest & Leisure

Content does not address rest, leisure, or reasonable working hours; not applicable to open source software project.

ND
Article 28 Social & International Order

Content does not address social order or conditions for rights realization; not applicable to software project context.

ND
Article 29 Duties to Community

Content does not address duties to community or limits on rights abuse; implicit in open source governance but not explicitly stated.

ND
Article 30 No Destruction of Rights

Content does not address prohibition of rights destruction; not applicable to software project.

Structural Channel
What the site does
+0.50
Article 19 Freedom of Expression
High Advocacy Practice
Structural
+0.50
Context Modifier
+0.20
SETL
-0.16

Website provides free access to documentation in multiple formats (HTML, PDF, TeXInfo), public bug database, and mailing list; these infrastructures actively enable information sharing and freedom of expression for developers.

+0.45
Article 27 Cultural Participation
High Advocacy Practice
Structural
+0.45
Context Modifier
+0.30
SETL
+0.16

Provides free tools for scientific computing, statistics (profiler), code analysis (coverage tool), and enables participation in technical community through open development model.

+0.40
Preamble Preamble
Medium Advocacy
Structural
+0.40
Context Modifier
0.00
SETL
-0.14

Website structure provides free download, documentation, and bug-reporting mechanisms with no paywalls or access restrictions; community participation invited.

+0.35
Article 2 Non-Discrimination
Medium Framing
Structural
+0.35
Context Modifier
+0.15
SETL
-0.13

Technical design and access mechanisms show no observable discrimination; open participation structure treats all users equally.

+0.35
Article 26 Education
High Advocacy Framing
Structural
+0.35
Context Modifier
0.00
SETL
+0.14

Website provides multiple educational resources: getting started guide, comprehensive manual in multiple formats, historical documentation, and learning-oriented support infrastructure.

+0.30
Article 1 Freedom, Equality, Brotherhood
Low Framing
Structural
+0.30
Context Modifier
0.00
SETL
-0.12

Platform architecture treats all contributors and users symmetrically through open bug database and mailing list; no tiered access.

+0.30
Article 25 Standard of Living
Low Framing
Structural
+0.30
Context Modifier
+0.15
SETL
-0.12

Free availability of compiler and runtime system removes cost barriers to software development, enabling broader participation in technology sector.

ND
Article 3 Life, Liberty, Security

No observable structural elements relevant to security of person.

ND
Article 4 No Slavery

No observable structural elements relevant to Article 4.

ND
Article 5 No Torture

No observable structural elements relevant to Article 5.

ND
Article 6 Legal Personhood

No observable structural elements relevant to Article 6.

ND
Article 7 Equality Before Law

No observable structural elements relevant to Article 7.

ND
Article 8 Right to Remedy

No observable structural elements relevant to Article 8.

ND
Article 9 No Arbitrary Detention

No observable structural elements relevant to Article 9.

ND
Article 10 Fair Hearing

No observable structural elements relevant to Article 10.

ND
Article 11 Presumption of Innocence

No observable structural elements relevant to Article 11.

ND
Article 12 Privacy

No observable structural elements relevant to Article 12.

ND
Article 13 Freedom of Movement

No observable structural elements relevant to Article 13.

ND
Article 14 Asylum

No observable structural elements relevant to Article 14.

ND
Article 15 Nationality

No observable structural elements relevant to Article 15.

ND
Article 16 Marriage & Family

No observable structural elements relevant to Article 16.

ND
Article 17 Property

No observable structural elements relevant to Article 17.

ND
Article 18 Freedom of Thought

No observable structural elements relevant to Article 18.

ND
Article 20 Assembly & Association

While mailing lists enable community gathering, content does not explicitly address freedom of assembly as a right.

ND
Article 21 Political Participation

While community-based governance implied by open source model, no explicit participatory governance mechanisms described on the About page.

ND
Article 22 Social Security

No observable structural elements relevant to Article 22.

ND
Article 23 Work & Equal Pay

No observable structural elements relevant to Article 23.

ND
Article 24 Rest & Leisure

No observable structural elements relevant to Article 24.

ND
Article 28 Social & International Order

No observable structural elements relevant to Article 28.

ND
Article 29 Duties to Community

Permissive license implies trust in community responsibility but no explicit duty-based framing observed.

ND
Article 30 No Destruction of Rights

No observable structural elements relevant to Article 30.

Supplementary Signals
How this content communicates, beyond directional lean. Learn more
Epistemic Quality
How well-sourced and evidence-based is this content?
0.77 low claims
Sources
0.8
Evidence
0.8
Uncertainty
0.7
Purpose
0.8
Propaganda Flags
No manipulative rhetoric detected
0 techniques detected
Emotional Tone
Emotional character: positive/negative, intensity, authority
measured
Valence
+0.4
Arousal
0.3
Dominance
0.5
Transparency
Does the content identify its author and disclose interests?
0.50
✗ Author
More signals: context, framing & audience
Solution Orientation
Does this content offer solutions or only describe problems?
0.82 solution oriented
Reader Agency
0.8
Stakeholder Voice
Whose perspectives are represented in this content?
0.55 2 perspectives
Speaks: institutioncommunity
About: developersindividuals
Temporal Framing
Is this content looking backward, at the present, or forward?
present unspecified
Geographic Scope
What geographic area does this content cover?
global
Linux, BSD, macOS, Solaris, Windows
Complexity
How accessible is this content to a general audience?
moderate medium jargon general
Longitudinal 71 HN snapshots · 8 evals
+1 0 −1 HN
Audit Trail 28 entries
2026-02-28 14:27 eval_success Lite evaluated: Neutral (0.00) - -
2026-02-28 14:27 model_divergence Cross-model spread 0.52 exceeds threshold (4 models) - -
2026-02-28 14:27 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Tech tutorial, no rights stance
2026-02-28 14:22 eval_success Lite evaluated: Neutral (0.00) - -
2026-02-28 14:22 model_divergence Cross-model spread 0.52 exceeds threshold (4 models) - -
2026-02-28 14:22 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral)
reasoning
Tech tutorial, no rights stance
2026-02-26 22:38 eval_success Light evaluated: Neutral (0.00) - -
2026-02-26 22:38 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral)
2026-02-26 20:06 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 20:04 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 20:03 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 20:02 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 20:00 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 20:00 eval_failure Evaluation failed: Error: Unknown model in registry: llama-4-scout-wai - -
2026-02-26 20:00 eval_failure Evaluation failed: Error: Unknown model in registry: llama-4-scout-wai - -
2026-02-26 17:27 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 17:24 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 17:23 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 17:22 rate_limit OpenRouter rate limited (429) model=llama-3.3-70b - -
2026-02-26 08:55 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 08:55 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 08:55 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 08:55 dlq Dead-lettered after 1 attempts: Steel Bank Common Lisp - -
2026-02-26 07:50 eval Evaluated by deepseek-v3.2: +0.24 (Mild positive) 8,950 tokens
2026-02-26 04:50 eval Evaluated by claude-haiku-4-5-20251001: +0.52 (Moderate positive) 10,461 tokens -0.05
2026-02-26 04:45 eval Evaluated by claude-haiku-4-5-20251001: +0.56 (Moderate positive) 10,253 tokens +0.11
2026-02-26 03:51 eval Evaluated by claude-haiku-4-5-20251001: +0.45 (Moderate positive) 10,403 tokens -0.01
2026-02-26 03:04 eval Evaluated by claude-haiku-4-5-20251001: +0.46 (Moderate positive) 10,020 tokens