frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: OSS app to find LLMs across multiple LLM providers (Azure, AWS, etc.)

https://github.com/mozilla-ai/any-llm/tree/main/demos/finder
2•njbrake•3m ago•0 comments

Show HN: I built a way to monetize any link with a crypto paywall

1•allynjalford•4m ago•0 comments

Geoffrey Hinton: 'AI will make a few people much richer and most people poorer'

https://www.ft.com/content/31feb335-4945-475e-baaa-3b880d9cf8ce
1•pseudolus•4m ago•1 comments

Orchestrate multiple AI agents with cagent by Docker to create coding assistant

https://tobiasfenster.io/orchestrate-multiple-ai-agents-with-cagent-by-docker
2•AsmodiusVI•13m ago•2 comments

Windows-Use: an AI agent that interacts with Windows at GUI layer

https://github.com/CursorTouch/Windows-Use
1•djhu9•17m ago•0 comments

Anthropic is endorsing SB 53

https://www.anthropic.com/news/anthropic-is-endorsing-sb-53
1•arroia•18m ago•0 comments

But how do AI images and videos work?

https://www.youtube.com/watch?v=iv-5mZ_9CPY
1•tzury•20m ago•0 comments

Biz Academy aiuta imprenditrici con percorsi online

https://biz-academy.it/i-top-20-migliori-podcast-italiani-da-ascoltare-subito/
1•lorisfreez•20m ago•0 comments

Internet censorship is complex, usually

https://en.wikipedia.org/wiki/Internet_censorship
1•DaveZale•26m ago•1 comments

How Python Implements List Comprehensions

https://pythonkoans.substack.com/p/koan-11-the-flowing-river-part-2
2•meander_water•32m ago•0 comments

Jakub and Szymon

https://blog.samaltman.com/jakub-and-szymon
3•davidbarker•38m ago•0 comments

How Big Was IBM?

https://thechipletter.substack.com/p/how-big-was-ibm
3•chmaynard•40m ago•1 comments

It's AI all the way down as Google's AI cites web pages written by AI

https://www.theregister.com/2025/09/07/googles_ai_cites_written_by_ai/
1•akyuu•41m ago•0 comments

Agentic AI Runs on Tools

https://simplicityissota.substack.com/p/agentic-ai-runs-on-tools
1•bookish•41m ago•0 comments

XFS File-System Ready to Enable Online Fsck Support by Default

https://www.phoronix.com/news/XFS-Ready-Online-FSCK-Default
2•Bender•42m ago•0 comments

New Linux Patches Enhance Intel Nested Virtualization Performance on Linux

https://www.phoronix.com/news/Linux-KVM-Nested-Intel-VMX-Perf
2•Bender•42m ago•0 comments

Ask HN: Where can I learn about T-Splines?

1•dschroer•42m ago•0 comments

Scaling the system that powers over $700M ARR invoices

https://medium.com/@chandnij/scaling-the-system-that-powers-over-700m-arr-invoices-596ac47a6983
1•openmosix•43m ago•0 comments

Fatal stabbing of Ukrainian refugee in North Carolina ignites crime debate

https://www.bbc.com/news/articles/cgknxyl77x6o
5•Bender•46m ago•0 comments

The Potato Chip That Destroyed the Bowels of America

https://www.cracked.com/article_28476_the-potato-chip-that-destroyed-bowels-america.html
3•masterjack•48m ago•0 comments

Is AI's Next Big Leap, Agentic AI, Set to Revolutionize or Ruin Tech Innovation?

https://roundtable.now/chats/84cc5f4e-84ba-4c74-a57c-6058f9218c63
1•soh3il•58m ago•0 comments

Kubernetes Primer: Dynamic Resource Allocation (DRA) for GPU Workloads

https://thenewstack.io/kubernetes-primer-dynamic-resource-allocation-dra-for-gpu-workloads/
2•nkko•59m ago•0 comments

Show HN: Astrae – Landing Page Templates for React, Tailwind, and Framer Motion

https://www.astrae.design
1•aretecodes•59m ago•0 comments

The Storm Hits the Art Market

https://news.artnet.com/market/intelligence-report-storm-2025-2684512
30•onecommentman•1h ago•12 comments

Does the Car Wash I Bought 1 Year Ago Make Money?

https://www.youtube.com/watch?v=FbW9rhVzRsU
1•bane•1h ago•0 comments

Goldman Sachs Warns of 1.9M Barrel per Day Oil Glut by 2026

https://oilprice.com/Energy/Energy-General/Goldman-Sachs-Warns-of-19-Million-Bpd-Oil-Glut-by-2026...
2•toomuchtodo•1h ago•1 comments

Tesla market share in US drops to lowest since 2017

https://www.reuters.com/business/autos-transportation/tesla-market-share-us-drops-lowest-since-20...
38•nabla9•1h ago•25 comments

Show HN: I Built Logstalgia for the Web

https://tailstream.io
1•arondeparon•1h ago•0 comments

Photoshop Is Dead Long Live Photoshop

https://www.mikechambers.com/blog/post/2025-09-07-photoshop-is-dead-long-live-photoshop/
1•mesh•1h ago•0 comments

Thoughts on Zukerbergs Capital Allocation at Meta over the Years?

1•Taikhoom10•1h ago•0 comments
Open in hackernews

Ask HN: How do you manage docs for AI coding agents without bloating repos?

2•JaiRathore•5h ago
I'm struggling with a seemingly simple problem. Every time I work with a coding agent, I like to iterate with the model on a plan first which would be in plan.md. There are often other md files also like specs, tasks, requirements, etc. I'm curious what do people do once done with the task they were created for? Leaving them in the repository makes it very bloated very soon. Often I end up with valuable content in my implementation plans which simply trashing them doesn't seem right, because I'm pretty sure they would be useful for future developments or for other developers/agents to understand the implementation and then plan for enhancements. The dilemma is: AI agents need to see these files to generate good code and understand context, but keeping them all means the repo becomes mostly documentation. Yet deleting them loses valuable context about why things were built certain ways. Has anyone found an elegant solution to this? How do you manage these AI collaboration files?

Comments

bdangubic•2h ago
where did you keep the documentation before AI coding agents? they should be exactly there right now as well. I have wip folder at the root which is added to .gitignore and I put files related to current task for the agent there.