arXiv cs.AI→ original

Context Graph: researchers taught enterprise AI agents to work without queries

Researchers published on arXiv the Context Graph architecture — a new type of enterprise AI agent that does not wait for a question but proactively provides the needed information. The system, built on the Anthropic Claude API, tracks changes in enterprise data in real time and reduces the average time to deliver the needed insight from 47 minutes to less than 30 seconds, achieving Precision@5 = 0.83.

AI-processed from arXiv cs.AI; edited by Hamidun News
Context Graph: researchers taught enterprise AI agents to work without queries
Source: arXiv cs.AI. Collage: Hamidun News.
◐ Listen to article

Researchers on July 10, 2026, published a paper on arXiv with a Context Graph architecture—a living relational data structure that moves corporate AI agents from passive "wait for a query" mode to proactive: in tests on three business scenarios, the average time to obtain needed information dropped from 47 minutes to under 30 seconds.

Why reactive mode slows down corporate AI

The authors identify a fundamental problem with modern RAG systems and agent frameworks: they wait for a query. An employee must realize they need information, formulate it correctly, and ask the system—creating delays from minutes to hours. Meanwhile, significant critical signals are lost: the person simply didn't know to ask, or was occupied with another task when the important event occurred.

Context Graph fundamentally changes this logic. Instead of answering queries, the system builds a living model of the enterprise and independently sends notifications when significant changes occur. The graph stores business objects—contracts, incidents, deals, tasks—their relationships and history of state transitions. Everything updates continuously in real time, without user intervention.

How the three components of the system work

The Context Graph architecture consists of three sequential layers, each performing a separate role in the chain from event to notification:

  • Delta Detection Engine — continuously monitors the graph for changes: status updates, responsibility shifts, new relationships, deadline violations. This component "notices" when something has happened.
  • Proactivity Scorer — ranks potential notifications by three parameters: event urgency, relevance to the specific user, and alignment with their role and context (persona-fit). The authors derived a single Proactivity Score formula combining all three metrics into one numerical priority.
  • Surfacing LayerLLM generates the final message for the employee with justification and context from the graph. In the authors' implementation, this layer is handled by the Anthropic Claude API.

The entire Python implementation is based on NetworkX and provided in full in the paper text—it can be reproduced from scratch without additional dependencies.

What three corporate use cases demonstrated

The system was tested on three intentionally "generic" scenarios to show architectural universality rather than industry-specific optimization:

  • Contract lifecycle management—tracking statuses, deadlines, and responsibility changes
  • Response to incidents in engineering teams—early escalation before a developer "notices" the problem
  • Tracking "hygiene" of the sales pipeline—monitoring stalled deals and missed activities

Final metrics compared to reactive baseline mode:

  • Precision@5 = 0.83—in top-5 notifications, 83% are genuinely relevant
  • False positive rate = 0.11—only 11% of notifications are unnecessary
  • Average time to information delivery: from 47 minutes (reactive mode) to under 30 seconds—a 90+ fold reduction

What this means

The work translates the concept of "proactive agent" from academic discussion into a working open-source prototype. If results reproduce in production, corporate AI systems could deliver the right context at the right time—without a request—which is especially valuable where information delays cost money: engineering incidents, overdue contracts, stalled pipelines.

Frequently Asked Questions

Which LLM handles the final notifications?

In the Surfacing Layer, the authors use the Anthropic Claude API—it generates notifications with context explanation and priority justification for the specific employee.

Where can the implementation code be found?

The complete end-to-end Python implementation on NetworkX and Anthropic Claude API is included directly in the arXiv paper 2607.07721, available free at arxiv.org.

ZK
Hamidun News
AI news without noise. Daily editorial selection from 400+ sources. A product by Zhemal Khamidun, Head of AI at Alpina Digital.

Need AI working inside your business — not just in your newsfeed?

I build production AI for companies — custom CRM, internal tools, autonomous agents, workflow automation. Owned by you, shaped to your process, no per-seat tax. Built by Zhemal Khamidun, CPO of AlpinaGPT (AI platform, 6,000+ users).

What do you think?
Loading comments…