frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Agent loops stop re-reading your codebase on every turn

https://runinfra.ai/inference-api
1•OsamaJaber•6m ago•0 comments

Agents' collaboration in the OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/#~1200-agents-sent-%3...
1•dmazin•10m ago•0 comments

Samsung updates Galaxy S24 FE with August 2026 security patch

https://www.sammobile.com/news/samsung-updates-galaxy-s24-fe-with-august-2026-security-patch/
1•ledoncool•13m ago•0 comments

I Cut 80%+ of Context Overhead in My Coding Agent

https://m-reschreiter.at/en/blog/how-i-cut-80-percent-context-overhead-dynamic-tools
2•asm3r96•14m ago•0 comments

IFA 2026 Preview: On-device AI PCs, DJI robotics, and Xiaomi's European debut

https://forgeeks.net/ifa-2026-local-ai-robots-devices/
2•kuuuzya•17m ago•0 comments

Show HN: Puppetflow a free browser automation platform

https://github.com/puppetflow/puppetflow
1•jierka•19m ago•0 comments

Unique Bronze Age "Treasures of Villena" Stolen in Spain

https://radar.am/en/news/science-2775622103/
1•Bluestein•19m ago•0 comments

'Mad honey' that can stop your heart is being sold online

https://phys.org/news/2026-08-mad-honey-heart-sold-online.html
1•samizdis•19m ago•0 comments

The Server Called Paranoia: Defend Autistici/Inventati

https://cavallette.noblogs.org/2026/08/10083/2
1•rapnie•27m ago•0 comments

A Perfect SimCity

https://www.jeffquast.com/post/a-perfect-simcity/
2•alexisread•27m ago•0 comments

Thunderquakes: A new way to image the Earth's subsurface

https://www.psu.edu/news/earth-and-mineral-sciences/story/thunderquakes-new-way-image-earths-subs...
2•geox•30m ago•0 comments

Hilariously Fast Volume Computation with the Divergence Theorem

https://alyssarosenzweig.ca/blog/hilariously-fast-volume-computation-with-the-divergence-theorem....
2•luu•36m ago•0 comments

Your AGENTS.md file doesn't do anything

https://pivot-to-ai.com/2026/08/27/your-agents-md-file-doesnt-actually-do-anything/
1•latexr•36m ago•0 comments

Review: A month with a Solargrow solar system

https://james.cridland.net/blog/2026/solargrow-isolarcloud-review/
2•DamonHD•39m ago•0 comments

Judge rules Trump administration illegally punished AI firm Anthropic

https://www.cbsnews.com/news/judge-rules-trump-administration-illegally-punished-ai-firm-anthropic/
3•mgh2•40m ago•2 comments

Show HN: AgentParty – cross-session chat for coding agents across machines

https://github.com/leeguooooo/AgentParty
2•leeguoo•42m ago•0 comments

The Wall Confronting Reliable Coding Agent Autonomy

https://codemanship.wordpress.com/2026/08/28/the-wall-confronting-reliable-coding-agent-autonomy/
2•flail•43m ago•0 comments

Show HN: Rosebed – A Minecraft beta 1.7.3 reimplementation in Zig

https://github.com/mdmrk/rosebed
1•talentedRed•43m ago•0 comments

Show HN: 18 Words, Zanagrams and Sunflowers Are Now PZL Games

6•pompomsheep•46m ago•1 comments

ClickHouse winning this soo called observability war?

https://clickhouse.com/blog/is-clickhouse-winning-the-observability-wars
1•gingenio•47m ago•0 comments

Show HN: Rafter – an MCP server that shares one team's memory, skills and agents

https://heyrafter.xyz/
2•kristohb•51m ago•0 comments

Summer's over: take out your notebooks (or Loreline)

https://loreline.app/en/journal/august-2026/
2•gr4vityWall•52m ago•0 comments

Another look at SQLite's WAL-Reset bug

https://theconsensus.dev/p/2026/08/23/another-look-at-sqlite-wal-reset.html
3•blueshoess•52m ago•0 comments

The Interactive Way to Go

https://web.archive.org/web/20210831172631/http://playgo.to/iwtg/en/
1•Bluestein•55m ago•0 comments

Symmetries in Boolean Scans with APL

https://ap29600.github.io/boolean_scans.html
1•fanf2•55m ago•0 comments

Show HN: Open-source agent harness with team collaboration

https://www.opensession.com/announcement
1•9ranty•58m ago•0 comments

Overcooked? Why robotic pizza makers are failing

https://www.bbc.com/news/articles/czxq0wgkkdjo
14•vinni2•59m ago•15 comments

Agnes AI Releases Agnes 2.5 Pro Beta

https://artificialanalysis.ai/articles/agnes-ai-releases-agnes-2-5-pro-beta
1•frozenseven•1h ago•0 comments

Interactive Warhammer 40k Galaxy Map – Cartographia Imperialis

https://cartographia40k.com/
2•gbxyz•1h ago•0 comments

More Japan hotels offer sleep tourism experiences to promote better sleep

https://mainichi.jp/english/articles/20260826/p2g/00m/0bu/016000c
1•giuliomagnifico•1h ago•0 comments
Open in hackernews

Show HN: Fast and Quality Code Chunking with Chonkie

1•snyy•1y ago
Hi HN,

We’re Chonkie (https://github.com/chonkie-inc/chonkie) — we build open source tools that help split documents into meaningful chunks for use with AI models.

When you use LLMs over large documents or codebases, you often need to break them into smaller parts to fit the model’s context window. Our chunkers do this in a smart way: they preserve structure and meaning, so only the most relevant pieces are passed into the model. This reduces hallucinations, avoids confusion, and improves performance and accuracy.

Today we’re launching our Code Chunker — a fast, structure-aware way to break down source code into high-quality, token-aware chunks.

How it works:

(See the code: https://github.com/chonkie-inc/chonkie/blob/main/src/chonkie...)

Code Chunker uses tree-sitter (https://tree-sitter.github.io/tree-sitter/) to parse your code into an abstract syntax tree (AST). It then recursively merges and groups nodes in a way that respects both code structure and token limits.

It supports all languages that tree-sitter supports, and is designed to preserve formatting and semantics. Large functions or class definitions won’t be split in the middle of a block — instead, we dive recursively into the AST to produce clean, coherent chunks that fit your configured token budget.

What it’s useful for:

  - Embedding-based code search

  - RAG (retrieval-augmented generation) over codebases

  - Long-context analysis of code

  - Preparing repos for fine-tuning or pretraining
Try it out:

  - Open source package: https://docs.chonkie.ai/chunkers/code-chunker

  - Hosted playground (free with account): https://cloud.chonkie.ai
Happy Chonking!