frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Third GE Vernova blade break at wind farm powering Google

https://www.windpowermonthly.com/article/1951775/third-ge-vernova-blade-break-wind-farm-powering-...
1•genve•1m ago•0 comments

Firefighting Drones Head to Aspen

https://arstechnica.com/gadgets/2026/03/firefighting-drones-head-to-aspen-can-they-suppress-a-bla...
1•LorenDB•1m ago•0 comments

Principality of Hutt River

https://en.wikipedia.org/wiki/Principality_of_Hutt_River
1•thunderbong•1m ago•0 comments

The best platform team ships zero tools

https://aurbano.eu/post/2026-03-13-best-platform-team-ships-zero-tools/
1•aurbano•2m ago•0 comments

Show HN: RepoPrep – Turn a repo into a single AI-ready context file

1•rajivnaskar•3m ago•1 comments

Randomization in Controlled Experiments

https://queue.acm.org/detail.cfm?id=3778029
1•pykq•3m ago•0 comments

Gleam v1.15.0 Released

https://github.com/gleam-lang/gleam/blob/main/changelog/v1.15.md
1•Alupis•4m ago•0 comments

Unbounded (About Emmy Noether)

https://aeon.co/essays/she-freed-physics-but-emmy-noether-couldnt-escape-herself
2•bikenaga•6m ago•0 comments

Show HN: Trade Robinhood from Claude Code – 10 real traders, 60K orders served

https://github.com/trayders/trayd-mcp
1•teamtrayd•6m ago•0 comments

Why Quantum Computing will take another 50 years (2025)

https://mattdf.xyz/why-quantum-computing-will-take-another-50-years
1•b-zee•7m ago•1 comments

Reddit Stock: The Bull Case

https://josephblumenfeld.substack.com/p/the-case-for-reddit
1•InvestingEasy•7m ago•0 comments

Using Color Wisely

https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Colors/Using_color_wisely
1•FigurativeVoid•7m ago•0 comments

Reinforcement Learning (I.e. Policy Gradient Algorithms)

https://rlhfbook.com/c/06-policy-gradients
1•vinhnx•7m ago•0 comments

No More Secrets – A command line tool that recreates the effect seen in Sneakers

https://github.com/bartobri/no-more-secrets
1•sogen•7m ago•0 comments

Is Everything Conscious?

https://www.the-pamphlet.com/articles/is-everything-conscious
1•robtherobber•8m ago•0 comments

What Is Infrastructure from Code?

https://encore.dev/blog/what-is-infrastructure-from-code
1•andout_•9m ago•0 comments

Hacker News digest: why Top HN focuses on the comments

https://blog.alcazarsec.com/posts/top-hn-daily-digest
2•alcazar•10m ago•0 comments

New Social Media Caption Generator

https://postigniter.com/tools
1•trueliberia1847•10m ago•0 comments

Run Commodore BASIC Anywhere with CBM-Basic (Not an Emulator)

https://retrogamecoders.com/cbm-basic/
1•ibobev•10m ago•0 comments

A Brazilian scientist's experimental paralysis therapy is fueling hope–and hype

https://www.science.org/content/article/brazilian-scientist-s-experimental-paralysis-therapy-fuel...
1•Brajeshwar•11m ago•0 comments

FFmpeg 8.1

https://ffmpeg.org/index.html#pr8.1
10•gyan•13m ago•1 comments

Testing LLMs on superconductivity research questions

https://research.google/blog/testing-llms-on-superconductivity-research-questions/
1•Jupe•13m ago•0 comments

Java 26 Release Notes

https://jdk.java.net/26/release-notes
2•Alupis•14m ago•0 comments

A sufficiently detailed spec is code

https://haskellforall.com/2026/03/a-sufficiently-detailed-spec-is-code
3•Gabriel439•15m ago•0 comments

Graham Island

https://en.wikipedia.org/wiki/Graham_Island_(Mediterranean_Sea)
2•3ds•15m ago•0 comments

Esqueleto Tutorial

https://entropicthoughts.com/esqueleto-tutorial
1•ibobev•16m ago•0 comments

The Firewall Doesn't Live in the Kernel

https://www.becker63.digital/Blogs/the-firewall-doesnt-live-in-the-kernel
1•becker63•16m ago•1 comments

Show HN: Validatedata 0.4 – validation rules for Python that resemble your data

https://pypi.org/project/validatedata/
1•EdwardK1•16m ago•0 comments

Stdwin: Standard window interface by Guido Van Rossum [pdf]

https://ir.cwi.nl/pub/5998/5998D.pdf
1•ivanbelenky•17m ago•0 comments

California's plastic bill faces challenges from federal court

https://www.latimes.com/environment/story/2026-02-27/red-state-ags-plastic
1•PaulHoule•17m ago•0 comments
Open in hackernews

Show HN: Oh-my-agent – A structural harness for AI agents in real projects

https://github.com/first-fluke/oh-my-agent
3•otti-sister•1h ago
If you ask an AI agent to build a todo app, it will usually produce something. But in a real development environment, limitations become obvious: hallucinations, drifting off task, or repeating the same mistakes.

Looking at current prompts and skills, a few recurring problems show up: missing critical library versions, vague personas like you are a senior engineer, and bloated prompts that burn tokens without improving outcomes.

oh-my-agent addresses this by introducing a structured protocol to keep agents aligned with real project constraints.

Key Ideas: 1. Clarification protocol: Analyzes requirement ambiguity to decide whether to proceed, offer options, or stop for clarification.

2. Difficulty guide: Adjusts protocol depth based on task complexity.

3. Context budget: Enforces token limits per model to prevent unnecessary usage.

OpenAI’s Symphony release this March reinforced the importance of this approach. Symphony is powerful for autonomous workflows, but it performs best when the codebase is designed to be AI-friendly.

OpenAI refers to this as harness engineering: structured documentation like ARCHITECTURE.md, AGENTS.md, and WORKFLOW.md that agents can reliably interpret. oh-my-agent is built around these principles. Instead of just sending prompts, it provides the structural harness agents need to understand project context and operate autonomously.

Currently supports: Antigravity, Claude Code, Codex CLI, and Cursor.

The core idea: Using AI agents effectively isn’t about clever prompts—it’s about the engineering structure around them.

Comments

newexpand•1h ago
The clarification protocol is a smart approach. In my experience running multiple Claude Code agents on the same codebase, the biggest gap isn't prompting — it's visibility. You don't know what each agent decided to do until you check the git log afterward.

Structured docs like ARCHITECTURE.md help agents make better decisions upfront, but I think there's also a need for runtime feedback — knowing which agent changed what, and whether it drifted from the original task while it's still running.

How does oh-my-agent handle multi-agent scenarios where two agents might touch overlapping files?