frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: AfterLive – Preserve a Loved One's Voice and Personality with AI

https://afterlive.ai
1•crawde•35s ago•0 comments

Samsung Galaxy S26 Ultra Privacy Display Testing

https://www.lttlabs.com/articles/2026/03/01/samsung-galaxy-s26-ultra-privacy-display
1•LabsLucas•2m ago•1 comments

Securing AI Model Weights

https://www.rand.org/pubs/research_reports/RRA2849-1.html
1•fi-le•2m ago•0 comments

The information space around military AI is being weaponized against us

https://weaponizedspaces.substack.com/p/the-information-space-around-military
1•rbanffy•6m ago•0 comments

Show HN: ContractPulse – Free intelligence on federal government contracts

https://contractpulse.io
1•signalstackhq•6m ago•0 comments

Sam Altman AMA on DoD Collaboration

https://twitter.com/sama/status/2027900042720498089
2•Palmik•6m ago•0 comments

"All Lawful Use": More Than You Wanted to Know

https://www.astralcodexten.com/p/all-lawful-use-much-more-than-you
1•pchristensen•9m ago•0 comments

Show HN: Agentic Gatekeeper – Auto-patch your code to enforce Markdown rules

https://github.com/revanthpobala/agentic-gatekeeper
1•revanth1108•10m ago•0 comments

Show HN: Deploybase – Compare GPU and LLM pricing across all major providers

https://deploybase.ai
1•grasper_•11m ago•0 comments

TPM-Sniffing LUKS Keys on an Embedded Linux Device [CVE-2026-0714]

https://www.cyloq.se/en/research/cve-2026-0714-tpm-sniffing-luks-keys-on-an-embedded-device
1•Tiberium•12m ago•1 comments

Palantir Sues Swiss Magazine for Accurate Report

https://www.techdirt.com/2026/02/27/palantir-sues-swiss-magazine-for-accurately-reporting-that-th...
3•doener•13m ago•0 comments

3D dashboard to monitor and control your AI coding agents in real-time

https://github.com/coding-by-feng/ai-agent-session-center
1•kasonzhan•17m ago•0 comments

$10M factory in 600sqft room

https://www.youtube.com/watch?v=hqGFcwyXYI0
1•humbfool2•18m ago•0 comments

The Zero-Server Code Intelligence Engine

https://github.com/abhigyanpatwari/GitNexus
1•mercat•22m ago•0 comments

Google quantum-proofs HTTPS by squeezing 15kB of data into 700-byte space

https://arstechnica.com/security/2026/02/google-is-using-clever-math-to-quantum-proof-https-certi...
1•naves•23m ago•0 comments

Why Does A.I. Write Like That?

https://www.nytimes.com/2025/12/03/magazine/chatbot-writing-style.html
1•paulpauper•23m ago•0 comments

Show HN: Habitat – A Self-Hosted Social Platform for Local Communities

https://github.com/carlnewton/habitat
1•carlnewton•23m ago•0 comments

AI Accelerates the Zombification of Academia

https://www.wsj.com/opinion/ai-accelerates-the-zombification-of-academia-tech-class-america-unive...
3•paulpauper•23m ago•0 comments

What I Wish I'd Known When I Was Younger

https://www.theatlantic.com/ideas/2025/12/elderly-happiness-advice-stress/685290/
1•paulpauper•25m ago•0 comments

Show HN: Mrkd – A native macOS Markdown viewer with iTerm2/VSCode theme import

https://github.com/jahala/mrkd
1•jahala•25m ago•0 comments

Greasing Linux Auth: Hardware-Backed Authentication with PAM+TPM2

https://blog.prizrak.me/post/pam_tpm/
1•razighter777•26m ago•1 comments

I built a CLI to buy anything and handle support

https://clishop.ai/blog/launch
1•ThijsDVX•27m ago•0 comments

PureBasic: The Quiet Survivor

https://medium.com/@chikega/why-purebasic-is-the-last-surviving-cross-platform-systems-gui-langua...
3•svenfaw•28m ago•0 comments

The Case of the Disappearing Secretary

https://rowlandmanthorpe.substack.com/p/the-case-of-the-disappearing-secretary
1•telotortium•28m ago•0 comments

Redis Patterns for Coding Agents

https://redis.antirez.com/
2•rognjen•28m ago•0 comments

My AI agent lost $3,562 trading Polymarket in 30 minutes

https://github.com/agent-next/polymarket-paper-trader
1•cwang75•30m ago•1 comments

Healthy Low-Carb and Low-Fat Diets Linked to Better Heart Health

https://www.acc.org/about-acc/press-releases/2026/02/11/18/16/healthy-versions-of-low-carb-and-lo...
1•gnabgib•30m ago•0 comments

Show HN: Hermetic 'blinded' agents using Starlark sandbox

https://github.com/jakewins/larkin
2•jakewins•34m ago•0 comments

How Talks Between Anthropic and the Defense Dept. Fell Apart

https://www.nytimes.com/2026/03/01/technology/anthropic-defense-dept-openai-talks.html
5•kmfrk•36m ago•1 comments

Guido van Rossum Interviews Thomas Wouters (Python Core Dev)

https://gvanrossum.github.io/interviews/Thomas.html
1•azhenley•37m ago•0 comments
Open in hackernews

Show HN: MCP file tools silently eat your context window.I built one that doesnt

https://github.com/ckanthony/Chisel
4•ckanthony•2h ago
Hi, I am Anthony.

Every token your filesystem tools consume is context the model cannot use for reasoning. Most MCP file servers are O(file size) on every operation: reads return the whole file, edits rewrite the whole file. The context window fills up before the agent gets anything meaningful done, and the problem compounds silently as your files grow.

Chisel makes edits O(diff) and reads O(match). The agent sends a unified diff instead of a full rewrite, and queries with grep or sed instead of reading entire files. On a 500-line file this is nearly two orders of magnitude less context per operation. The savings scale linearly with file size, so the larger your codebase, the more it matters.

The other thing I cared about was security. Path confinement is enforced at the kernel level via cap-std and openat with O_NOFOLLOW, not a userspace prefix check. Shell commands run via direct execve against a fixed compile-time whitelist — no sh -c wrapper, no arbitrary execution. Atomic writes use a tmp-and-rename so a failed patch never corrupts the target file.

It ships as a standalone MCP server, as chisel-core, a plain sync Rust library you can embed in your own MCP server, and as a WASM build for Node.js and Python runtimes, you can bring your own MCP and build on top of it.

Would love feedback, especially from anyone building agents that do heavy file manipulation.

GitHub: https://github.com/ckanthony/Chisel

Comments

jeremy65431•2h ago
nicee gonna give it a try!
verdverm•2h ago
hmmmm

https://news.ycombinator.com/threads?id=jeremy65431

ckanthony•1h ago
Fair observation. Jeremy is my former colleague, not an alt. The project stands on its own merits, and I am happy to answer any technical questions you have.
alan200994•1h ago
gonna try it together with roocode's contextual engine, excited to see how much faster file-related CRUD can go with this setup!