惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
B
Blog
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
量子位
博客园 - 叶小钗
T
Tailwind CSS Blog
小众软件
小众软件
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
博客园_首页
I
InfoQ
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog

Hacker News: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
Obsidian-native memory for your Claude Code sessions
Alendronat · 2026-04-27 · via Hacker News: Ask HN

https://github.com/mnemos-dev/mnemos Mnemos turns Claude Code session history (the .jsonl files under ~/.claude/projects/) into a folder of refined markdown notes that your next Claude Code session reads as a briefing. Plain text, Obsidian-compatible, no cloud.

  Architectural bit worth talking about: Mnemos does not call any LLM
  API of its own. All refinement happens inside the user's existing
  Claude Code session via `claude --print --dangerously-skip-permissions
  "/<skill> <args>"`. Cost to the user is zero on top of their existing
  subscription. CI grep blocks accidental `anthropic` imports;
  `_child_env()` strips `ANTHROPIC_API_KEY` from every spawned
  subprocess. Subscription quota is the hard line.

  The project pivoted hard between v0.x and v1.0. v0.x copied the
  MemPalace/mem0 hypothesis: chunk conversations into atoms, embed,
  top-K, RRF merge. Phase 0 hit 90% Recall@5 on LongMemEval. Then I
  measured the corpus and the bet broke:

  - RRF score band stuck at 0.014–0.017. Small chunks didn't produce
    sharp embeddings on conversational data.
  - LLM synthesis fed better from whole sessions than from fragments.
  - A 600-node graph nobody — me or the AI — actually traversed.
  - 663 fragments carrying ~860 entity instances; ~50% were just
    folder names.

  v1.0 deleted ~3,000 lines of mining pipeline + ~200 tests, pivoted
  to whole-Sessions-as-memory-units plus an "Identity Layer" that
  distills the user over time.

  v1.1 (today) inverts the trigger: refine when the session ends.
  SessionEnd hook + detached worker that survives Claude Code
  termination via CREATE_BREAKAWAY_FROM_JOB on Windows /
  start_new_session=True on POSIX. SessionStart sync fallback for
  missed cases (mid-stream X-close, kill -9). Three sequential stages
  in the worker: refine -> brief regen -> identity refresh.

  527 tests pass; ChromaDB and sqlite-vec backends produce identical
  recall to four decimals on LongMemEval.

  Full pivot write-up:
  https://github.com/mnemos-dev/mnemos/blob/main/HISTORY.md

  Happy to answer questions about the architecture or the
  v0.x -> v1.0 -> v1.1 path.