Show HN: Adam – An embeddable cross-platform AI agent library
marcobambini
24 points
8 comments
May 06, 2026
Related Discussions
Found 5 related stories in 98.8ms across 8,303 title embeddings via pgvector HNSW
- Show HN: I built a database for AI agents Kappa90 · 11 pts · April 07, 2026 · 71% similar
- Show HN: 49Agents – Infinite canvas IDE for AI agents alpadurza · 16 pts · April 28, 2026 · 66% similar
- Show HN: Open-source browser for AI agents theredsix · 118 pts · March 11, 2026 · 62% similar
- Show HN: AgentSwarms – free hands-on playground to learn agentic AI, no setup rohan044 · 12 pts · April 26, 2026 · 62% similar
- Show HN: Open-source playground to red-team AI agents with exploits published zachdotai · 21 pts · March 15, 2026 · 62% similar
Discussion Highlights (6 comments)
lucrbvi
Cool but why would anyone write an agent in C? Since the language is verbose it seems to be a painful choice to use C for this task.
legel
For anyone in AI, this reads like someone starting a new company called Google
thornewolf
They have named themselves sqliteai and are releasing a library called adam. this is just advanced seo. seems neat though
pantsforbirds
It's a neat product, but I am also a bit confused by the choice to use C as the primary language. I would think you'd want something more ergonomic since this is entirely I/O bound. I'm 100% on board with using C for the rag or sqlite sync solutions, but the agent itself seems like it would be much easier to write in another language and build on those tools. Even something like go would be much easier to adopt.
dorianzheng
i built a similar project named boxlite (embeddable micro-VM) and agentlite (agent in boxlite). i like your idea
lewisjoe
Jetbrains maintain a kotlin based ADK - https://github.com/JetBrains/koog Since it's written using kotlin multiplatform it's compilable to js/wasm/ios/android or any platform of choice. Worth checking out.