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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - l-zhi/pith-wiki: Karpathy-style LLM Wiki Desktop...
a569171010 · 2026-06-25 · via Hacker News: Show HN

中文版 → README.zh-CN.md

A local-first LLM knowledge base. Drop in your notes, PDFs, and emails — pith hydrates each into a dense Markdown entry an LLM can read, then lets you chat with your whole library, retrieved by keyword + link traversal. No embeddings, no vector DB. Everything stays in plain files on your disk.

Obsidian vault + pith side by side

Drop a note into your Obsidian vault — pith auto-ingests it into an entry the LLM can pull from mid-conversation.

  • 🗂️ Plain files, not a black box — every entry is Markdown + YAML frontmatter; Obsidian, VS Code, and Git open them natively.
  • 🔍 Retrieval you can reason about — weighted keyword search + link-graph traversal + exact grep. No embedding drift, no vendor lock-in.
  • 💬 Chat that writes back — the agent reads your library through file/wiki tools; /digest distills a conversation into a new entry.
  • 🤖 Auto-ingest + schedule — watch a folder for new files; run agent tasks on a cron (e.g. a daily digest of yesterday's additions).
  • 🔒 Local-first — all data under ~/.pith-wiki/; outbound PII filtering on by default. No cloud, no lock-in.

Design philosophy: data engineering > retrieval algorithms. Don't dump raw docs into a store and hope embeddings pull them back. Use an LLM to hydrate each source into a high-density Markdown entry, then retrieve by keyword + link traversal. Simple, file-based, human-readable.

Input formats: .docx .eml .htm .html .md .pdf .txt. The product is pith; the npm package and repo are historically named pith-wiki.

Install

Desktop app (recommended) — the full experience: chat, inbox, dashboard, link graph, skills, and a scheduled-tasks calendar, all over the same engine and on-disk library. No packaged installer yet, so run it from source:

git clone https://github.com/l-zhi/pith-wiki.git
cd pith-wiki/desktop
npm install
npm run dev      # electron-vite dev (HMR)

CLI (optional — for automation / headless use):

npm install -g pith-wiki
pith-wiki        # launch the REPL

On first launch, onboarding walks you through setup — pick a provider, paste an API key, and point it at a notes folder to watch. Everything lives under ~/.pith-wiki/ (config + wiki data); set PITH_WIKI_HOME for an isolated profile.

Platforms: macOS + Linux are CI-tested (Node 20 / 22); Windows is usable but not yet CI-covered. Dev scripts: npm test / npm run typecheck / npm run build (inside desktop/, or repo root for engine/core). See CONTRIBUTING.md.

What it does

1. Hydrate — compress raw documents (markdown / PDF / DOCX / HTML / email) into Markdown entries roughly 30% of the original size. Strip filler, keep signal. LLMs read these directly.

2. Retrieve — no embeddings, no vector DB. Weighted keyword search (title × 2, tags × 2, summary × 1, content × 0.5) + BFS link traversal, plus exact substring/regex search (wiki_grep) and date-range filters (when an entry was added to the library, or the content's own date). Boring on purpose. Entries are plain Markdown; Obsidian, VS Code, and Git all open them natively.

3. Chat — the agent talks to your library through file + wiki tools (wiki_query fuzzy search, wiki_grep exact search, wiki_get, wiki_read_source, wiki_ingest, read_file / write_file / list_dir, …). Every turn writes a transcript; /digest distills the conversation back into a wiki entry, closing the loop chat → store → retrieve.

4. Auto-ingest — point a watch folder (Obsidian vault, inbox, etc.) at pith in Settings, and changes are auto-enqueued for a background worker to hydrate. Built-in health checks flag orphan links, broken frontmatter, and ID collisions.

5. Schedule (desktop) — set tasks that run an agent prompt on a schedule (once, or cron) — e.g. a daily digest of everything added yesterday. Each fire opens a fresh session you can reopen; ${yyyy-mm-dd -1}-style date placeholders are resolved at run time so "yesterday" is always correct.

Full documentation

Document When to read it
docs/config.md Configuration field reference, additionalReadPaths, on-disk layout
docs/config.example.json Full ~/.pith-wiki/config.json example (multi-provider + watchDirs + queue)
docs/entry-format.md YAML frontmatter spec for entries
docs/architecture.md Three core services + data-flow diagram
docs/security-model.md Sandbox invariants (required reading for contributors)
docs/usage.md CLI reference (advanced / automation — the app is the primary way to run)
SECURITY.md Vulnerability reporting
CONTRIBUTING.md Contribution flow
CHANGELOG.md Version history

License

Apache 2.0 · Copyright (c) 2026 lizhi