frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Just Code: Power, Inequality and the Political Economy of IT

https://cse.umn.edu/cbi/just-code-just-published
1•zoenolan•58s ago•0 comments

Another cruise: Re-reading "Moby-Dick" at Ahab's age

https://calebcrain.substack.com/p/another-cruise
1•lermontov•2m ago•0 comments

Learning PostgreSQL Internals

https://blog.cleverelephant.ca/2022/10/postgresql-links.html
1•rjenkins•4m ago•0 comments

In-browser NL2SQL2NL playground: SQLite WASM meets Gemini

https://github.com/arnabdotorg/coquery
1•relantic•8m ago•0 comments

Show HN: TypeKro – TypeScript infra-as-code for Kubernetes built on KRO

https://typekro.run
1•ManWith2Plans•13m ago•0 comments

A Choice of Giants

https://kriskowal.com/giants/
1•dannyobrien•14m ago•0 comments

Science > Panpsychism [video]

https://www.youtube.com/watch?v=0nOtLj8UYCw
1•ieuanking•16m ago•0 comments

AgentQL, a toolkit for extracting data and automating workflows on live websites

https://github.com/tinyfish-io/agentql
1•jinqueeny•23m ago•0 comments

AI2 releases Asta: open‑source ecosystem for trustworthy scientific AI agents

https://www.hpcwire.com/off-the-wire/ai2-launches-asta-a-new-standard-for-trustworthy-ai-agents-i...
1•acossta•26m ago•1 comments

What's the Safest Seat in a Car?

https://www.popsci.com/science/what-is-safest-seat-in-car/
2•wjb3•39m ago•0 comments

Maunder Minimum

https://en.wikipedia.org/wiki/Maunder_Minimum
1•wjb3•40m ago•0 comments

Claude's GitHub: two issues closed by AI as "duplicates" – of each other..!

https://github.com/anthropics/claude-code/issues/4751
2•hihicoderhi•41m ago•2 comments

Show HN: Seven Dollar Chat- Claude, Llama, DeepSeek and More

https://7chat.sbs/
2•jerrimu•47m ago•0 comments

Goiânia Accident

https://en.wikipedia.org/wiki/Goi%C3%A2nia_accident
4•grubbs•55m ago•0 comments

FlightConnections

https://www.flightconnections.com/
3•scapecast•1h ago•1 comments

Optimizing is not only for better performance

2•jaharios•1h ago•0 comments

Tony Blair Attends White House Meeting with Trump on Postwar Gaza

https://www.theguardian.com/politics/2025/aug/27/tony-blair-attends-white-house-meeting-with-trum...
5•NomDePlum•1h ago•0 comments

Engineer as Value Appraiser

https://substack.com/inbox/post/172128430
3•mrev2•1h ago•0 comments

Stop killing games: Demands for game ownership must also include workers' rights

https://theconversation.com/stop-killing-games-demands-for-game-ownership-must-also-include-worke...
6•PaulHoule•1h ago•0 comments

Dead arms test importance of clenched fists (2015)

https://www.bbc.co.uk/news/science-environment-34572432
3•austinallegro•1h ago•0 comments

The Rise of Front-Loaded Vesting

https://www.levels.fyi/blog/front-loaded-vesting.html
3•zuhayeer•1h ago•0 comments

The Cybersecurity Psychology Framework: A Pre-Cognitive Vulnerability Assessment

https://cpf3.org
3•kaolay•1h ago•1 comments

DraftKings said it acted properly in voiding Iowa man's $14.2M payout

https://www.desmoinesregister.com/story/sports/2025/08/26/draftkings-defends-voiding-iowa-mans-pa...
4•indigodaddy•1h ago•1 comments

Ask HN: What's your current "ecosystem"/dev stack/tools that you use to build?

2•adinhitlore•1h ago•1 comments

What's new in Excel August 2025

https://techcommunity.microsoft.com/blog/excelblog/whats-new-in-excel-august-2025/4437351
3•nhatcher•1h ago•0 comments

Anthropic – Detecting and countering misuse of AI: August 2025

https://www.anthropic.com/news/detecting-countering-misuse-aug-2025
2•josephmiller•1h ago•0 comments

We're doing context engineering wrong

2•brandonin•1h ago•4 comments

A retrospective about blogging for a decade

https://midzer.de/a-retrospective-about-blogging-for-a-decade
2•midzer•1h ago•0 comments

You're doing context engineering wrong

https://github.com/a24z-ai/a24z-memory
3•brandonin•1h ago•0 comments

Asahi Linux Lead Developer Steps Down

https://linuxiac.com/asahi-linux-lead-developer-steps-down/
21•bundie•1h ago•3 comments
Open in hackernews

Ask HN: How to Learn to Build Agentic AI Systems (Like Claude Code)

3•hhimanshu•2h ago
Hello folks,

I’m trying to learn how one can build agentic AI systems similar to Claude Code, and eventually adapt that knowledge toward domain-specific use cases (e.g., “Claude Code for healthcare, finance, education, etc.”).

For those of you who’ve studied or built these kinds of systems, I’d love to hear your recommendations on:

• Foundational learning: What books, courses, or papers provide the best grounding for understanding LLM-based systems and their decision-making?

• Architectural patterns: What design patterns are worth studying for things like context management, memory, reasoning, and orchestration?

• Build vs. deploy: How do you think about building internal systems vs. packaging/distributing them as APIs, SDKs, or products?

• Open source projects: Which ones are most valuable to study for internals (decision making, evals, context engineering, tool use, etc.)?

• Evals and observability: What tools or products help evaluate quality, measure system behavior, and observe performance in real-world use?

• Models: Which models are best suited for “thinking” (reasoning, planning, decomposing problems) vs. “doing” (execution, coding, retrieval)?

• Learning path: How would you approach going from theory → prototype → production-quality system?

My goal is to discover high-quality resources that one can truly spend time learning from and building with—through iteration and practice—while also sharing what I learn so others on the same path can benefit.

Thanks in advance for sharing your experiences and guidance!

Comments

hhimanshu•2h ago
Two resources that I am currently learning from are

1. https://deepwiki.com/humanlayer/12-factor-agents/1-12-factor...

2. https://deepwiki.com/anthropics/claude-code/1-claude-code-ov...

rbjorklin•1h ago
This is pretty much a step-by-step guide for getting started with code: https://ampcode.com/how-to-build-an-agent
hhimanshu•38m ago
Great resource, definitely a good place to take the next step. As I looked into detail, the natural question came (based on software developing experience), how do I evaluate the correctness of output produced by LLM given the inputs. Clearly, unit test with fixed in/out pairs won't help so learning methods to evaluate as we develop iteratively will be very useful.

Thanks for sharing the article!