frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Olix raises $312M from Netflix's Reed Hastings, Arm, to build Nvidia rival

https://techfundingnews.com/olix-raises-312m-3-3b-valuation-nvidia-rival/
1•andsoitis•2m ago•0 comments

World Train Map – 1247 train routes around the world

https://worldtrainmap.com/
1•Flightmussy•2m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
1•nikolay•3m ago•0 comments

The Practice of Address: Loneliness and the Machines That Answer

https://www.newenglishreview.org/articles/the-practice-of-address-loneliness-and-the-machines-tha...
1•NaOH•7m ago•0 comments

Google Search Is Dying. What Comes Next Is Worse

https://thewalrus.ca/google-search-is-dying/
2•awnird•8m ago•0 comments

Trump Crypto Took $100M from a Businessman with Red Flags

https://www.nytimes.com/2026/08/09/us/politics/bobby-zhou-trump-crypto.html
2•iamben•9m ago•1 comments

MCP for Live NBA Game Recaps with Reddit Threads

https://github.com/temanuel1/nba-recap-mcp
1•temanuel38•9m ago•0 comments

Bernie Sanders calls for AI development pause

https://www.axios.com/2026/08/10/sanders-ai-development-pause
1•reasonableklout•9m ago•0 comments

Show HN: Being a senior can get you fired early

https://blog.grandimam.com/posts/distorted-reality/
1•grandimam•9m ago•0 comments

Show HN: Pyrig – A tool that automates project setup and maintenance

https://github.com/Winipedia/pyrig
2•Winipedia•10m ago•0 comments

OpenAI has bought back $7B worth of shares in a secondary employee tender

https://www.bloomberg.com/news/articles/2026-08-10/openai-buys-back-7-billion-of-employee-shares-...
2•ahmadyan•10m ago•0 comments

Jensen Huang tells CNBC his chips are 'investable asset'

https://www.cnbc.com/2026/08/10/nvidia-wall-street-asset-managers-500-billion-ai-push.html
1•0xcafefood•10m ago•3 comments

We host YouTube videos on this site – and why we recommend uBlock Origin

https://buenaventura.it/senza-pubblicita/
1•oriettaxx•14m ago•0 comments

Mark Zuckerberg's Yacht Refused to Help Ship in Distress

https://nymag.com/intelligencer/article/zuckerbergs-yacht-booed-over-failing-to-help-stranded-boa...
3•master_crab•18m ago•0 comments

Catholic expert: "Security issues show AI needs greater human oversight"

https://www.detroitcatholic.com/news/security-issues-show-ai-needs-greater-human-oversight-say-ca...
1•supportm•20m ago•1 comments

Termdom – Build Terminal Apps with HTML, CSS and the DOM

https://termdom.org
3•philips•22m ago•0 comments

The Surveillance Network Tracking Cars Across the U.S.

https://www.nytimes.com/video/us/100000011056273/the-surveillance-network-tracking-cars-across-th...
3•bookofjoe•22m ago•1 comments

Nvidia AI Factory Compute Is Becoming an Investable Asset Class

https://twitter.com/JensenHuang/status/2086934705207959965
2•jawiggins•24m ago•0 comments

Tracking down a Zsh history data loss bug

https://michael.stapelberg.ch/posts/2026-08-09-zsh-history-truncation-bug/
1•birdculture•25m ago•0 comments

Wreck of Royal Navy warship HMS Tiger found off Isle of Wight after 118 years

https://news.sky.com/story/wreck-of-royal-navy-warship-hms-tiger-found-off-isle-of-wight-after-11...
2•austinallegro•26m ago•0 comments

Archer to Acquire Boeing's Wisk Aero, Insitu and SkyGrid

https://investors.archer.com/news/news-details/2026/Archer-Announces-Second-Quarter-2026-Results-...
3•MrVitaliy•28m ago•0 comments

Control and complexity: tension in systems design

https://ferd.ca/control-and-complexity-tension-in-systems-design.html
2•billiob•29m ago•0 comments

Wall Street giants partner with Nvidia on $500B AI financing deal

https://www.ft.com/content/98a8fd17-15b6-4f67-9cb4-825722b11348
5•aanet•30m ago•3 comments

Watch out for cache read costs

https://martinalderson.com/posts/watch-out-for-cache-read-costs/
1•martinald•31m ago•0 comments

NYC, MTA eye first-of-its-kind plan that might keep subway platforms cooler

https://www.cbsnews.com/newyork/news/nyc-mta-subway-platforms-hot-weather-study/
5•thunderbong•32m ago•1 comments

Show HN: AI Pulse a fake LED strip beside the macOS Dock that shows agent status

https://github.com/leog/ai-pulse
1•leog_me•37m ago•0 comments

Tokenisation: Who decides what a token is anyway?

https://idlemachines.co.uk/essays/tokenisation
1•smaddrellmander•39m ago•0 comments

From backpacks to food, consumer goods are getting worse

https://www.theguardian.com/us-news/2026/aug/10/consumed-consumer-goods-quality
4•petethomas•40m ago•0 comments

AI framework rooted in cognitive science could complete tasks more efficiently

https://techxplore.com/news/2026-07-ai-framework-rooted-cognitive-science.html
1•1659447091•40m ago•0 comments

You Are the Superintelligence

http://unsoliciteddave.blogspot.com/2026/08/you-are-superintelligence.html
3•DaveParkCity•43m ago•0 comments
Open in hackernews

Show HN: Keen Code – an agentic-engineered coding agent

https://github.com/mochow13/keen-code
4•mochow13•58m ago
Hello community!

I am here to share a coding agent I have built solo from scratch using agentic engineering. Written in Go, it's a proper coding agent, has features you expect from a useful agent for your daily work, with a minimal and simple UI.

I have named it Keen Code. The repo is here: https://github.com/mochow13/keen-code

Even though it started as an experiment, it is now a full-fledged coding agent for real software engineering work. It supports multiple providers, skills, MCPs, multi-agent orchestration through subagents, automatic compaction, etc.

I have been using it for real production-grade work myself, and also for developing itself.

Notably, I have worked on two separate ideas in this coding agent:

1. Turn Memory

In a multi-turn conversation, tool outputs are removed, only tool call traces are retained. Within a single agent loop, agent sees full tool results but in the next turn, it doesn't see the tool results anymore.

The greatest benefit of this approach is that a lot of tool results that are not needed in following turns don't occupy the context. As a result, context window in a multi-turn conversation with Keen Code fills up much slowly compared to other agents. This is why you will regularly see context window coming down from 20% to 1% at the beginning of a new agent turn.

Of course, this approach has its pros and cons. If agent requires tool result from a previous call, it doesn't have them. But my idea is that tool calls like read, bash, web_fetch are cheap. Do you need to refer to some earlier file you read? Read again. In fact, Claude Code or Codex frequently re-read a file, even though it has read the same file before.

I have plans for more effort in this area. I have a few additional ideas to explore and possibly optimise this approach further.

If you want to read about it: https://mochow13.github.io/keen-code/docs/turn-memory.html

2. Skill-Driven MCP

Another idea I have implemented is skill-driven MCPs. The goal is similar to what Anthropic did with tool-search-tool: optimise context.

In this idea, each MCP server receives a skill. But this skill is not typical "guidance" skill for MCP server usage, rather generated by Keen. Details here: https://mochow13.github.io/keen-code/docs/mcp-skills.html

The big advantage is that no server is pre-loaded completely with tool schemas by default. The agent only receives skill frontmatter for the server. If a server is needed, agent loads the full skill file which lists the tools with descriptions. Then agent reads the specific schema file for the particular tool it wants to invoke.

The drawback is that each MCP call requires file read operation. But everything is locally saved upon discovery, so it's totally fine.

---

Apart from the above two, I am exploring and playing with other well-known context optimisation ideas like hashline edits.

If the above ideas interest you, please do check it out! Here is the CLI usage guideline: https://mochow13.github.io/keen-code/docs/cli-usage.html

Since the project is open-source, issues and contributions are more than welcome!

Comments

tldr13•55m ago
Not another coding agent please -_-