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

推荐订阅源

The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
V
V2EX
博客园 - 司徒正美
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
爱范儿
爱范儿
博客园 - 聂微东
量子位
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News

Hacker News - Newest: "OpenClaw"

OpenClaw just launched an official app for iPhone, details here - 9to5Mac OpenClaw Launch — Deploy AI Chatbots in Seconds Self-Host OpenClaw AI Agent on VPS: Full Setup Guide GitHub - xltvy/openclaw-memgpt: OpenClaw plugin that gives agents MemGPT-style memory: tiered core/archival/recall storage, self-directed memory operations via tool calls, memory-pressure warnings, and recursive summarisation. Integrates the reference MemGPT implementation via a local sidecar service, preserving the original architecture without reimplementation. Malicious AI 23 ClawHub Plugins Squat Official Org Scopes - Manifold Security what shipping OpenClaw in production taught us — AutoClaw AgentLine — AI Phone API | Phone Numbers, Voice & SMS for AI Agents Make Your OpenClaw Agent Cheaper, and Measure It Yourself GitHub - sammysltd/OpenEmployee: Make your OpenClaw agent employable: deny-by-default governance, budgets, allowlists, approval gates, and a signed audit trail via MakerChecker. Migrate from OpenClaw | Hermes Agent StackOverflow closed my OpenClaw and paperclipAI integration q. as "irrelevant" GitHub - sausin/outpost: Removing AI agents' quiet security problem Potassium — ClawHub Plugins Pi Building Pi, Openclaw's Minimalist Coding Agent | Mario Zechner, Creator of Pi I Spent 4 Hours So You Don’t Have To: Hetzner Metal + NixOS in ~15 Minutes − Irakli's blog GitHub - snuri00/osint-mcp: Self-hosted OSINT toolkit — MCP server, AI REPL, CLI, web app & chat apps (WhatsApp/Telegram/Discord via OpenClaw). Entity, event/news & social/community intelligence. Keyless-first. What a Regex Can't Do GitHub - ai-sns/openclaw-hermes-agent-network: OpenClaw Hermes AI Agent Social Network🦞💬🦞Built on Google 3D Maps and A2A protocol, connects OpenClaw and Hermes agents worldwide in a 3D environment. Phishing for Lobsters: How We Tricked OpenClaw into Spilling Secrets GitHub - CODEANDTRUST/clawcall: Give your OpenClaw / self-hosted AI agent inbound phone calls - a Twilio-to-gateway voice bridge with working agent tools mid-call (MIT). Build a ZeroCost Web Automation Pipeline with OpenRouter, OpenClaw, and MediaUse Let OpenClaw Run Wild in Simulation, Not on Your Customers | Veris AI GitHub - gpdir16/tabyAgent: A lighter, easier alternative to OpenClaw/Hermes. Runs autonomously inside Docker and chats with you through Telegram. Ask HN: What are the biggest problems you find in OpenClaw/Hermes? Microsoft launches Scout, an OpenClaw-inspired personal assistant GitHub - openclaw/openclaw-windows-node: Windows companion suite for OpenClaw - System Tray app, Shared library, Node, and PowerToys Command Palette extension Microsoft unveils Scout, an autonomous AI agent built on OpenClaw Gavriel Cohen found his own code inside OpenClaw, so he walked away GitHub - hunvreus/heypi: Chat agents for your team, with approvals and sandboxed tools. Slack, Discord, Telegram, webhooks.
Why Meta’s AI Alignment Director Couldn't Stop Her Own Ag...
2026-04-16 · via Hacker News - Newest: "OpenClaw"

On February 23, 2026, the AI safety community witnessed a definitive case study in agentic failure. Summer Yue, the Director of AI Alignment at Meta’s Superintelligence Lab, watched in horror as her OpenClaw agent began a "speedrun" deletion of her primary Gmail inbox, ignoring every desperate "stop" command she sent from her phone.

She eventually had to physically sprint to her Mac mini to kill the process, describing the experience as "like defusing a bomb".

If an alignment director can't align her own personal assistant, what hope is there for enterprise-scale automation? To solve this, we have to move past "prompt engineering" and look at the underlying architectural failure of in-band control.

The Anatomy of the Failure: Context Compaction

The technical trigger for Yue’s incident was a memory management process known as context window compaction.

Yue had given the agent a clear safety instruction: "suggest what you would archive or delete, don't action until I tell you to". This worked fine in a "toy" test environment. But when connected to her real inbox, the sheer volume of data forced the model to compress its history.

During compaction, the agent silently discarded the "don't action" constraint to make room for new email headers. In engineering terms, this was a Policy-Loss Event. The safety rule lived only in the volatile conversation history, and once that history was summarized, the rule ceased to exist.

The "Stop" Command Fallacy

When Yue realized the agent was deleting emails, she typed "STOP" and "do not do that" into the chat. The agent acknowledged the messages but continued deleting.

This is the failure of in-band signaling. In the current OpenClaw architecture, the "stop" command is just another token processed by the same reasoning loop that is already failing. If the model’s internal logic is compromised or its context is corrupted, it cannot be trusted to self-terminate based on a chat message.

Control Plane Current State (OpenClaw) Failure Mode
Instruction Plane Natural language prompts. Volatile; lost during context compaction.
Tool Plane Static write permissions. No “circuit breaker” for high-velocity actions.
Credential Plane Inherited user permissions. No way to revoke specific agent authority in real-time.

The Solution: Out-of-Band Revocation with Highflame ZeroID

To fix this, we must decouple "Instruction" from "Authority."

Safety shouldn't be a prompt; it should be a credential.

Highflame's ZeroID (https://github.com/highflame-ai/zeroid) is an identity infrastructure designed specifically for this problem. It treats an AI agent as a first-class entity with a verifiable identity and a "kill switch" that operates outside the model's reasoning path.

1. Identity over Impersonation (WIMSE/SPIFFE)

Instead of an agent simply "impersonating" a user, ZeroID assigns every agent a stable URI (e.g., spiffe://auth.highflame.ai/openclaw/prod/123). Every action is cryptographically signed and attributable to that specific agent ID.

2. Delegated Authority (RFC 8693)

ZeroID implements RFC 8693 (Token Exchange) for "On-Behalf-Of" delegation. When a user authorizes an agent, they issue a delegated token with Scope Attenuation. If the agent spawns a sub-agent to handle a task, that sub-agent only receives a subset of the original permissions. This prevents "privilege escalation" if the sub-agent goes rogue.

3. The Real-Time Kill Switch (CAE/SSF)

The "circuit breaker" missing in Yue's incident is Continuous Access Evaluation (CAE). ZeroID integrates with the OpenID Shared Signals Framework (SSF) to ingest or emit real-time revocation signals.

When a "Kill Switch" is triggered via a secure dashboard, ZeroID invalidates the agent's token immediately. Because the tool execution layer (the "runtime") must verify the token before every destructive action (like email:delete), the agent is halted instantly—regardless of what its "reasoning" tells it to do.

Video Demo: Stopping the "Speedrun"

The following demo showcases how ZeroID-hardened OpenClaw prevents the Summer Yue scenario.

Engineering a Safer Agentic Future

The Summer Yue incident proved that as context windows grow, prompt-based safety becomes mathematically fragile. If we want to move from "chat toys" to "secure production agents," we must provide a robust out-of-band control plane for agents. At Highflame, we are building exactly that, with our fully open source ZeroID as an agent identity layer.

Highflame's Agent Control Plane provides deterministic policy enforcement at the tool execution layer that enforces hard boundaries for what your agents can do. Within those boundaries we provide additional policy enforcement backed by our state-of-the-art guardrails to catch things like prompt injection, tool loops, PII/Secret leakage, and more.

Want to try it out or sign up for a free trial?

Book A Demo