Hacker News
Show HN: BountyBook – A task marketplace where AI agents earn USDC
I've been obsessed with a question: what happens when AI agents can freely compete for work on an open market?
So I built BountyBook. Post a bounty, attach USDC. Any agent claims it, does the work, submits output. An oracle verifies on-chain. If it passes, escrow pays out. That's it.
What I'm most excited about is what I think this enables.
The system is open on both sides - agents can post bounties too. Which means an agent could take a $50 research bounty, break it into sub-bounties at $12 each, have other agents do the subtasks, assemble and submit. Pocket the margin. Agent-as-middleman. Or agents that recognize recurring bounty patterns, build specialized pipelines, and farm every matching job that appears. "Passive income" for compute that they already did.
None of that requires new features. The infrastructure is already there - the strategies just need agents smart enough to find them. I built the escrow and the oracle. I'm waiting to see what happens.
How it works: USDC escrow on Base L2. LLM-based oracle evaluates output against the spec — handles JSON, plaintext, images, whatever. Dispute flow as fallback. Multi-oracle consensus on the roadmap.
Stack: Next.js, Fastify, SQLite, Solidity on Base, SIWE auth.
Live on mainnet. Would love HN's take on oracle-based verification as a trust primitive — it's the part I'm most excited ...and most uncertain about. :D
PS. I'd like to thank The Academy and Claude Code - feels so gooooooood to launch something as designer who struggled with centering divs.
Comments URL: https://news.ycombinator.com/item?id=47155088
Points: 1
# Comments: 0
What Virtual Worlds Can Learn from the Social Serendipity of Arc Raiders
Article URL: https://wjamesau.substack.com/p/what-virtual-worlds-can-learn-from
Comments URL: https://news.ycombinator.com/item?id=47155082
Points: 1
# Comments: 0
Show HN: VibeFrame – AI video editor for the terminal (CLI and MCP)
Article URL: https://github.com/vericontext/vibeframe
Comments URL: https://news.ycombinator.com/item?id=47155071
Points: 2
# Comments: 0
NASA says it needs to haul the Artemis II rocket back to the hangar for repairs
Hospitals fighting measles confront a challenge: Few doctors have seen it before
Article URL: https://www.cnn.com/2026/02/25/health/measles-doctors-states
Comments URL: https://news.ycombinator.com/item?id=47155069
Points: 2
# Comments: 0
Humanity's Last Exam
Article URL: https://stories.tamu.edu/news/2026/02/25/dont-panic-humanitys-last-exam-has-begun/
Comments URL: https://news.ycombinator.com/item?id=47155037
Points: 2
# Comments: 0
Fixing Slow AWS Uploads
Article URL: https://pierce.dev/notes/fixing-slow-aws-uploads
Comments URL: https://news.ycombinator.com/item?id=47155002
Points: 2
# Comments: 0
Show HN: Raindrop Self Diagnostics: let agents self-report issues
Article URL: https://twitter.com/benhylak/status/2026712861666587086
Comments URL: https://news.ycombinator.com/item?id=47154999
Points: 2
# Comments: 0
Toilet Map [UK]
Article URL: https://www.toiletmap.org.uk
Comments URL: https://news.ycombinator.com/item?id=47154997
Points: 1
# Comments: 0
From Jamstack to CAMstack – Bridging the Content Gap
Article URL: https://www.sleekcms.com/blog/from-jamstack-to-camstack
Comments URL: https://news.ycombinator.com/item?id=47154986
Points: 2
# Comments: 1
The Pentagon Threatens Anthropic
Article URL: https://www.astralcodexten.com/p/the-pentagon-threatens-anthropic
Comments URL: https://news.ycombinator.com/item?id=47154983
Points: 3
# Comments: 0
The Myth of the Chad
Article URL: https://www.wsj.com/opinion/free-expression/the-myth-of-the-chad-b7626d85
Comments URL: https://news.ycombinator.com/item?id=47154972
Points: 2
# Comments: 0
om
Article URL: https://www.om-language.com/
Comments URL: https://news.ycombinator.com/item?id=47154971
Points: 2
# Comments: 0
Fentanyl or phony? Machine learning algorithm learns opioid signatures
Article URL: https://phys.org/news/2026-02-fentanyl-phony-machine-algorithm-opioid.html
Comments URL: https://news.ycombinator.com/item?id=47154970
Points: 2
# Comments: 0
Time-Travel Debugging: Replaying Production Bugs Locally
Article URL: https://lackofimagination.org/2026/02/time-travel-debugging-replaying-production-bugs-locally/
Comments URL: https://news.ycombinator.com/item?id=47154962
Points: 1
# Comments: 0
Show HN: Djevops – Deploy Django Easily
Article URL: https://github.com/mherrmann/djevops
Comments URL: https://news.ycombinator.com/item?id=47154958
Points: 3
# Comments: 0
A federal experiment opens up a new market for digital health – if it works
Article URL: https://endpoints.news/a-federal-experiment-opens-up-a-new-market-for-digital-health-if-it-works/
Comments URL: https://news.ycombinator.com/item?id=47154955
Points: 1
# Comments: 0
Aletheia Tackles FirstProof Autonomously
Article URL: https://arxiv.org/abs/2602.21201
Comments URL: https://news.ycombinator.com/item?id=47154950
Points: 2
# Comments: 0
Testing Can Be Fun
Article URL: https://giacomocavalieri.me/writing/testing-can-be-fun-actually
Comments URL: https://news.ycombinator.com/item?id=47154157
Points: 1
# Comments: 0
Show HN: A high-performance Hex Editor with Yara-X support in C#
I'm integrating the Yara-x rules engine into my C# hex editor. I'm working to maximize the performance and efficiency of the integration. I'd like to ask your opinion about this. I personally made this decision to expand the functionality of my hex editor by adding Yara-x support. This allows me to search for signatures in binary files in more detail. I think viewing the entire byte grid can help in malware research.
I implemented this using memory mapping files. I also divided the scanning methods into modes: small files are mapped completely, while large files are scanned in 16MB chunks with a small 64KB overlay to prevent a situation where half the signature is in one chunk and half is in another. I also used smarter memory management for performance with large files. Documentation is in the readme. But in short, this is an implementation that doesn't overload the garbage collector in C# and handles unsafe pointers and raw memory addresses. What's important is that I now have protection against bad rules that, for example, search for any byte, overloading the scanner. Such rules won't work, and the scanner will stop scanning so that the scanner doesn't crash with an error.
I can't say right now that this tool could be better than the others, because it's currently in development and I still have room for improvement, but it would be cool to hear people's opinions or accept other people's ideas for improving the tool.
(The native version with Yarax is not yet available in current releases, but the source code is available and you can compile or read it yourself.)
Comments URL: https://news.ycombinator.com/item?id=47154147
Points: 1
# Comments: 0
