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

推荐订阅源

IT之家
IT之家
Last Week in AI
Last Week in AI
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
宝玉的分享
宝玉的分享
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 司徒正美
罗磊的独立博客
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
小众软件
小众软件
Jina AI
Jina AI

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 - nikhilkagita04/continuum: Context dies when you ...
nikhilkagita · 2026-06-23 · via Hacker News: Show HN

ci

Context dies at the app boundary.

You bounce between Claude, Slack, X, Gemini, your design tool — a dozen apps a day — and each one starts blank. What you were just doing in one is invisible to the next, so you become the courier: re-pasting, re-explaining, rebuilding your context over and over.

Continuum carries it across. It quietly remembers what you do in every app — on your machine, private, yours — so the next tool already knows. Ask Claude "what was I just doing in X?" and it does.

Open source. Local-first. A primitive you build on.

Ask Claude what you were doing in another app — and it answers from your captured context

Ask Claude "what was I just doing in X?" — and it answers from your own captured activity.

Install — about 30 seconds

Needs Node 18+. Don't have it? Grab it at nodejs.org or brew install node.

npm install -g continuum-core
continuum verify          # prove it works — no keys, no permissions, no setup

verify captures a sample work session and answers questions about it — the whole capture → memory → recall loop in one command.

Prefer source? git clone https://github.com/nikhilkagita04/continuum && cd continuum && npm link

Use it

continuum start
continuum dashboard

start captures what's on screen, on-device — grant Screen Recording once when macOS prompts. dashboard opens your searchable timeline at localhost:3939.

Connect it to Claude Desktop (MCP)

This is the payoff — Claude answers questions about what you've actually done. Two steps:

  1. Run that — it adds Continuum to Claude Desktop for you (no file editing, your existing config is preserved and backed up).
  2. Fully quit and reopen Claude Desktop (Cmd+Q), then ask it "what was I working on this morning?"

Keep continuum start running so there's something to recall. Using a different MCP client (Cursor, your own agent)? Run continuum mcp-config to print the config and add it yourself.

What it is

A primitive, not an app. Most context tools are either closed "brain" apps you hand everything to, or screen recorders that dump raw frames and leave you to dig. Continuum is the open layer you build on:

  • Sees what you see — on-device OCR of the focused window, captured only when the screen changes (not continuous recording), so it's faithful without being a firehose.
  • Local-first — everything lives in ~/.continuum; credential managers are excluded and PII is redacted; nothing leaves your machine.
  • Composable — query it from the CLI, the SDK, or MCP, so any agent can use your memory.

Tiers

Free Pro (later) Enterprise (later)
Capture · recall · MCP
Embeddings / LLM local, $0 OpenAI / Anthropic hosted
Temporal knowledge graph ✅ team graph

The graph tier needs a frontier model (local models can't do reliable entity extraction), so it's the natural paid line. Everything below it is free and local.

How it works

capture → segment → index → distill

Four stages turn ~29k raw daily events into ~30 LLM calls — and the LLM never touches the capture path, which is what keeps it light. Deep dive: docs/architecture/ingestion-pipeline.md.

Build on it

The stages are importable modules — a useful tool is ~20 lines. See examples/ for a standup generator and the Claude Desktop MCP config.

Develop

npm test
swiftc daemon/stage1/screen.swift -o daemon/stage1/screen

npm test runs the 36-test suite (no network); the second line builds the macOS screen-capture helper. Contributions under DCO (git commit -s). License: Apache-2.0.