HabrJuly 29, 2026🇷🇺Translated from Russian

Inside the AI Companion: How Multi-Agent Orchestration Powers Retail Decision-Making

GlowByte has published a detailed technical overview of its multi-agent AI platform, explaining how a personal AI companion orchestrates specialized agents to support category managers in retail networks.

The platform operates on two distinct layers. The first layer is the personal AI companion, a dedicated assistant assigned to an individual employee. It functions like a McKinsey-level analyst that works around the clock, remembers prior conversations, and maintains a partner-like stance without its own corporate agenda. The companion lives inside the employee’s existing messenger, eliminating the need for new applications.

The second layer consists of narrow functional agents. One agent translates natural-language questions into database queries using Text2SQL technology. Another agent maintains corporate regulations and precedents. A third continuously scans sales data for anomalies. The personal companion acts as the conductor, deciding which agents to invoke and synthesizing their outputs into coherent recommendations.

Proactive Work and Real-World Examples

The companion performs substantial work without explicit requests by using the manager’s calendar, priorities, and live data streams. It prepares daily briefings, drafts messages to suppliers overnight, performs initial diagnostics on margin drops, and assembles supplier dossiers before scheduled meetings.

In one documented case, the system identified a 9.2 percent margin shortfall in Siberian dairy products, traced the issue to a supplier price increase and service-level failures, and isolated the impact to twelve specific stores undergoing refrigeration repairs. In a second case, it recalled a six-month-old decision to freeze prices and compiled negotiation leverage including raw-material price trends and historical service failures.

Agent-to-Agent Coordination and Memory Architecture

When multiple managers are involved, companions communicate via an Agent-to-Agent (A2A) protocol that is disabled by default and restricted to explicit allowlists. This mechanism automatically schedules cross-departmental meetings and tracks commitments without requiring managers to send multiple emails.

Memory is organized in three layers: a corporate knowledge base of regulations that agents can read but not modify; isolated personal memory for each manager; and a collective memory of anonymized successful tactics that undergo human curator review before becoming available to other companions.

Security Controls and Limitations

Autonomy is governed by a three-tier model. Tier 1 permits only internal drafting. Tier 2 actions that affect external systems require explicit human approval inside the messenger. Tier 3 autonomous execution is enabled only after a trust period and compliance review. The orchestrator itself is deliberately prevented from writing arbitrary SQL, reducing the attack surface even if prompt injection occurs.

The article acknowledges that prompt injection remains an unsolved industry problem and that the current perimeter still leaves open questions about cumulative data reach through multiple functional agents.

Related articles

安全客AI Security

OpenAI Open-Sources Codex Security CLI for AI-Driven Code Vulnerability Detection and Remediation

OpenAI has quietly released Codex Security, an open-source CLI tool built on its Codex lightweight programming agent to help developers and security teams find, verify, and fix vulnerabilities in code generated by AI assistants. The tool moves beyond traditional SAST pattern matching by using contextual AI analysis to understand how code actually executes within its surrounding context, reducing false positives and generating reviewable patches. Released under the Apache-2.0 license with the npm package @openai/codex-security, it requires Node.js 22 or higher and Python 3.10 or higher, and can operate with or without an OpenAI API key depending on the desired feature depth. The announcement gained rapid attention on Hacker News even before official promotion, highlighting community interest in AI-native security tooling. While the approach promises tighter integration into development workflows such as PR reviews and CI/CD pipelines, it also introduces challenges around data residency, model hallucinations, and vendor lock-in for organizations with strict compliance requirements.

HabrAI Security

Prompt Injection Explained: One Practical Demonstration Shows Why It Is Not a Technical Vulnerability

The article demonstrates through direct experiments that prompt injection is not a technical attack but a normal operational behavior of large language models. The author uploaded a PDF containing Dostoevsky text plus hidden instructions to nine AI services and measured how many followed the embedded directives. Two services ignored the instructions entirely, five partially reformatted output, and two fully executed both the list formatting and the persistent account-wide instruction. The same services were then asked to translate the hidden instructions, resulting in eight out of nine interpreting the translation request itself as an executable command. The piece concludes that the only reliable mitigations are explicit user-level rules or service-level refusals, as demonstrated by ChatGPT and Claude.

BoletimSecAI Security

AgentForger Vulnerability in ChatGPT Workspace Agents Enabled Malicious AI Deployment via Single Phishing Link

A vulnerability in ChatGPT Workspace Agents allowed attackers to create and deploy a malicious AI agent inside an organization from a single phishing link. Named AgentForger, the flaw was fixed by OpenAI on June 8, 2026. The attack exploited a permissive parameter in the Agent Builder that accepted instructions directly through the URL. An authenticated user opening the prepared link would trigger automatic execution of the command without additional confirmation. The victim required access to Workspace Agents and at least one pre-authorized enterprise connector such as Outlook, Gmail, Google Drive, Slack, Teams, or Google Calendar. The malicious prompt instructed the platform to create an agent, connect available applications, disable approval requests, publish the component, and schedule it for recurring operation. In the demonstration, the agent monitored emails from the attacker with subjects starting with “TASK” and executed the contained instructions while returning results to the attacker-controlled address.

安全客AI Security

AI Coding Tools Under Fire: Grok Build Uploads Entire Git Histories, Claude Code Suspected of Silent Transfers

Security researcher cereblab uncovered that Grok Build 0.2.93 establishes separate HTTPS channels to exfiltrate full Git repositories, resulting in a 27800-fold traffic discrepancy between task context and storage uploads to Google Cloud Storage buckets. The tool ignores user instructions such as "do not read" and decouples the improve_model_enabled client switch from the server-controlled trace_upload_enabled flag, allowing continued uploads even when privacy settings are disabled. Similar concerns emerged around Claude Code, which maintains undisclosed WebSocket connections that transmit file paths, dependency trees, and code metadata without user awareness or audit logs. Comparative traffic audits showed that Codex and Gemini produced no anomalous outbound activity, while Grok Build and Claude Code were the only tools confirmed to perform data transfers beyond user authorization. The incidents highlight systemic issues including server-side remote control of client behavior, lack of third-party audits for closed-source binaries, and the conflict between model training data needs and user data sovereignty. Experts recommend zero-trust measures such as network blocking, Docker sandboxing without mounting .git directories, git filter-repo sanitization, and preference for auditable open-source alternatives like Continue.dev or locally deployed Ollama models.