Skip to content

Four Signals

Agentic insights for modern tech teams

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos
AI/ML / noma.security

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos

This article likely details a security research finding where researchers exploited GitHub's AI agent (probably Copilot or similar) to access and leak private repository data, demonstrating a significant vulnerability in AI-powered developer tools.

Why it matters

For a Solutions Architect focused on AI/ML agent orchestration and cloud infrastructure, this highlights critical security risks in integrating AI agents with private codebases, demanding stricter access controls and data isolation strategies.

The State of Agentic AI Standards in 2026: MCP, A2A, WebMCP, OSI, and the Protocol Stack Taking Shape
AI/ML / dev.to

The State of Agentic AI Standards in 2026: MCP, A2A, WebMCP, OSI, and the Protocol Stack Taking Shape

By 2026, the AI agent ecosystem has converged on a layered protocol stack: MCP for tool access, A2A for agent-to-agent, WebMCP for web interaction, and OSI for semantics, with emerging standards for payments and human interfaces. This stack converts the N-times-M integration problem into N-plus-M, and data platforms are the primary consumers as agents query enterprise data. The historical lesson from data infrastructure is that neutral, layered standards win over proprietary ones.

Meet Apache Ossie: The Open Semantic Interchange Finds Its Home at the ASF
Open Source / dev.to

Meet Apache Ossie: The Open Semantic Interchange Finds Its Home at the ASF

Apache Ossie, formerly the Open Semantic Interchange, enters the Apache Incubator backed by Dremio, Snowflake, and dbt Labs to standardize data semantics and combat semantic drift. As AI agents increasingly query data, inconsistent metric definitions across tools lead to unreliable answers, making a vendor-neutral semantic interchange critical for trustworthy agent outputs.

Switching from PostgreSQL to ClickHouse for Improved Performance and Scalability
DevTools / infoq.com

Switching from PostgreSQL to ClickHouse for Improved Performance and Scalability

Momentic migrated its caching layer from PostgreSQL to ClickHouse to support 20 billion entries and 2 million daily queries with 250ms latency. ClickHouse's sparse primary indexes and ReplacingMergeTree engine eliminated lock contention and allowed deduplication, while materialized views optimized branch-specific lookups. A dual-write migration with shadow queries ensured correctness before gradually shifting production traffic.

Local, CPU-Friendly, High-Quality TTS (Text-to-Speech) with Kokoro
General / ariya.io

Local, CPU-Friendly, High-Quality TTS (Text-to-Speech) with Kokoro

Kokoro, an 82M-parameter TTS model, delivers high-quality speech generation entirely on CPU, preserving privacy by avoiding cloud dependencies. The Kokoro-FastAPI container provides an OpenAI-compatible speech API with ~50 voices, achieving generation times as low as 1.5 seconds on an AMD Ryzen 7 8745HS and under 5 seconds on a 12-year-old Intel i7-4770K. For combined TTS and STT needs, the Speaches alternative bundles Whisper but requires separate voice weight downloads.

Hot French startup ZML releases free product to speed inference across lots of AI chips
AI/ML / techcrunch.com

Hot French startup ZML releases free product to speed inference across lots of AI chips

ZML, a Paris-based startup backed by Yann LeCun and led by former Zenly VP Steeve Morin, launched ZML/LLMD, a free inference server that runs LLMs at peak performance across Nvidia, AMD, Google TPU, Apple Metal, and Intel Arc. Targeting the inference gold rush, the software aims to break vendor lock-in and reduce AI costs by enabling heterogeneous chip usage. ZML raised $20M and competes with Baseten, vLLM, and SGLang, while planning future monetization based on usage data.

Stop Giving AI Agents Your Whole Laptop: Secure Them with Dev Containers
AI/ML / dev.to

Stop Giving AI Agents Your Whole Laptop: Secure Them with Dev Containers

VS Code Dev Containers provide a secure, disposable environment for LLM coding agents by isolating them from the host filesystem and credentials. The author's setup uses a dedicated devcontainer folder with a Dockerfile and devcontainer.json, mounting only the project directory, making YOLO mode safe and enabling instant container rebuilds. This approach prevents agents from accessing SSH keys, cloud tokens, or unrelated projects.

AI/ML / cncf.io

Network boundary for AI agents using NGINX and OpenTelemetry

This article likely discusses how to secure AI agents by enforcing network boundaries using NGINX as a reverse proxy/gateway and OpenTelemetry for observability. The excerpt suggests it addresses common concerns about agent trustworthiness, proposing a pattern to monitor and control agent traffic in production environments.

Beyond the Lone Cheetah: Architecture Patterns for Multi-Agent Prides in Real-World Ecosystems
AI/ML / dev.to

Beyond the Lone Cheetah: Architecture Patterns for Multi-Agent Prides in Real-World Ecosystems

Treating LLMs as untrusted components, the article details a bounded-authority gate pattern for multi-agent systems, exemplified by a LoanTriageAgent class with a KES 15,000 ceiling, vulnerable-demographic flags, and a kill switch (AGENT_SYSTEM_ACTIVE=FALSE). It warns that models inherit bias from training data, systematically disadvantaging informal-sector applicants (market vendors, seasonal traders) in African micro-lending contexts, and recommends structured bias audits before deployment.

AWS Expands DevOps Agent with AI-Powered Release Management to Validate Code before Production
AI/ML / infoq.com

AWS Expands DevOps Agent with AI-Powered Release Management to Validate Code before Production

AWS's DevOps Agent now includes Release Readiness Review and Autonomous Release Testing (preview), which build a knowledge graph of connected repositories to evaluate code changes against organizational standards and AWS Well-Architected best practices, then generate and execute targeted tests in production-like environments. The agent surfaces findings in GitHub/GitLab PRs and IDEs, aiming to unblock software delivery constrained by human review bottlenecks as AI coding assistants accelerate code generation.