Frederic Lardinois writes that Harness field CTO Martin Reynolds is addressing the surge in pull requests caused by coding agents, which can increase new code volume from 1.5x to as much as 50x. To manage this "review bottleneck," Harness has launched a rebuilt Code Repository and an AI Code Review product designed specifically for high-frequency agent traffic rather than just human teams. The company's approach focuses on using a software delivery knowledge graph to provide reviewers with context quickly, helping them distinguish critical code changes from routine dependency updates.
- Coding agents can increase the volume of pull requests by 10x to 50x compared to traditional developer workflows.
- Harness rebuilt its repository service as an "AI-first" platform that is Kubernetes-based and runs across multiple clouds.
- The new AI Code Review tool integrates with existing GitHub repositories, allowing teams to use it without migrating their entire codebase.
rohitg00 writes agentmemory, a persistent memory solution for AI coding agents designed to eliminate the need for repetitive context re-explanation between sessions. By silently capturing tool usage and session details through various hooks (including native plugins for Claude Code, Cursor, and Codex), it compresses observations into searchable structured memories that are injected back into subsequent conversations. The system utilizes a hybrid retrieval approach combining BM25 keyword matching, vector embeddings, and knowledge graph traversal to ensure high-quality context injection with significant token savings compared to standard long-context prompting.
- Supports multiple agents including Claude Code, Cursor, GitHub Copilot CLI, Devin, Gemini CLI, OpenCode, Hermes, and more via MCP or native plugins.
- Employs a 4-tier memory consolidation model: Working (raw observations), Episodic (session summaries), Semantic (extracted facts), and Procedural (workflow patterns).
- Offers high retrieval accuracy; real-world benchmarks show up to 95.2% R@5 on the LongMemEval-S dataset.
- Reduces LLM token costs significantly, claiming ~170K tokens per year compared to millions when pasting full context.
- Includes a real-time visualizer (on port 3113) and an observability console for monitoring memory writes, traces, and graph structures.
Hyper-Extract is an LLM framework that transforms unstructured text into strongly-typed knowledge structures, from simple lists to complex knowledge/hyper/spatio-temporal graphs. It follows a three-layer architecture of Auto-Types (8 structural output types), Methods (extraction algorithms), and Templates (domain-specific configurations), and is available as both a CLI tool and a Python SDK.
- Supports 10+ extraction engines including GraphRAG, LightRAG, Hyper-RAG, KG-Gen, and iText2KG
- Offers 80+ ready-to-use domain templates covering Finance, Legal, Medical, TCM, and Industry
- Enables incremental evolution'' feed new documents to expand a knowledge abstract without reprocessing everything
- Unique among compared tools (GraphRAG, LightRAG, KG-Gen) in supporting hypergraphs, spatial graphs, and domain templates simultaneously
-
Gortex is a high-performance, 100% local code-intelligence engine for AI agents and IDEs that indexes code into a persistent provenance-tiered knowledge graph via tree-sitter AST analysis and compiler-grade resolvers for 257 languages, with multi-repository support by default. It exposes the graph through CLI, MCP server, API and web UI, offering semantic search, cross-repo contract detection, speculative execution and live editor overlays aimed at cutting token usage up to 50x by surfacing only needed information.
- Ships as a single static binary for macOS, Linux and Windows with zero external dependencies
- Provides 175 configurable MCP tools, 16 resources and 3 prompts for symbol lookup, blast radius and refactoring
graphify is an AI coding assistant skill that transforms codebases, documents, and images into a structured, queryable knowledge graph. By utilizing deterministic AST parsing via tree-sitter for code and multimodal LLM capabilities for unstructured data like PDFs and screenshots, it creates a comprehensive map of concepts and relationships. This allows developers to understand complex architectures faster and find the "why" behind design decisions. A key advantage is its massive reduction in token usage per query compared to reading raw files, making it highly efficient for large-scale projects. The tool supports 19 programming languages and integrates seamlessly with platforms like Claude Code and Codex, providing an interactive, persistent, and highly organized way to navigate any codebase or research corpus.
An end-to-end raw text-to-graph pipelines. This blog explores the limitations of LangChain extraction when using smaller quantized models, and how BAML can improve extraction success rates.
This tutorial details how to implement persistent memory in Claude Desktop using a local knowledge graph. It covers installation of dependencies (Node.js and Claude Desktop), configuration of `mcp.json` and Claude settings, and how to leverage the Knowledge Graph Memory Server for personalized and consistent responses.
This article details a step-by-step guide on building a knowledge graph from plain text using an LLM-powered pipeline. It covers concepts like Subject-Predicate-Object triples, text chunking, and LLM prompting to extract structured information.
The article discusses the process of preparing PDFs for use in Retrieval-Augmented Generation (RAG) systems, with a focus on creating graph-based RAGs from annual reports containing tables. It highlights the benefits of Graph RAGs over vector store-backed RAGs, particularly in terms of reasoning capabilities, and explores the construction of knowledge graphs for better information retrieval. The author shares insights into the challenges and solutions involved in building an enterprise-ready graph data store for RAG applications.
The article explores how Retrieval-Augmented Generation (RAG) and knowledge graphs can be used together to break down data silos and enable more accurate, context-aware, and insightful AI systems.