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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built sonmat to fix this. Then sonmat had the same bug.
Jun0 · 2026-05-03 · via DEV Community

Another confession

In the last post, I went after the bug that every Claude Code discipline plugin seems to share: the rules live in the main session, the work happens in the workers (subagents), and the rules don't make the trip across. I named names. I quoted the maintainer of superpowers closing a related issue as "not planned." And then, with a straight face, I claimed that sonmat was different.

It really wasn't. Not yet, anyway.

For a while, sonmat had this nicely-crafted hook. Every time you opened Claude Code, it would shove 1,239 characters of discipline into additionalContext before you even said hello. "MANDATORY. Apply Break it / Cross it / Ground it. Read project memory. Watch for novel traps…" Every session, every time, before the model got a word in.

I thought this was the strong play. The hook fires before the model speaks, the instruction lands in additionalContext, the discipline can't be skipped. That was the theory.

What I didn't notice — for embarrassingly long — was that I was rebuilding, with my own hands, the exact bug I'd just spent a whole post laughing at.

How I figured it out

Here's the awkward bit: additionalContext is delivered to the main session. It is not delivered to subagents.

So picture what was actually happening. The discipline lived in the place I could see (the main session). It was completely absent from the place where the work actually got done (the workers). The main session would dutifully announce "applying Break / Cross / Ground" — and then dispatch a worker. The worker would receive a clean task with a clean context. No discipline. The worker would shrug and go, "this is simple enough, I don't need tests." The result would come back, the main session would format it confidently (still holding all 1,239 characters of rules), and I'd nod along and approve.

It was not fine.

Which is to say: the exact failure mode I'd been mocking in superpowers and karpathy-skills? Same mechanism, different label, mine.

Honestly, I only caught it kind of by accident. I'd started spinning up other CLIs for the same kind of work, and something in the output felt off. So I went poking around. Turns out, every CLI handles hooks slightly differently — different contracts, different injection points, sometimes none at all. And while I was wrestling with making the discipline survive outside Claude Code, the thing that should have been obvious inside Claude Code finally clicked: a hook that lands in one place but not another isn't a guarantee. It's a happy accident that landed in the main session.

The bug wasn't multi-CLI. The bug was that I'd been calling that happy accident a guardrail.

What changed in v0.4.0

I emptied the hook. additionalContext: 1,239 → 0.

The discipline didn't disappear — it just moved. It now lives in CLAUDE.md → discipline/core.md, the same file the agent already reads as part of its prompt context, and the same file you'd put any other instruction in. Workers spawned by the main agent inherit the same CLAUDE.md chain. So the rule lands in the same place, every layer.

The hook still runs. It just sticks to what hooks are good at. Make the .claude/sonmat/ directory. Plant a one-time ## sonmat block in your global CLAUDE.md so the discipline gets referenced. Check for updates. Side effects only. It doesn't try to shape behavior anymore.

BEFORE                                 AFTER
hooks/session-start                    hooks/session-start
  └─ additionalContext: 1,239 chars      └─ side effects only
       "MANDATORY: sonmat..."                 ├─ create .claude/sonmat/
       (delivered to main session             ├─ plant ## sonmat block
        only — workers never saw it)          └─ git pull if outdated

                                       CLAUDE.md → discipline/core.md
                                         (read by main and by every
                                          worker spawned from it.
                                          visible to the user. editable.)

Enter fullscreen mode Exit fullscreen mode

Same discipline, different path. The behavior didn't get weaker — it just got honest about where it actually lives.

Four things I believe now

1. A guardrail that doesn't reach the worker is a fake guardrail.
If your "mandatory" rule is being delivered through a channel the worker doesn't subscribe to, it isn't mandatory. It's decoration. And the trap is that you can see it sitting in the main session — which is exactly why you stop checking.

2. Visibility is the contract.
A rule sitting in additionalContext is invisible to the user. You can't read it, can't edit it, can't disagree with it. A rule sitting in CLAUDE.md → core.md is just there, in the repo. The agent reads it. You read it. You can disagree with it — and that's a good thing, because that's how drift gets caught before it ships.

3. Hooks are for side effects. They are not for behavior.
Make the directory, plant the marker, pull the update. That's the job. The moment a hook starts trying to shape what the agent does, you're betting that the hook fires in every code path the agent will ever take. It doesn't. It can't.

4. "Strong" enforcement is usually fragile enforcement.
The 1,239-character injection felt powerful because it was automatic. But automatic-and-incomplete is worse than manual-and-complete — the user trusts the automation and stops looking. Moving discipline into a file the user can edit (and ignore) sounds weaker. It isn't. It's where the user actually re-enters the loop.

The hard part

Honestly, emptying the hook felt like giving up control. The hook was the place where I could make sure. If discipline lives in CLAUDE.md, the user can edit it, override core.md, even ignore the whole thing.

Which, yes, is the entire point.

A discipline the user can't see is a discipline the user can't trust. A discipline the user can't edit is a rule, not a tool — and sonmat is supposed to be a tool. Visibility is the price of trust. And there's a bonus: the discipline now reaches the workers, because the workers read the same file the user reads.

Diagnose your own setup

If you're running any Claude Code plugin that promises "guardrails," try asking three questions:

  1. Where does the rule physically live? A hook injecting additionalContext? A skill the model has to remember to invoke? A line in CLAUDE.md?
  2. Who actually reads it? Just the main session? Workers too? Subagents spawned from workers?
  3. Can you see it yourself? If you can't open a file and read the rule that's supposedly governing your agent, you don't have a guardrail. You have a vibe.

I had to put my own plugin through those three questions before the answer became obvious. Doing the diagnosis in 01 was the easy part. Applying it to sonmat itself took a lot longer.

Try it

/plugin marketplace add jun0-ds/sonmat
/plugin install sonmat@sonmat

Enter fullscreen mode Exit fullscreen mode

After install, the discipline lives at ~/.claude/plugins/marketplaces/sonmat/discipline/core.md. Open it. Read it. Disagree with parts of it if you want — that's actually how you'll know it's doing something real.

GitHub: jun0-ds/sonmat


Part of the series **Building sonmat. Previous: Your AI is confident. Your AI is wrong. You shipped it anyway.

GitHub · LinkedIn