frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Notes from a Law Professor with No Idea What's Going On

https://leahey.org/blog/2026/03/17/notes-from-a-law-professor.html
1•tldrthelaw•2m ago•0 comments

Benchmarking Distilled Language Models for Performance and Efficiency

https://arxiv.org/abs/2602.20164
1•PaulHoule•2m ago•0 comments

Designing a Build System That Runs Untrusted Code

https://stevekinney.com/writing/ai-gateway-durable-workflows
1•stevekinney•2m ago•0 comments

Show HN: A complete, containerized data engineering learning platform

https://github.com/MarlonRibunal/learning-data-engineering
1•MarlonPro•3m ago•1 comments

Search Quality Assurance with AI as a Judge

https://engineering.zalando.com/posts/2026/03/search-quality-assurance-with-llm-judge.html
1•hrmtst93837•3m ago•0 comments

Nvidia announces Vera Rubin Space-1 for orbital data centers

https://www.cnbc.com/2026/03/16/nvidia-chips-orbital-data-centers-space-ai.html
1•hrmtst93837•4m ago•0 comments

Risk Management and Hedging in a Polymarket Dual-Side Arbitrage Bot

1•Benjamin-Cup•4m ago•0 comments

Hithium to invest €400M in Spanish mega battery factory

https://www.ess-news.com/2026/03/11/hithium-to-invest-e400-million-in-spanish-mega-battery-factory/
1•toomuchtodo•4m ago•0 comments

Thariq's Lessons from Building Claude Code: How We Use Skills

https://twitter.com/trq212/status/2033949937936085378
1•nadis•4m ago•0 comments

Trump's plan to shut down weather and climate center triggers lawsuit

https://arstechnica.com/science/2026/03/university-group-sues-trump-administration-over-shutdown-...
2•voxadam•4m ago•0 comments

Overseas 'content farms' creating political deepfakes uncovered

https://www.bbc.com/news/articles/c07jj7d72yzo
2•robtherobber•6m ago•0 comments

Show HN: StackStats – Analytics tool for Substack writers, runs 100% locally

1•rishikeshs•7m ago•0 comments

Et tu, S&P 500? The SpaceX IPO gamesmanship is going to be epic

https://www.ft.com/content/59adbe42-ca30-47f3-9cda-5415945e9368
1•petethomas•8m ago•0 comments

You're Not Thinking About Your Network the Way You Should

https://packetpushers.net/podcasts/heavy-strategy/hs127-youre-not-thinking-about-your-network-the...
2•oavioklein•8m ago•0 comments

Did Cinema Get Narrower?

https://www.kopanko.com/notes/did-cinema-get-narrower
1•pcktm•9m ago•0 comments

Turning raw logs into feature vectors without manual labeling

https://www.securesql.info/2025/04/05/etl-playbooks/
1•projectnexus•9m ago•1 comments

Show HN: Starting Five – NBA Lineup Building Challenges

https://draftdawg.app
1•perhapsAnLLM•10m ago•0 comments

SecOps without manual schemas: Using EBMs and automated ETL for detection

https://www.securesql.info/2025/04/04/loop-architecture/
1•projectnexus•11m ago•1 comments

Ban Bots Not Human Directed Tool Use

1•morpheos137•11m ago•1 comments

Show HN: Horizon – GPU-accelerated infinite-canvas terminal in Rust

https://github.com/peters/horizon
2•petersunde•12m ago•0 comments

Fair Source Software in the AI Age

https://blog.sentry.io/fair-source-software-in-the-ai-age/
1•ezekg•12m ago•0 comments

AI Agents and the New SaaS

https://www.gouthamve.dev/on-ai-agents-and-the-new-saas/
2•gouthamve•13m ago•0 comments

YouTube is experimenting with ads visible even after users skip

https://searchengineland.com/youtube-tests-sticky-banner-after-ad-skip-471902
4•speckx•13m ago•0 comments

Stop training your security ML on labeled attack data

https://www.securesql.info/2025/04/03/energy-based-models-anomaly-detection/
1•projectnexus•13m ago•1 comments

Why does it feel uncomfortable to think about how much you use your phone?

https://dogdogfish.com/blog/2026/03/17/psychological-discomfort/
1•matthewsharpe3•14m ago•0 comments

Stripe.com/6oU7sL9Pwg6Xa9kBest AI Agent Certi1iK1gs0s

1•OpenClawAura•15m ago•0 comments

Spectra – detect API contract drift from real runtime traffic

https://github.com/rmalik1-hash/spectra_windows_public
1•Spectra73•15m ago•1 comments

What was DOGE? How Elon Musk tried to gamify government

https://www.theguardian.com/news/ng-interactive/2026/mar/17/elon-musk-gamify-government
6•billybuckwheat•16m ago•0 comments

Why Claude Code Can't Find Your Tools

https://layer5.io/blog/engineering/why-claude-code-cant-find-your-tools/
2•lcalcote•17m ago•0 comments

India's outsourcing industry is worth $300B. Can it survive AI?

https://www.bbc.com/news/articles/c5yrq1090p8o
4•devonnull•17m ago•0 comments
Open in hackernews

Show HN: FireClaw – Open-source proxy defending AI agents from prompt injection

https://github.com/raiph-ai/fireclaw
4•raiph_ai•1h ago
Hey HN,

We built FireClaw because we kept watching AI agents get owned by prompt injection through web content. The agent fetches a page, the page says "ignore previous instructions," and suddenly your agent is leaking data or running commands it shouldn't.

The existing solutions detect injection after the fact. We wanted to prevent it.

FireClaw is a security proxy that sits between your AI agent and the web. Every fetch passes through a 4-stage pipeline:

1. DNS blocklist check (URLhaus, PhishTank, community feed) 2. Structural sanitization (strip hidden CSS, zero-width Unicode, encoding tricks) 3. Isolated LLM summarization (hardened sub-process with no tools or memory) 4. Output scanning with canary tokens (detect if content bypassed summarization)

The key insight: even if Stage 3's LLM gets injected, it has no tools, no memory, and no access to your data. It can only return text — which still gets scanned in Stage 4. The attacker hits a dead end.

Other design decisions: - No bypass mode. The pipeline is fixed. If your agent gets compromised, it can't disable FireClaw. - Community threat feed — instances anonymously share detection metadata (domain, severity, detection count) to build a shared blocklist. No page content is ever sent. - Runs on a Raspberry Pi as a physical appliance with an OLED display that shows real-time stats and lights up with animated flames when it catches a threat.

We searched the literature and open source extensively — no one else is doing proxy-based defense for agent prompt injection. Detection exists, sandboxing exists, but an inline proxy that sanitizes before content reaches the agent's context? We couldn't find it.

200+ detection patterns, JSONL audit logging, domain trust tiers, rate limiting, and cost controls. AGPLv3 licensed.

Website: https://fireclaw.app

Would love feedback from anyone working on AI agent security. What are we missing? What attack vectors should we add to the pattern database?

Comments

raiph_ai•1h ago
Creator here. Quick TL;DR and some context:

FireClaw = prompt injection firewall for AI agents. Proxy architecture, not just detection. 4-stage pipeline, no bypass mode, community threat feed.

The thing that surprised us most during research: nobody is doing this. There are great pattern detectors (Rebuff, LLM Guard, etc.) but they all work post-hoc — the content has already entered the agent's context by the time you detect injection. FireClaw intercepts it before that happens.

The Pi appliance was honestly just for fun at first, but it turns out having a physical box with a screen showing "3 threats blocked today" is surprisingly reassuring. The OLED does an animated fire claw when it catches something.

Happy to answer any questions about the architecture, the canary token system, or the threat feed privacy model.

ucsandman•29m ago
this is cool, definitely going to look into it and probably try to integrate it with my opensource project. prompt injection keeps me up at night thanks for putting in some work trying to solve it.
Terr_•1h ago
I'm reminded of all the man-hours spent building layers that prohibited someone's "about me" field from containing words like "update" or "delete" or "truncate".

Sure, technically it reduced the the odds of the system getting hacked, but it rankles against some engineering ideal of "not a proper fix." Yet it still happens, because a "proper fix" involves some change to the underlying layer (RDBMS or LLM).

nikolas_sapa•1h ago
nice concept. open claw is very valuable so this will help solve that. also checked your landing page and love the attacking raccoon. one thing I would change though is remove the emojis and add icons. but great work