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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - Helmus101/weave
anqer · 2026-06-17 · via Hacker News - Newest: "AI"

Local-first relationship & life intelligence engine for macOS. Weave quietly builds a private memory of what you see and do (screen OCR + Gmail/Calendar + contacts), then puts it to work: it watches your back with proactive nudges, answers questions from your own memory, and can act for you in the browser and in native macOS apps.

Everything is stored locally (SQLite via sql.js); cloud calls happen only for the LLM/search features you configure.

What it does

Track

  • Home — a daily morning brief (to-do, what Weave did, notifications, world news, optional sports), proactive "Do-Now" cards, a relationship radar, and response debt.
  • Memory graph — screen captures are OCR'd, reconstructed by layout (sidebar/main/panel are kept separate, not jumbled), summarized into one searchable sentence by a cheap model, and stored with the full OCR retained as the authoritative source for exact facts.
  • Chat — ask questions against your own memory + the web. It can read your Google Calendar and Gmail to answer "what meetings tomorrow?" / "did Sarah email me?", and quotes exact dates/numbers verbatim from the full source.
  • Explorer — browse the raw memory nodes.

Services

  • Commitment tracker — promises you made/owe, extracted from OCR + Gmail.
  • Response debt — email threads awaiting your reply.
  • Routines / Playbooks — scheduled or on-demand briefings (e.g. a meeting brief ~15 min before a calendar event).
  • Browser agent (Chrome extension) — give it a goal; it plans, works in a real Chrome tab, and over-delivers a compared, recommended deliverable. Auto-accepts cookie banners, recovers when stuck (incl. an optional vision fallback), and never clicks pay/submit/confirm.
  • macOS control agent — drive native apps by voice/goal via the Accessibility API (open + play Spotify/Music, Maps directions, multi-step actions in Notes/Mail/etc.).
  • Voice — a global shortcut pops a system-wide mic overlay; speech is transcribed and either controls an app, runs a browser task, or answers in the Responses tab.

Proactive intelligence runs on a graph-aware retrieval + memory-decay foundation, so suggestions and answers get sharper as the graph grows.

Run

npm install
npm run build:ocr        # build the native Apple Vision OCR helper (macOS)
npm run dev:electron     # full app: capture, sync, agents, voice, tray

npm run dev + http://127.0.0.1:5173 gives a renderer-only browser preview, but it has no native bridge — OCR, sync, agents, and account behavior require npm run dev:electron.

Configuration

Provide keys via the environment (legacy in-app values are migrated to the macOS Keychain):

Variable Enables
DEEPSEEK_API_KEY The text LLM behind chat, planning, summaries, deliverables
GOOGLE_CLIENT_ID / GOOGLE_CLIENT_SECRET Gmail + Google Calendar sync (OAuth)
ELEVENLABS_API_KEY Voice transcription (STT)
GEMINI_API_KEY / ANTHROPIC_API_KEY Last-resort vision fallback for the browser agent (optional)
WEAVE_INGEST_PORT Override the localhost port the Chrome extension talks to (default 8765)

Permissions (macOS):

  • Screen Recording — required for OCR capture.
  • Accessibility — required for the macOS control agent (keystrokes / clicking native UI).

Chrome extension (browser agent)

  1. Run the app (it starts the localhost ingest server the extension polls).
  2. chrome://extensions → enable Developer mode → Load unpacked → select the extension/ folder.
  3. Trigger a browser task from a Do-Now item or by voice; the agent works in a dedicated tab and posts its deliverable back to Weave. If you change WEAVE_INGEST_PORT, match it in extension/background.js.

Google scopes

Gmail compose, Calendar events, and Drive scopes were added beyond the original read-only grant. Accounts connected earlier must disconnect and reconnect in Settings to re-consent.

MCP server

A local MCP server exposes Weave's memory graph to clients like Claude Desktop or ChatGPT.

npm run mcp        # stdio
npm run mcp:http   # local HTTP

Tools: status/health, memory search, ask-weave / chat, proactive suggestions, routines & runs, memory-node inspection, commitments, response debt, activity timeline.

Optional env: WEAVE_USER_DATA_DIR, WEAVE_MCP_PORT, WEAVE_MCP_HOST (default 0.0.0.0).

Remote HTTP mode is off unless Weave's Cloud & Remote Access setting is enabled; it uses Supabase session auth and serves only the matching signed-in account namespace. Put it behind your own HTTPS boundary before using it with web connectors.

Example Claude Desktop config:

{
  "mcpServers": {
    "weave": {
      "command": "npm",
      "args": ["run", "mcp"],
      "cwd": "/absolute/path/to/weave"
    }
  }
}

Remote requests must include Authorization: Bearer <supabase_access_token>.

Architecture

  • src/main — Electron privileged services: SQLite persistence (db/), the capture watcher + ocrBridge/ocrLayout (layout-aware OCR), retrieval (vector + BM25 + graph), intelligence (chat synthesis), proactive, routines, morningBrief, commitments/responseDebt, browserAgent + localIngest (extension server), macAgent, google, deepseek, and IPC.
  • src/preload — typed, renderer-safe API bridge (window.weave).
  • src/renderer — React app: Home, Chat, Tasks, Routines, Responses, Explorer, Settings, the voice overlay, and the design-system stylesheet (light, editorial theme driven by :root tokens).
  • extension/ — MV3 Chrome extension: the browser agent's background worker + CDP-driven DOM actions.
  • native/ocr — Swift CLI that captures the screen and runs Apple Vision OCR (with per-line bounds).

Private beta checklist

  • npm run typecheck, npm test, and npm run build pass on a clean machine (or npm run beta:check).
  • Build native helpers before packaging: npm run build:ocr, npm run build:contacts.
  • Verify on macOS: Screen Recording + Accessibility flows, Google connect/reconnect, Apple Contacts sync, the Chrome extension load + a browser task, account switching and current-account deletion.
  • Beta users should understand: contact research is local-only until explicitly enabled; deleting data removes only the current account's local Weave data; the browser preview is not the runtime.

Packaging notes

Signing/notarization are manual. Before a beta build: tag a release candidate, package the Electron app with the native OCR + Apple Contacts binaries included, sign with the Apple Developer identity, notarize and staple, then validate the signed build on a separate macOS machine.

npm run dmg        # build:ocr + build:contacts + signed dmg (CSC identity required)

Notes

The database is a local SQLite file via sql.js (no native addon compilation). Vector search sits behind a local adapter with deterministic embeddings and file-backed persistence, so a real vector DB can be swapped in without touching the watcher or UI call sites.