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

推荐订阅源

D
DataBreaches.Net
F
Fortinet All Blogs
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
罗磊的独立博客
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
P
Proofpoint News Feed
G
Google Developers Blog
H
Help Net Security

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: Generate Claude Code Workflows using Spec Driven Development approach Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal).
GitHub - nikhilkagita04/continuum: Context dies when you ...
nikhilkagita · 2026-06-23 · via 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.