Show HN: Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V
A minimalist, modern microkernel built from datasheets, supporting IPC, multitasking, and SMP, explicitly avoiding legacy features and largely eschewing AI-generated code for core kernel components.
View Origin Link
Product Positioning & Context
AI Executive Synthesis
A minimalist, modern microkernel built from datasheets, supporting IPC, multitasking, and SMP, explicitly avoiding legacy features and largely eschewing AI-generated code for core kernel components.
Anos represents a deep dive into low-level systems programming, emphasizing manual implementation and a strict 'no AI code' rule for the kernel. While a hobby project, its focus on a ~100KiB microkernel for x86-64 and RISC-V, built from datasheets and avoiding legacy features, highlights a pursuit of efficiency and modern architecture. The developer's experience with LLMs for documentation and tests, but not core kernel code, provides a critical insight into the current limitations of AI in highly specialized, correctness-critical systems development. This project underscores the enduring value of fundamental engineering knowledge and the current boundaries of AI assistance in foundational software layers.
I pretty much always have a kernel project going on, and have been that way for decades. Over the past couple of years, that's been Anos, which has gotten further along than any of my previous hobby kernels, supporting IPC, multitasking, SMP (x86-64 only right now) and running on real hardware.LLMs (mostly Claude Code) have been used during development, but I learned early on that it's not _great_ at code at this level, so I've restricted its use to mostly documentation and tests. There's _a little_ AI code in the user space, but I have a strict "no AI code" rule in the kernel itself. I find this helps not only with the quality / functionality of the code, but also with learning - for example, even though I've written multiple kernels in the past, it wasn't until Anos that I _truly_ grokked pagetable management and what was possible with a good VMM interface, and if I'd outsourced that implementation to an LLM I probably wouldn't have learned any of that.In terms of approach, Anos avoids legacy platform features and outdated wiki / tutorial resources, and instead tries to implement as much as possible from manuals and datasheets, and it's definitely worked out well so far. There's no support for legacy platform features or peripherals, with all IO being memory mapped and MSI/MSI-X interrupts (no PIC), for example, which has helped keep the codebase focused and easy to work on. The kernel compiles to about 100KiB on x86-64, with enough features to be able to support multitasking and device drivers in user space.As a hobby project, progress ebbs and flows with pressures of my day job etc, and the main branch has been quiet for the last few months. I have however been working on a USB stack as time allows, and hopefully will soon have at least basic HID support to allow me to take the next step and make Anos interactive.I don't know how useful projects like Anos are any more, given we now live in the age of AI coding, but it's a fun learning experience and helps keep me technically grounded, and I'll carry on with it for as long as those things remain true.
microkernel
x86-64
RISC-V
IPC
multitasking
SMP
real hardware
LLMs (mostly Claude Code)
Related Ecosystem & Alternatives
Discover adjacent products, open-source repositories, and developer tools sharing similar technical architecture.
Deep-Dive FAQs
What is Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V?
Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V is analyzed by our AI as: A minimalist, modern microkernel built from datasheets, supporting IPC, multitasking, and SMP, explicitly avoiding legacy features and largely eschewing AI-generated code for core kernel components.. It focuses on Anos represents a deep dive into low-level systems programming, emphasizing manual implementation and a strict 'no AI code' rule for the kernel. Wh...
Where did Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V originate?
Data for Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V was aggregated directly from the Hacker News community ecosystem, representing raw developer and early-adopter sentiment.
When was Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V publicly launched?
The initial public indexing or launch date for Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V within our tracked developer communities was recorded on April 7, 2026.
How popular is Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V?
Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V has achieved measurable traction, logging over 31 traction score and facilitating 7 recorded discussions or engagements.
Which technical categories define Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V?
Based on metadata extraction, Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V is categorized under topics such as: microkernel, x86-64, RISC-V, IPC.
What are some commercial alternatives to Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V?
Our semantic intelligence engine identifies potential commercial alternatives in the SaaS space, such as Databerry, which offers overlapping value propositions.
How does the creator describe Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V?
The original author or development team describes the product as follows: "I pretty much always have a kernel project going on, and have been that way for decades. Over the past couple of years, that's been Anos, which has gotten further along than any of my previous hobb..."
Community Voice & Feedback
Discovery Source

Hacker News
Aggregated via automated community intelligence tracking.
Tech Stack Dependencies
No direct open-source NPM package mentions detected in the product documentation.
Media Tractions & Mentions
No mainstream media stories specifically mentioning this product name have been intercepted yet.
Deep Research & Science
No direct peer-reviewed scientific literature matched with this product's architecture.
I haven't read through them yet, but I'm curious what forces the minimum requirement of 256MiB RAM?