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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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
graphCTX — local-first memory for coding agents
vignesh_146 · 2026-06-14 · via Hacker News - Newest: "AI"

context and memory layer for AI coding agents

Built to be the best
context layer for AI coding agents.

graphCTX keeps repo knowledge close to the work: commands, conventions, decisions, and hard-won fixes. Developers spend less time re-explaining context and more time shipping, with local memory that is fast, private, and reliable.

$ curl -fsSL https://graph.coder.company/install | sh

See the benchmarks

Same agent, same prompt. graphCTX gives it the repo memory developers otherwise repeat.

[ 01 ] · how it works · architecture

How graphCTX manages memory.

The system is deliberately narrow: capture reliable coding facts, keep them valid as the repo changes, and return only the context the agent can use.

01 CAPTURE

Extract trusted coding facts

graphCTX reads package scripts, lockfiles, CI, editorconfig, AGENTS.md, and session episodes so the memory base starts from repo evidence, not model guesses.

02 ANCHOR

Bind memory to git state

Facts are valid against commits and branches. When code changes, memory moves with the DAG instead of drifting on wall-clock timestamps.

03 PROMOTE

Promote only durable knowledge

Session details can become workspace or user memory only after evidence gates. Secrets and low-trust prose stay out of durable context.

04 RANK

Choose the smallest useful set

A relevance gate scores topic drift, entities, and file scope so the agent gets specific context instead of a noisy memory dump.

05 DELIVER

Attach provenance to every recall

Returned memory is compact, budgeted, and tagged with source provenance, making it easier for developers to trust and audit what the agent uses.

[ 02 ] · benchmarks · measured, not claimed

Benchmarked against Supermemory.

Same coding-fact set, same queries. graphCTX runs locally and answers in ~1ms; a live Supermemory search round-trip measured ~494ms (p50), so recall stays fast and predictable during development. Reproducible: graphctx compare --deep.

Latency stays flat at scale

Per-prompt retrieval p50/p95 as the workspace grows. Indexed lookup plus a bounded semantic re-rank keeps the hot path at ~1ms — a 5,000-fact monorepo retrieves as fast as an empty one.

10 facts p50 1.04ms · p95 1.37ms

510 facts p50 1.15ms · p95 3.94ms

5,010 facts p50 1.33ms · p95 22.27ms

Reliable after compaction

Post-compaction solve rate across 14 coding tasks. graphCTX restored the needed repo fact in every run.

// graphctx eval run --arms A,B,C

// scope: this compares local latency + cost on direct coding-fact retrieval for developer workflows. Supermemory targets general/conversational memory with cloud connectors, cross-document reasoning, and neural embeddings that graphCTX doesn't attempt.

[ 03 ] · install · three commands

Start using repo memory in 30 seconds

No account. No API key. No cloud setup. Install the CLI, connect your agent, and give every session repo-aware memory.

$ curl -fsSL https://graph.coder.company/install | sh

Prefer npm? npm i -g graphctx

01

$ curl -fsSL https://graph.coder.company/install | sh

install the CLI (detects Node / Bun)

02

$ graphctx install claude

wire your agent (claude · cursor · opencode · generic)

03

$ graphctx doctor

verify graphCTX is connected