Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. The AI Wait Equation(xendo.bearblog.dev ↗)
  2. Show HN: Why is a fly so hard to swat?(flyswat.win ↗)
  3. Media execs sound alarm on AI(axios.com ↗)
  4. SeasonMap – when to travel where? visualized with climate data(seasonmap.app ↗)
  5. Picturing Space: Projection and Perspective(essentialvermeer.com ↗)
  6. Show HN: Put an AI agent on a FaceTime audio/video call (open source, WebRTC)(github.com/cherthq ↗)
  7. Scaling Trust Arena: An agentic economy with a multi-million dollar prize pool(scalingtrust.org.uk ↗)
  8. Show HN: An MCP server that lets AI agents create, send and analyze surveys(zigpoll.com ↗)
  9. Can We Stop with the Uptime Percentages?(jim-nielsen.com ↗)
  10. Inside Meta's AI Infrastructure Lab in Menlo Park [video](youtube.com ↗)
  11. Show HN: Cleanroom, a coding agent with a notebook for decisions and learning(github.com/ag3497120 ↗)
  12. How GCC Eliminates Unnecessary Integer Division(leetarxiv.substack.com ↗)
  13. ProtonSync
  14. Parallel Constrained Decoding(twitter.com/harshagundal ↗)
  15. Who's buying your personal data: Disney, GM, your insurer and bank(calmatters.org ↗)
  16. Is AI Writing American Law?(effort.news ↗)
  17. Veronese's Dogs(publicdomainreview.org ↗)
  18. A Woman Cured Her Cancer with an Insane Method [video](youtube.com ↗)
  19. GLM 5.3 is live on Mistral(mistral.ai ↗)
  20. Devolver says indie publishing is not 'compatible' with public trading(gamedeveloper.com ↗)
  21. California's High Speed Rail to Nowhere [video](youtube.com ↗)
  22. Autism is genetic – and why this information matters now(autism.org.uk ↗)
  23. Geography Is Power(nytimes.com ↗)
  24. Show HN: Blue – open-source governance for coding agents(bluee.sh ↗)
  25. Show HN: A distributed C++ Monte Carlo API for exotic options pricing(prometheusquantengine.com ↗)
  26. Show HN: Orthant, an open-source macOS window manager where you draw the region(orthant.app ↗)
  27. Homeostatic Feelings and the Biology of Consciousness(oup.com ↗)
  28. Show HN: Docx-to-Markdown – layout-aware Word to Markdown converter(docx-editor.dev ↗)
  29. New stealth model: Union Alpha(openrouter.ai ↗)
  30. Acronis warns of actively exploited flaw in its cPanel backup plugin(bleepingcomputer.com ↗)

Show HN: Ctxwitch – Git tells you what changed; this tells you what it'll do

1 pointsby 1h agogithub.com
1 comments
1h agoHN ↗

Author here. I left in all those shipping changes to the agent - a prompt modification, a more lenient guardrail, some increased temperature -that altered the behavior of the agent without altering its execution, which flew past code reviews and CI and only came to light in prod. ctxwitch diffs changes made to the prompt/model/tools/RAG/memory/guardrails of an agent and categorizes their behavioral effect in 12 different ways at 5 levels (cosmetic -> breaking). A removal of guardrail or reversal of any rule gets marked as Breaking, and CI system gets notified that a more rigorous evaluation is needed, while cosmetic modifications sail through. It works both locally and on Github actions, takes about 100ms, deterministic (no agent executions, traces, or LLMs are used; there's an option to use LLM judges for truly subjective cases).

But in an attempt to address the obvious problem: a configuration difference doesn’t prove something was actually run, but rather that there was intent to make it happen. Therefore, I designed it as a triage/gate - "this is something worth looking at".

pip install ctxwitch witch tour #disposable sandbox, no api

Apache 2.0. I really would like to know for those running ai agents in production what diffs have caught up with you that something a diff like this should have spotted, and what more would it need to pickup to get into your CI?