Show stories

Live mirror
30 storiesupdated 0s agoView source snapshot
  1. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    168comments
  2. Show HN: Capsule – Single-file web apps that save their data into SQLite(withcapsule.app ↗)
    113comments
  3. Show HN: Pizza Bot – An inbox for AI agents that work in the background(github.com/pizza-bot-app ↗)
    3comments
  4. Show HN: Hacking a $20 4G wireless hotspot into a texting device(bkovac.github.io ↗)
    30comments
  5. Show HN: Agenttik – work on multiple projects in parallel with AI agents(github.com/pausan ↗)
    discuss
  6. Show HN: Panel – A research workspace where the agent can build its own panes(github.com/greentfrapp ↗)
    11comments
  7. Show HN: DeadLock OS – A Linux terminal puzzle game(crazygames.com ↗)
    discuss
  8. Show HN: Check if your IP has appeared in a residential proxy network(haveibeenproxied.com ↗)
    34comments
  9. Show HN: Ordewell – turn one goal into an ordered plan of coding-agent tasks(github.com/ordewell ↗)
    29comments
  10. Show HN: HonestSky, a free iOS weather app without ads or subscriptions(apps.apple.com ↗)
    discuss
  11. Show HN: Redis City – Explore how Redis works in an interactive 3D model(poltora.dev ↗)
    25comments
  12. Show HN: DaiDocs, AI memory as a plain-text file format, not a service(github.com/kerneta ↗)
    1comments
  13. Show HN: Loss. a tiny satire about AI progress(workatloss.com ↗)
    7comments
  14. Show HN: SCIP MIP solver bindings for Go, ported from russcip(github.com/egoisutolabs ↗)
    discuss
  15. Show HN: farseer.space – fly anywhere in the universe in your browser(farseer.space ↗)
    1comments
  16. Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS(github.com/jamesryanatx ↗)
    21comments
  17. Show HN: Sass – Rust and WASM(github.com/zoosky ↗)
    discuss
  18. Show HN: Warp – Run DeepSeek v4.1 Flash with 5 GB of RAM at 3.77 tok/s(github.com/sqliteai ↗)
    2comments
  19. Show HN: Kinesis – Control your Mac with the Meta Neural Band(github.com/callbacked ↗)
    45comments
  20. Show HN: Pelican-bicycle alternatives(gally.net ↗)
    45comments
  21. Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost(narilabs.com ↗)
    31comments
  22. Show HN: Open-source passive NFC tag that signs with ECDSA, verified on-chain(github.com/mwbpnftechnology ↗)
    discuss
  23. Show HN: Let agent read files with secrets while redacting values for LLM contex(github.com/daniel-sc ↗)
    1comments
  24. Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend(airmailai.net ↗)
    6comments
  25. Show HN: TrailVid – Cinematic Travel Animations(trailvid.com ↗)
    discuss
  26. Show HN: Omni – Open-source workplace agent, built on Postgres
    discuss
  27. Show HN: TabPFN-3.5, a Tabular Foundation Model for messy real-world tables(priorlabs.ai ↗)
    1comments
  28. Show HN: I ported COLMAP (photogrammetry) to the browser in WASM and WebGPU(offlinetools.io ↗)
    discuss
  29. Show HN: I built a tiny camera that knows where it is(mightycamera.com ↗)
    4comments
  30. Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme(neobrutalism.dev ↗)
    76comments

Show HN: DaiDocs, AI memory as a plain-text file format, not a service

5 pointsby 6h agogithub.com
1 comments
5h agoHN ↗

I'm Amin, and I've built DaiDocs which is a file format for portable AI memory.

A .dai file is a UTF-8 text with three parts: A YAML header, structured JSON which contains what the model understands and the original text. The idea is that AI memory should be like a JPEG, an open format that models can read instead of something that is locked to the memory providers database/format.

In claude code , sessions are auto converted into .dai files every 4000 tokens and the raw is saved throughout. The model can then read from the memory and only read what it needs into the window.

Claude Desktop, Cursor, Zed, and Codex CLI can read the same store through MCP. Auto save is currently only on Claude Code.

On the LongMemEval-S benchmark .dai scored 83% using GPT-40 ranking second and 92% using a stronger model (Fable 5).

On the benchmark the model scored 83% compared to 60.6% when the content is just given to the llm, you are basically 22.4% worse off not using a memory system. The format also reduced the input tokens used per question in the benchmark to 10,065 instead of 103,601 (10.3x fewer tokens used).

Another feature that I wanted it to have was to use my own subscription on claude for converting to the DaiDocs format and retrieving from it, which it now does.